View Javadoc
1   package org.oxerr.stubhub.client.model;
2   
3   import java.math.BigDecimal;
4   
5   public class UpdateListingPricingSettingsRequest {
6   
7   	/**
8   	 * Flag to control whether auto-pricing should be enabled for the listing.
9   	 */
10  	private Boolean autoPricingEnabled;
11  
12  	/**
13  	 * The minimum amount inventory can be priced at. Certain users can price
14  	 * below the floor if a warning is accepted.
15  	 */
16  	private BigDecimal netProceedsFloor;
17  
18  	/**
19  	 * The maximum amount inventory can be priced at. Certain users can price
20  	 * above the ceiling if a warning is accepted.
21  	 */
22  	private BigDecimal netProceedsCeiling;
23  
24  	private CompListingSettingsRequest compListingSettings;
25  
26  	private UndercutSettingsRequest undercutSettings;
27  
28  	private OutlierSettingsRequest outlierSettings;
29  
30  	public Boolean getAutoPricingEnabled() {
31  		return autoPricingEnabled;
32  	}
33  
34  	public void setAutoPricingEnabled(Boolean autoPricingEnabled) {
35  		this.autoPricingEnabled = autoPricingEnabled;
36  	}
37  
38  	public BigDecimal getNetProceedsFloor() {
39  		return netProceedsFloor;
40  	}
41  
42  	public void setNetProceedsFloor(BigDecimal netProceedsFloor) {
43  		this.netProceedsFloor = netProceedsFloor;
44  	}
45  
46  	public BigDecimal getNetProceedsCeiling() {
47  		return netProceedsCeiling;
48  	}
49  
50  	public void setNetProceedsCeiling(BigDecimal netProceedsCeiling) {
51  		this.netProceedsCeiling = netProceedsCeiling;
52  	}
53  
54  	public CompListingSettingsRequest getCompListingSettings() {
55  		return compListingSettings;
56  	}
57  
58  	public void setCompListingSettings(CompListingSettingsRequest compListingSettings) {
59  		this.compListingSettings = compListingSettings;
60  	}
61  
62  	public UndercutSettingsRequest getUndercutSettings() {
63  		return undercutSettings;
64  	}
65  
66  	public void setUndercutSettings(UndercutSettingsRequest undercutSettings) {
67  		this.undercutSettings = undercutSettings;
68  	}
69  
70  	public OutlierSettingsRequest getOutlierSettings() {
71  		return outlierSettings;
72  	}
73  
74  	public void setOutlierSettings(OutlierSettingsRequest outlierSettings) {
75  		this.outlierSettings = outlierSettings;
76  	}
77  
78  }