1 package org.oxerr.stubhub.client.model;
2
3 import java.math.BigDecimal;
4
5 public class UnderCutSetting {
6
7 private String undercutMode;
8
9 private BigDecimal undercutAbsoluteAmount;
10
11 private BigDecimal undercutRelativeAmount;
12
13 public String getUndercutMode() {
14 return undercutMode;
15 }
16
17 public void setUndercutMode(String undercutMode) {
18 this.undercutMode = undercutMode;
19 }
20
21 public BigDecimal getUndercutAbsoluteAmount() {
22 return undercutAbsoluteAmount;
23 }
24
25 public void setUndercutAbsoluteAmount(BigDecimal undercutAbsoluteAmount) {
26 this.undercutAbsoluteAmount = undercutAbsoluteAmount;
27 }
28
29 public BigDecimal getUndercutRelativeAmount() {
30 return undercutRelativeAmount;
31 }
32
33 public void setUndercutRelativeAmount(BigDecimal undercutRelativeAmount) {
34 this.undercutRelativeAmount = undercutRelativeAmount;
35 }
36
37 }