View Javadoc
1   package org.oxerr.vividseats.client.model.v1;
2   
3   import java.io.Serializable;
4   import java.math.BigDecimal;
5   import java.util.List;
6   
7   import org.oxerr.vividseats.client.model.SplitType;
8   
9   /**
10   * Request to update a listing.
11   * 
12   * <a href="https://vividseats.stoplight.io/docs/broker-portal/ebf6bb237e97b-update-listing">
13   * /listings/v1/updateListing
14   * </a>
15   */
16  public class Update implements Serializable {
17  
18  	private static final long serialVersionUID = 2024101501L;
19  
20  	private String apiToken;
21  
22  	private String ticketId;
23  
24  	private Integer quantity;
25  
26  	private String section;
27  
28  	private String row;
29  
30  	private String seatFrom;
31  
32  	private String seatThru;
33  
34  	private String notes;
35  
36  	private BigDecimal price;
37  
38  	private Boolean electronic;
39  
40  	private String inHandDate;
41  
42  	private SplitType splitType;
43  
44  	private String splitValue;
45  
46  	private List<String> barcode;
47  
48  	private BigDecimal faceValue;
49  
50  	private BigDecimal unitTaxedCost;
51  
52  	public String getApiToken() {
53  		return apiToken;
54  	}
55  
56  	public void setApiToken(String apiToken) {
57  		this.apiToken = apiToken;
58  	}
59  
60  	public String getTicketId() {
61  		return ticketId;
62  	}
63  
64  	public void setTicketId(String ticketId) {
65  		this.ticketId = ticketId;
66  	}
67  
68  	public Integer getQuantity() {
69  		return quantity;
70  	}
71  
72  	public void setQuantity(Integer quantity) {
73  		this.quantity = quantity;
74  	}
75  
76  	public String getSection() {
77  		return section;
78  	}
79  
80  	public void setSection(String section) {
81  		this.section = section;
82  	}
83  
84  	public String getRow() {
85  		return row;
86  	}
87  
88  	public void setRow(String row) {
89  		this.row = row;
90  	}
91  
92  	public String getSeatFrom() {
93  		return seatFrom;
94  	}
95  
96  	public void setSeatFrom(String seatFrom) {
97  		this.seatFrom = seatFrom;
98  	}
99  
100 	public String getSeatThru() {
101 		return seatThru;
102 	}
103 
104 	public void setSeatThru(String seatThru) {
105 		this.seatThru = seatThru;
106 	}
107 
108 	public String getNotes() {
109 		return notes;
110 	}
111 
112 	public void setNotes(String notes) {
113 		this.notes = notes;
114 	}
115 
116 	public BigDecimal getPrice() {
117 		return price;
118 	}
119 
120 	public void setPrice(BigDecimal price) {
121 		this.price = price;
122 	}
123 
124 	public Boolean getElectronic() {
125 		return electronic;
126 	}
127 
128 	public void setElectronic(Boolean electronic) {
129 		this.electronic = electronic;
130 	}
131 
132 	public String getInHandDate() {
133 		return inHandDate;
134 	}
135 
136 	public void setInHandDate(String inHandDate) {
137 		this.inHandDate = inHandDate;
138 	}
139 
140 	public SplitType getSplitType() {
141 		return splitType;
142 	}
143 
144 	public void setSplitType(SplitType splitType) {
145 		this.splitType = splitType;
146 	}
147 
148 	public String getSplitValue() {
149 		return splitValue;
150 	}
151 
152 	public void setSplitValue(String splitValue) {
153 		this.splitValue = splitValue;
154 	}
155 
156 	public List<String> getBarcode() {
157 		return barcode;
158 	}
159 
160 	public void setBarcode(List<String> barcode) {
161 		this.barcode = barcode;
162 	}
163 
164 	public BigDecimal getFaceValue() {
165 		return faceValue;
166 	}
167 
168 	public void setFaceValue(BigDecimal faceValue) {
169 		this.faceValue = faceValue;
170 	}
171 
172 	public BigDecimal getUnitTaxedCost() {
173 		return unitTaxedCost;
174 	}
175 
176 	public void setUnitTaxedCost(BigDecimal unitTaxedCost) {
177 		this.unitTaxedCost = unitTaxedCost;
178 	}
179 
180 }