View Javadoc
1   package org.oxerr.stubhub.client.model;
2   
3   import java.math.BigDecimal;
4   
5   public class CompListingSetting {
6   
7   	private String compListingMode;
8   
9   	private BigDecimal compListingFloor;
10  
11  	private BigDecimal compListingCeiling;
12  
13  	private Boolean quantityScoreAdjustmentEnabled;
14  
15  	private String quantityScoreAdjustmentOverridesJson;
16  
17  	private Boolean onlyForSameZoneEnabled;
18  
19  	private Boolean onlyForSelectedSectionsEnabled;
20  
21  	public String getCompListingMode() {
22  		return compListingMode;
23  	}
24  
25  	public void setCompListingMode(String compListingMode) {
26  		this.compListingMode = compListingMode;
27  	}
28  
29  	public BigDecimal getCompListingFloor() {
30  		return compListingFloor;
31  	}
32  
33  	public void setCompListingFloor(BigDecimal compListingFloor) {
34  		this.compListingFloor = compListingFloor;
35  	}
36  
37  	public BigDecimal getCompListingCeiling() {
38  		return compListingCeiling;
39  	}
40  
41  	public void setCompListingCeiling(BigDecimal compListingCeiling) {
42  		this.compListingCeiling = compListingCeiling;
43  	}
44  
45  	public Boolean getQuantityScoreAdjustmentEnabled() {
46  		return quantityScoreAdjustmentEnabled;
47  	}
48  
49  	public void setQuantityScoreAdjustmentEnabled(Boolean quantityScoreAdjustmentEnabled) {
50  		this.quantityScoreAdjustmentEnabled = quantityScoreAdjustmentEnabled;
51  	}
52  
53  	public String getQuantityScoreAdjustmentOverridesJson() {
54  		return quantityScoreAdjustmentOverridesJson;
55  	}
56  
57  	public void setQuantityScoreAdjustmentOverridesJson(String quantityScoreAdjustmentOverridesJson) {
58  		this.quantityScoreAdjustmentOverridesJson = quantityScoreAdjustmentOverridesJson;
59  	}
60  
61  	public Boolean getOnlyForSameZoneEnabled() {
62  		return onlyForSameZoneEnabled;
63  	}
64  
65  	public void setOnlyForSameZoneEnabled(Boolean onlyForSameZoneEnabled) {
66  		this.onlyForSameZoneEnabled = onlyForSameZoneEnabled;
67  	}
68  
69  	public Boolean getOnlyForSelectedSectionsEnabled() {
70  		return onlyForSelectedSectionsEnabled;
71  	}
72  
73  	public void setOnlyForSelectedSectionsEnabled(Boolean onlyForSelectedSectionsEnabled) {
74  		this.onlyForSelectedSectionsEnabled = onlyForSelectedSectionsEnabled;
75  	}
76  
77  }