1 package org.oxerr.stubhub.client.model;
2
3 public class InventoryAdminHoldRequest {
4
5 private String expirationDate;
6
7 private String notes;
8
9 public String getExpirationDate() {
10 return expirationDate;
11 }
12
13 public void setExpirationDate(String expirationDate) {
14 this.expirationDate = expirationDate;
15 }
16
17 public String getNotes() {
18 return notes;
19 }
20
21 public void setNotes(String notes) {
22 this.notes = notes;
23 }
24
25 }