/* Options: Date: 2025-05-06 15:41: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: EventSeatNameDetailsRequest.* //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="/EventSeats/SeatNameDetails", Verbs="POST") // @Route(Path="/EventSeats/SeatNameDetails/seat/{SeatId}", Verbs="GET") public static class EventSeatNameDetailsRequest implements IReturn { public Integer seatId = null; public Integer getSeatId() { return seatId; } public EventSeatNameDetailsRequest setSeatId(Integer value) { this.seatId = value; return this; } private static Object responseType = EventSeatNameDetailsResult.class; public Object getResponseType() { return responseType; } } public static class EventSeatNameDetailsResult { public EventSeatNameDetails nameDetails = null; public Integer statusCode = null; public String message = null; public EventSeatNameDetails getNameDetails() { return nameDetails; } public EventSeatNameDetailsResult setNameDetails(EventSeatNameDetails value) { this.nameDetails = value; return this; } public Integer getStatusCode() { return statusCode; } public EventSeatNameDetailsResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public EventSeatNameDetailsResult setMessage(String value) { this.message = value; return this; } } public static class EventSeatNameDetails { public Integer id = null; public String seatName = null; public Integer rowId = null; public String rowName = null; public Integer sectionId = null; public String sectionName = null; public Integer getId() { return id; } public EventSeatNameDetails setId(Integer value) { this.id = value; return this; } public String getSeatName() { return seatName; } public EventSeatNameDetails setSeatName(String value) { this.seatName = value; return this; } public Integer getRowId() { return rowId; } public EventSeatNameDetails setRowId(Integer value) { this.rowId = value; return this; } public String getRowName() { return rowName; } public EventSeatNameDetails setRowName(String value) { this.rowName = value; return this; } public Integer getSectionId() { return sectionId; } public EventSeatNameDetails setSectionId(Integer value) { this.sectionId = value; return this; } public String getSectionName() { return sectionName; } public EventSeatNameDetails setSectionName(String value) { this.sectionName = value; return this; } } }