View Javadoc
1   package org.oxerr.stubhub.client.model;
2   
3   import java.math.BigDecimal;
4   import java.time.OffsetDateTime;
5   
6   public class DealUpdateRequest {
7   
8   	private String dealType;
9   
10  	private OffsetDateTime startDate;
11  
12  	private OffsetDateTime endDate;
13  
14  	private BigDecimal guaranteedAmount;
15  
16  	private DealConfigRequest dealConfig;
17  
18  	public String getDealType() {
19  		return dealType;
20  	}
21  
22  	public void setDealType(String dealType) {
23  		this.dealType = dealType;
24  	}
25  
26  	public OffsetDateTime getStartDate() {
27  		return startDate;
28  	}
29  
30  	public void setStartDate(OffsetDateTime startDate) {
31  		this.startDate = startDate;
32  	}
33  
34  	public OffsetDateTime getEndDate() {
35  		return endDate;
36  	}
37  
38  	public void setEndDate(OffsetDateTime endDate) {
39  		this.endDate = endDate;
40  	}
41  
42  	public BigDecimal getGuaranteedAmount() {
43  		return guaranteedAmount;
44  	}
45  
46  	public void setGuaranteedAmount(BigDecimal guaranteedAmount) {
47  		this.guaranteedAmount = guaranteedAmount;
48  	}
49  
50  	public DealConfigRequest getDealConfig() {
51  		return dealConfig;
52  	}
53  
54  	public void setDealConfig(DealConfigRequest dealConfig) {
55  		this.dealConfig = dealConfig;
56  	}
57  
58  }