/* Options: Date: 2025-05-06 13:06:17 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: EventOwnerTicketTypeToCardConnectionCreateRequest.* //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="/EventOwnerTicketTypeToCardConnection", Verbs="POST") public static class EventOwnerTicketTypeToCardConnectionCreateRequest implements IReturn { public EventOwnerTicketTypeToCardConnection item = null; public EventOwnerTicketTypeToCardConnection getItem() { return item; } public EventOwnerTicketTypeToCardConnectionCreateRequest setItem(EventOwnerTicketTypeToCardConnection value) { this.item = value; return this; } private static Object responseType = EventOwnerTicketTypeToCardConnectionResult.class; public Object getResponseType() { return responseType; } } public static class EventOwnerTicketTypeToCardConnectionResult { public EventOwnerTicketTypeToCardConnection item = null; public Integer statusCode = null; public String message = null; public EventOwnerTicketTypeToCardConnection getItem() { return item; } public EventOwnerTicketTypeToCardConnectionResult setItem(EventOwnerTicketTypeToCardConnection value) { this.item = value; return this; } public Integer getStatusCode() { return statusCode; } public EventOwnerTicketTypeToCardConnectionResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public EventOwnerTicketTypeToCardConnectionResult setMessage(String value) { this.message = value; return this; } } public static class EventOwnerTicketTypeToCardConnection { public Integer id = null; public Integer ownerCardTypeId = null; public Integer ownerTicketTypeId = null; public Boolean active = null; public Integer getId() { return id; } public EventOwnerTicketTypeToCardConnection setId(Integer value) { this.id = value; return this; } public Integer getOwnerCardTypeId() { return ownerCardTypeId; } public EventOwnerTicketTypeToCardConnection setOwnerCardTypeId(Integer value) { this.ownerCardTypeId = value; return this; } public Integer getOwnerTicketTypeId() { return ownerTicketTypeId; } public EventOwnerTicketTypeToCardConnection setOwnerTicketTypeId(Integer value) { this.ownerTicketTypeId = value; return this; } public Boolean isActive() { return active; } public EventOwnerTicketTypeToCardConnection setActive(Boolean value) { this.active = value; return this; } } }