CPD Results

The following document contains the results of PMD's CPD 7.17.0.

Duplications

File Line
org/oxerr/stubhub/client/model/HoldResponse.java 413
org/oxerr/stubhub/client/model/SaleResponse.java 418
public void setCancellationDate(OffsetDateTime cancellationDate) {
		this.cancellationDate = cancellationDate;
	}

	public Integer getFulfillmentVersion() {
		return fulfillmentVersion;
	}

	public void setFulfillmentVersion(Integer fulfillmentVersion) {
		this.fulfillmentVersion = fulfillmentVersion;
	}

	public Integer getMarketplaceFulfillmentVersion() {
		return marketplaceFulfillmentVersion;
	}

	public void setMarketplaceFulfillmentVersion(Integer marketplaceFulfillmentVersion) {
		this.marketplaceFulfillmentVersion = marketplaceFulfillmentVersion;
	}

	public String getExternalId() {
		return externalId;
	}

	public void setExternalId(String externalId) {
		this.externalId = externalId;
	}

	public UUID getFulfillmentUserId() {
		return fulfillmentUserId;
	}

	public void setFulfillmentUserId(UUID fulfillmentUserId) {
		this.fulfillmentUserId = fulfillmentUserId;
	}

	public Boolean getAutoFulfill() {
		return autoFulfill;
	}

	public void setAutoFulfill(Boolean autoFulfill) {
		this.autoFulfill = autoFulfill;
	}

	public UUID getSellerAccountId() {
		return sellerAccountId;
	}

	public void setSellerAccountId(UUID sellerAccountId) {
		this.sellerAccountId = sellerAccountId;
	}

	public List<BuyerCommission> getBuyerCommissionOverride() {
		return buyerCommissionOverride;
	}

	public void setBuyerCommissionOverride(List<BuyerCommission> buyerCommissionOverride) {
		this.buyerCommissionOverride = buyerCommissionOverride;
	}

	public BigDecimal getOriginalNetProceedsAmount() {
		return originalNetProceedsAmount;
	}

	public void setOriginalNetProceedsAmount(BigDecimal originalNetProceedsAmount) {
		this.originalNetProceedsAmount = originalNetProceedsAmount;
	}

	public String getOriginalNetProceedsCurrency() {
		return originalNetProceedsCurrency;
	}

	public void setOriginalNetProceedsCurrency(String originalNetProceedsCurrency) {
		this.originalNetProceedsCurrency = originalNetProceedsCurrency;
	}

	public OffsetDateTime getExpirationDate() {
File Line
org/oxerr/stubhub/client/model/HoldResponse.java 277
org/oxerr/stubhub/client/model/SaleResponse.java 282
public void setMarketplace(String marketplace) {
		this.marketplace = marketplace;
	}

	public String getStockType() {
		return stockType;
	}

	public void setStockType(String stockType) {
		this.stockType = stockType;
	}

	public List<ListingNoteResponse> getListingNotes() {
		return listingNotes;
	}

	public void setListingNotes(List<ListingNoteResponse> listingNotes) {
		this.listingNotes = listingNotes;
	}

	public PosState getPosState() {
		return posState;
	}

	public void setPosState(PosState posState) {
		this.posState = posState;
	}

	public MarketplaceState getMarketplaceState() {
		return marketplaceState;
	}

	public void setMarketplaceState(MarketplaceState marketplaceState) {
		this.marketplaceState = marketplaceState;
	}

	public List<VendorResponse> getVendorInfos() {
		return vendorInfos;
	}

	public void setVendorInfos(List<VendorResponse> vendorInfos) {
		this.vendorInfos = vendorInfos;
	}

	public List<PurchaseVendorAccountResponse> getVendorAccounts() {
		return vendorAccounts;
	}

	public void setVendorAccounts(List<PurchaseVendorAccountResponse> vendorAccounts) {
		this.vendorAccounts = vendorAccounts;
	}

	public List<TicketResponse> getTickets() {
		return tickets;
	}

	public void setTickets(List<TicketResponse> tickets) {
		this.tickets = tickets;
	}

	public String getPaymentStatus() {
File Line
org/oxerr/stubhub/client/model/DealCreateRequest.java 11
org/oxerr/stubhub/client/model/DealUpdateRequest.java 11
public class DealCreateRequest implements Serializable {

	private static final long serialVersionUID = 2026051801L;

	private String dealType;

	private OffsetDateTime startDate;

	private OffsetDateTime endDate;

	private BigDecimal guaranteedAmount;

	private DealConfigRequest dealConfig;

	public String getDealType() {
		return dealType;
	}

	public void setDealType(String dealType) {
		this.dealType = dealType;
	}

	public OffsetDateTime getStartDate() {
		return startDate;
	}

	public void setStartDate(OffsetDateTime startDate) {
		this.startDate = startDate;
	}

	public OffsetDateTime getEndDate() {
		return endDate;
	}

	public void setEndDate(OffsetDateTime endDate) {
		this.endDate = endDate;
	}

	public BigDecimal getGuaranteedAmount() {
		return guaranteedAmount;
	}

	public void setGuaranteedAmount(BigDecimal guaranteedAmount) {
		this.guaranteedAmount = guaranteedAmount;
	}

	public DealConfigRequest getDealConfig() {
		return dealConfig;
	}

	public void setDealConfig(DealConfigRequest dealConfig) {
		this.dealConfig = dealConfig;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/SeatingRequest.java 9
org/oxerr/stubhub/client/model/SeatingResponse.java 9
public class SeatingRequest implements Serializable {

	private static final long serialVersionUID = 2026051801L;

	private String section;

	private String row;

	private String piggybackRow;

	private String seatFrom;

	private String seatTo;

	public String getSection() {
		return section;
	}

	public void setSection(String section) {
		this.section = section;
	}

	public String getRow() {
		return row;
	}

	public void setRow(String row) {
		this.row = row;
	}

	public String getPiggybackRow() {
		return piggybackRow;
	}

	public void setPiggybackRow(String piggybackRow) {
		this.piggybackRow = piggybackRow;
	}

	public String getSeatFrom() {
		return seatFrom;
	}

	public void setSeatFrom(String seatFrom) {
		this.seatFrom = seatFrom;
	}

	public String getSeatTo() {
		return seatTo;
	}

	public void setSeatTo(String seatTo) {
		this.seatTo = seatTo;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/HoldResponse.java 113
org/oxerr/stubhub/client/model/SaleResponse.java 118
public EventMappingResponse getEventMapping() {
		return eventMapping;
	}

	public void setEventMapping(EventMappingResponse eventMapping) {
		this.eventMapping = eventMapping;
	}

	public EventResponse getEvent() {
		return event;
	}

	public void setEvent(EventResponse event) {
		this.event = event;
	}

	public VenueResponse getVenue() {
		return venue;
	}

	public void setVenue(VenueResponse venue) {
		this.venue = venue;
	}

	public PerformerResponse getPerformer() {
		return performer;
	}

	public void setPerformer(PerformerResponse performer) {
		this.performer = performer;
	}

	public Long getId() {
		return id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public String getMarketplaceSaleId() {
		return marketplaceSaleId;
	}

	public void setMarketplaceSaleId(String marketplaceSaleId) {
		this.marketplaceSaleId = marketplaceSaleId;
	}

	public String getMarketplaceListingId() {
		return marketplaceListingId;
	}

	public void setMarketplaceListingId(String marketplaceListingId) {
		this.marketplaceListingId = marketplaceListingId;
	}

	public Long getInventoryId() {
		return inventoryId;
	}

	public void setInventoryId(Long inventoryId) {
		this.inventoryId = inventoryId;
	}

	public OffsetDateTime getInHandAt() {
File Line
org/oxerr/stubhub/client/model/HoldResponse.java 181
org/oxerr/stubhub/client/model/SaleResponse.java 186
public void setInHandAt(OffsetDateTime inHandAt) {
		this.inHandAt = inHandAt;
	}

	public SeatingResponse getSeating() {
		return seating;
	}

	public void setSeating(SeatingResponse seating) {
		this.seating = seating;
	}

	public SeatingResponse getMarketplaceOriginalSeating() {
		return marketplaceOriginalSeating;
	}

	public void setMarketplaceOriginalSeating(SeatingResponse marketplaceOriginalSeating) {
		this.marketplaceOriginalSeating = marketplaceOriginalSeating;
	}

	public BigDecimal getTotalNetProceeds() {
		return totalNetProceeds;
	}

	public void setTotalNetProceeds(BigDecimal totalNetProceeds) {
		this.totalNetProceeds = totalNetProceeds;
	}

	public BigDecimal getTotalCost() {
		return totalCost;
	}

	public void setTotalCost(BigDecimal totalCost) {
		this.totalCost = totalCost;
	}

	public BigDecimal getTotalCharges() {
		return totalCharges;
	}

	public void setTotalCharges(BigDecimal totalCharges) {
		this.totalCharges = totalCharges;
	}

	public BigDecimal getTotalCredits() {
		return totalCredits;
	}

	public void setTotalCredits(BigDecimal totalCredits) {
		this.totalCredits = totalCredits;
	}

	public String getCurrencyCode() {
		return currencyCode;
	}

	public void setCurrencyCode(String currencyCode) {
		this.currencyCode = currencyCode;
	}

	public OffsetDateTime getSaleDate() {
File Line
org/oxerr/stubhub/client/model/BulkInventoryTagValuesCreateRequest.java 10
org/oxerr/stubhub/client/model/BulkInventoryTagValuesDeleteRequest.java 10
public class BulkInventoryTagValuesCreateRequest implements Serializable {

	private static final long serialVersionUID = 2026051801L;

	private List<String> values;

	private Long inventoryId;

	private String tagName;

	public List<String> getValues() {
		return values;
	}

	public void setValues(List<String> values) {
		this.values = values;
	}

	public Long getInventoryId() {
		return inventoryId;
	}

	public void setInventoryId(Long inventoryId) {
		this.inventoryId = inventoryId;
	}

	public String getTagName() {
		return tagName;
	}

	public void setTagName(String tagName) {
		this.tagName = tagName;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/EventMappingRequest.java 51
org/oxerr/stubhub/client/model/EventMappingResponse.java 68
}

	public String getVenueName() {
		return venueName;
	}

	public void setVenueName(String venueName) {
		this.venueName = venueName;
	}

	public Boolean getIsEventDateConfirmed() {
		return isEventDateConfirmed;
	}

	public void setIsEventDateConfirmed(Boolean isEventDateConfirmed) {
		this.isEventDateConfirmed = isEventDateConfirmed;
	}

	public String getEventNote() {
		return eventNote;
	}

	public void setEventNote(String eventNote) {
		this.eventNote = eventNote;
	}

	public String getCity() {
		return city;
	}

	public void setCity(String city) {
		this.city = city;
	}

	public String getStateProvince() {
		return stateProvince;
	}

	public void setStateProvince(String stateProvince) {
		this.stateProvince = stateProvince;
	}

	public String getCountryCode() {
		return countryCode;
	}

	public void setCountryCode(String countryCode) {
		this.countryCode = countryCode;
	}
File Line
org/oxerr/stubhub/client/model/HoldResponse.java 341
org/oxerr/stubhub/client/model/SaleResponse.java 346
public void setPaymentStatus(String paymentStatus) {
		this.paymentStatus = paymentStatus;
	}

	public String getPaymentReferenceNumber() {
		return paymentReferenceNumber;
	}

	public void setPaymentReferenceNumber(String paymentReferenceNumber) {
		this.paymentReferenceNumber = paymentReferenceNumber;
	}

	public OffsetDateTime getLastPaymentDate() {
		return lastPaymentDate;
	}

	public void setLastPaymentDate(OffsetDateTime lastPaymentDate) {
		this.lastPaymentDate = lastPaymentDate;
	}

	public String getInternalNotes() {
		return internalNotes;
	}

	public void setInternalNotes(String internalNotes) {
		this.internalNotes = internalNotes;
	}

	public TicketHolderResponse getTicketHolder() {
		return ticketHolder;
	}

	public void setTicketHolder(TicketHolderResponse ticketHolder) {
		this.ticketHolder = ticketHolder;
	}

	public List<TagResponse> getTags() {
		return tags;
	}

	public void setTags(List<TagResponse> tags) {
		this.tags = tags;
	}

	public OffsetDateTime getCreatedDate() {
File Line
org/oxerr/stubhub/client/model/MarketplaceSeatingOverrideInfo.java 25
org/oxerr/stubhub/client/model/MarketplaceSeatingOverrideUpdateRequest.java 34
public void setMarketplace(String marketplace) {
		this.marketplace = marketplace;
	}

	public String getSection() {
		return section;
	}

	public void setSection(String section) {
		this.section = section;
	}

	public String getRow() {
		return row;
	}

	public void setRow(String row) {
		this.row = row;
	}

	public String getSeats() {
		return seats;
	}

	public void setSeats(String seats) {
		this.seats = seats;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/DealConfigHurdleRequest.java 26
org/oxerr/stubhub/client/model/DealConfigHurdleResponse.java 26
private List<BuyerCommissionRequest> purchasersCommissions;

	private Boolean isFallback;

	private Integer priority;

	public UUID getHurdleId() {
		return hurdleId;
	}

	public void setHurdleId(UUID hurdleId) {
		this.hurdleId = hurdleId;
	}

	public String getSplitThresholdDirectionType() {
		return splitThresholdDirectionType;
	}

	public void setSplitThresholdDirectionType(String splitThresholdDirectionType) {
		this.splitThresholdDirectionType = splitThresholdDirectionType;
	}

	public BigDecimal getSplitThresholdValue() {
		return splitThresholdValue;
	}

	public void setSplitThresholdValue(BigDecimal splitThresholdValue) {
		this.splitThresholdValue = splitThresholdValue;
	}

	public UUID getVendorAccountId() {
		return vendorAccountId;
	}

	public void setVendorAccountId(UUID vendorAccountId) {
		this.vendorAccountId = vendorAccountId;
	}

	public BigDecimal getVendorsCommission() {
		return vendorsCommission;
	}

	public void setVendorsCommission(BigDecimal vendorsCommission) {
		this.vendorsCommission = vendorsCommission;
	}

	public List<BuyerCommissionRequest> getPurchasersCommissions() {
File Line
org/oxerr/stubhub/client/model/BulkInventoryListingNotesCreateRequest.java 10
org/oxerr/stubhub/client/model/BulkInventoryListingNotesDeleteRequest.java 10
public class BulkInventoryListingNotesCreateRequest implements Serializable {

	private static final long serialVersionUID = 2026051801L;

	private List<String> notes;

	private Long inventoryId;

	public List<String> getNotes() {
		return notes;
	}

	public void setNotes(List<String> notes) {
		this.notes = notes;
	}

	public Long getInventoryId() {
		return inventoryId;
	}

	public void setInventoryId(Long inventoryId) {
		this.inventoryId = inventoryId;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/BulkInventoryTagsCreateRequest.java 10
org/oxerr/stubhub/client/model/BulkInventoryTagsUpdateRequest.java 10
public class BulkInventoryTagsCreateRequest implements Serializable {

	private static final long serialVersionUID = 2026051801L;

	private List<TagRequest> tags;

	private Long inventoryId;

	public List<TagRequest> getTags() {
		return tags;
	}

	public void setTags(List<TagRequest> tags) {
		this.tags = tags;
	}

	public Long getInventoryId() {
		return inventoryId;
	}

	public void setInventoryId(Long inventoryId) {
		this.inventoryId = inventoryId;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/CircuitBreakerSetting.java 38
org/oxerr/stubhub/client/model/InventoryPricingSettingRequest.java 311
}

	public BigDecimal getMaxDiscountVelocityPercent() {
		return maxDiscountVelocityPercent;
	}

	public void setMaxDiscountVelocityPercent(BigDecimal maxDiscountVelocityPercent) {
		this.maxDiscountVelocityPercent = maxDiscountVelocityPercent;
	}

	public Long getMaxDiscountVelocityTicks() {
		return maxDiscountVelocityTicks;
	}

	public void setMaxDiscountVelocityTicks(Long maxDiscountVelocityTicks) {
		this.maxDiscountVelocityTicks = maxDiscountVelocityTicks;
	}

	public Integer getMinCompListingCount() {
		return minCompListingCount;
	}

	public void setMinCompListingCount(Integer minCompListingCount) {
		this.minCompListingCount = minCompListingCount;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/HoldResponse.java 113
org/oxerr/stubhub/client/model/ListingResponse.java 103
org/oxerr/stubhub/client/model/SaleResponse.java 118
org/oxerr/stubhub/client/model/TicketGroupResponse.java 62
public EventMappingResponse getEventMapping() {
		return eventMapping;
	}

	public void setEventMapping(EventMappingResponse eventMapping) {
		this.eventMapping = eventMapping;
	}

	public EventResponse getEvent() {
		return event;
	}

	public void setEvent(EventResponse event) {
		this.event = event;
	}

	public VenueResponse getVenue() {
		return venue;
	}

	public void setVenue(VenueResponse venue) {
		this.venue = venue;
	}

	public PerformerResponse getPerformer() {
		return performer;
	}

	public void setPerformer(PerformerResponse performer) {
		this.performer = performer;
	}

	public Long getId() {
		return id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public String getMarketplaceSaleId() {
File Line
org/oxerr/stubhub/client/model/AdminHoldResponse.java 10
org/oxerr/stubhub/client/model/InventoryAdminHoldRequest.java 10
public class AdminHoldResponse implements Serializable {

	private static final long serialVersionUID = 2026051801L;

	private LocalDateTime expirationDate;

	private String notes;

	public LocalDateTime getExpirationDate() {
		return expirationDate;
	}

	public void setExpirationDate(LocalDateTime expirationDate) {
		this.expirationDate = expirationDate;
	}

	public String getNotes() {
		return notes;
	}

	public void setNotes(String notes) {
		this.notes = notes;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/BuyerCommission.java 11
org/oxerr/stubhub/client/model/BuyerCommissionResponse.java 11
public class BuyerCommission implements Serializable {

	private static final long serialVersionUID = 2025051801L;

	private UUID buyerUserId;

	private BigDecimal commissionPercentage;

	public UUID getBuyerUserId() {
		return buyerUserId;
	}

	public void setBuyerUserId(UUID buyerUserId) {
		this.buyerUserId = buyerUserId;
	}

	public BigDecimal getCommissionPercentage() {
		return commissionPercentage;
	}

	public void setCommissionPercentage(BigDecimal commissionPercentage) {
		this.commissionPercentage = commissionPercentage;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/ListingSeatingResponse.java 27
org/oxerr/stubhub/client/model/SeatingRequest.java 23
org/oxerr/stubhub/client/model/SeatingResponse.java 23
public String getSection() {
		return section;
	}

	public void setSection(String section) {
		this.section = section;
	}

	public String getRow() {
		return row;
	}

	public void setRow(String row) {
		this.row = row;
	}

	public String getPiggybackRow() {
		return piggybackRow;
	}

	public void setPiggybackRow(String piggybackRow) {
		this.piggybackRow = piggybackRow;
	}

	public String getSeatFrom() {
		return seatFrom;
	}

	public void setSeatFrom(String seatFrom) {
		this.seatFrom = seatFrom;
	}

	public String getSeatTo() {
		return seatTo;
	}

	public void setSeatTo(String seatTo) {
		this.seatTo = seatTo;
	}
File Line
org/oxerr/stubhub/client/model/DealConfigHurdleRequest.java 76
org/oxerr/stubhub/client/model/DealConfigHurdleResponse.java 76
public void setPurchasersCommissions(List<BuyerCommissionRequest> purchasersCommissions) {
		this.purchasersCommissions = purchasersCommissions;
	}

	public Boolean getIsFallback() {
		return isFallback;
	}

	public void setIsFallback(Boolean isFallback) {
		this.isFallback = isFallback;
	}

	public Integer getPriority() {
		return priority;
	}

	public void setPriority(Integer priority) {
		this.priority = priority;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/BuyerCommission.java 15
org/oxerr/stubhub/client/model/BuyerCommissionRequest.java 15
org/oxerr/stubhub/client/model/BuyerCommissionResponse.java 15
private UUID buyerUserId;

	private BigDecimal commissionPercentage;

	public UUID getBuyerUserId() {
		return buyerUserId;
	}

	public void setBuyerUserId(UUID buyerUserId) {
		this.buyerUserId = buyerUserId;
	}

	public BigDecimal getCommissionPercentage() {
		return commissionPercentage;
	}

	public void setCommissionPercentage(BigDecimal commissionPercentage) {
		this.commissionPercentage = commissionPercentage;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/InventoryPriceUpdateRequest.java 68
org/oxerr/stubhub/client/model/MarketplacePricingInfo.java 46
}

	public BigDecimal getMarketplaceMarkup() {
		return marketplaceMarkup;
	}

	public void setMarketplaceMarkup(BigDecimal marketplaceMarkup) {
		this.marketplaceMarkup = marketplaceMarkup;
	}

	public Boolean getPriceByMarketplace() {
		return priceByMarketplace;
	}

	public void setPriceByMarketplace(Boolean priceByMarketplace) {
		this.priceByMarketplace = priceByMarketplace;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}
File Line
org/oxerr/stubhub/client/model/PurchaseResponse.java 249
org/oxerr/stubhub/client/model/TicketGroupResponse.java 228
}

	public BigDecimal getTotalEstimatedCost() {
		return totalEstimatedCost;
	}

	public void setTotalEstimatedCost(BigDecimal totalEstimatedCost) {
		this.totalEstimatedCost = totalEstimatedCost;
	}

	public String getTotalEstimatedCostCurrency() {
		return totalEstimatedCostCurrency;
	}

	public void setTotalEstimatedCostCurrency(String totalEstimatedCostCurrency) {
		this.totalEstimatedCostCurrency = totalEstimatedCostCurrency;
	}

	@Override
	public int hashCode() {
		return HashCodeBuilder.reflectionHashCode(this);
	}

	@Override
	public boolean equals(Object obj) {
		return EqualsBuilder.reflectionEquals(this, obj);
	}

	@Override
	public String toString() {
		return ToStringBuilder.reflectionToString(this);
	}
}