1 package org.oxerr.stubhub.client.model;
2
3 public class MarketplaceState {
4
5 private String fullfilmentState;
6
7 private String paymentState;
8
9 private String contractState;
10
11 public String getFullfilmentState() {
12 return fullfilmentState;
13 }
14
15 public void setFullfilmentState(String fullfilmentState) {
16 this.fullfilmentState = fullfilmentState;
17 }
18
19 public String getPaymentState() {
20 return paymentState;
21 }
22
23 public void setPaymentState(String paymentState) {
24 this.paymentState = paymentState;
25 }
26
27 public String getContractState() {
28 return contractState;
29 }
30
31 public void setContractState(String contractState) {
32 this.contractState = contractState;
33 }
34
35 }