Package org.oxerr.seatgeek.client.model
Class AbstractListing
- java.lang.Object
-
- org.oxerr.seatgeek.client.model.AbstractListing
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CreateListingRequest
,UpdateListingRequest
public abstract class AbstractListing extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractListing()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
List<Barcode>
getBarcodes()
BigDecimal
getCost()
Boolean
getEdelivery()
LocalDate
getInHandDate()
Boolean
getInstant()
String
getNotes()
Integer
getQuantity()
String
getRow()
Integer
getSeatFrom()
Integer
getSeatThru()
String
getSection()
SplitType
getSplitType()
List<Token>
getTokens()
TokensType
getTokensType()
int
hashCode()
void
setBarcodes(List<Barcode> barcodes)
void
setCost(BigDecimal cost)
void
setEdelivery(Boolean edelivery)
void
setInHandDate(LocalDate inHandDate)
void
setInstant(Boolean instant)
void
setNotes(String notes)
void
setQuantity(Integer quantity)
void
setRow(String row)
void
setSeatFrom(Integer seatFrom)
void
setSeatThru(Integer seatThru)
void
setSection(String section)
void
setSplitType(SplitType splitType)
void
setTokens(List<Token> tokens)
void
setTokensType(TokensType tokensType)
-
-
-
Method Detail
-
getQuantity
public Integer getQuantity()
-
setQuantity
public void setQuantity(Integer quantity)
-
getCost
public BigDecimal getCost()
-
setCost
public void setCost(BigDecimal cost)
-
getSection
public String getSection()
-
setSection
public void setSection(String section)
-
getRow
public String getRow()
-
setRow
public void setRow(String row)
-
getSeatFrom
public Integer getSeatFrom()
-
setSeatFrom
public void setSeatFrom(Integer seatFrom)
-
getSeatThru
public Integer getSeatThru()
-
setSeatThru
public void setSeatThru(Integer seatThru)
-
getNotes
public String getNotes()
-
setNotes
public void setNotes(String notes)
-
getInHandDate
public LocalDate getInHandDate()
-
setInHandDate
public void setInHandDate(LocalDate inHandDate)
-
getEdelivery
public Boolean getEdelivery()
-
setEdelivery
public void setEdelivery(Boolean edelivery)
-
getInstant
public Boolean getInstant()
-
setInstant
public void setInstant(Boolean instant)
-
getSplitType
public SplitType getSplitType()
-
setSplitType
public void setSplitType(SplitType splitType)
-
getTokensType
public TokensType getTokensType()
-
setTokensType
public void setTokensType(TokensType tokensType)
-
-