TicketTypePriorityRequest.java
package org.oxerr.stubhub.client.model;
public class TicketTypePriorityRequest {
private Integer priority;
private String ticketType;
private Boolean isBlocked;
public Integer getPriority() {
return priority;
}
public void setPriority(Integer priority) {
this.priority = priority;
}
public String getTicketType() {
return ticketType;
}
public void setTicketType(String ticketType) {
this.ticketType = ticketType;
}
public Boolean getIsBlocked() {
return isBlocked;
}
public void setIsBlocked(Boolean isBlocked) {
this.isBlocked = isBlocked;
}
}