/* Options: Date: 2025-06-27 01:39:26 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: EventSeatingSeatDeleteRequest.* //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="/EventSeatingSeat/{Id}", Verbs="DELETE") public static class EventSeatingSeatDeleteRequest implements IReturn { public Integer id = null; public Integer getId() { return id; } public EventSeatingSeatDeleteRequest setId(Integer value) { this.id = value; return this; } private static Object responseType = EventSeatingSeatDeleteResult.class; public Object getResponseType() { return responseType; } } public static class EventSeatingSeatDeleteResult { public Integer statusCode = null; public String message = null; public Integer getStatusCode() { return statusCode; } public EventSeatingSeatDeleteResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public EventSeatingSeatDeleteResult setMessage(String value) { this.message = value; return this; } } }