/* Options: Date: 2025-05-06 11:38:35 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EventOwnerTicketTypeConnectionUpdateRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/EventOwnerTicketTypeConnection", Verbs="PUT") public static class EventOwnerTicketTypeConnectionUpdateRequest implements IReturn { public EventOwnerTicketTypeConnection item = null; public EventOwnerTicketTypeConnection getItem() { return item; } public EventOwnerTicketTypeConnectionUpdateRequest setItem(EventOwnerTicketTypeConnection value) { this.item = value; return this; } private static Object responseType = EventOwnerTicketTypeConnectionResult.class; public Object getResponseType() { return responseType; } } public static class EventOwnerTicketTypeConnectionResult { public EventOwnerTicketTypeConnection item = null; public Integer statusCode = null; public String message = null; public EventOwnerTicketTypeConnection getItem() { return item; } public EventOwnerTicketTypeConnectionResult setItem(EventOwnerTicketTypeConnection value) { this.item = value; return this; } public Integer getStatusCode() { return statusCode; } public EventOwnerTicketTypeConnectionResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public EventOwnerTicketTypeConnectionResult setMessage(String value) { this.message = value; return this; } } public static class EventOwnerTicketTypeConnection { public Integer id = null; public Integer eventSeatingSectionId = null; public Integer ownerTicketTypeId = null; public Integer maxTickets = null; public Integer eventId = null; public Integer getId() { return id; } public EventOwnerTicketTypeConnection setId(Integer value) { this.id = value; return this; } public Integer getEventSeatingSectionId() { return eventSeatingSectionId; } public EventOwnerTicketTypeConnection setEventSeatingSectionId(Integer value) { this.eventSeatingSectionId = value; return this; } public Integer getOwnerTicketTypeId() { return ownerTicketTypeId; } public EventOwnerTicketTypeConnection setOwnerTicketTypeId(Integer value) { this.ownerTicketTypeId = value; return this; } public Integer getMaxTickets() { return maxTickets; } public EventOwnerTicketTypeConnection setMaxTickets(Integer value) { this.maxTickets = value; return this; } public Integer getEventId() { return eventId; } public EventOwnerTicketTypeConnection setEventId(Integer value) { this.eventId = value; return this; } } }