/* Options: Date: 2026-08-17 08:32:31 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GiftCardTypeDeleteRequest.* //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="/GiftCardType/{Id}", Verbs="DELETE") public static class GiftCardTypeDeleteRequest implements IReturn { public Integer id = null; public Integer getId() { return id; } public GiftCardTypeDeleteRequest setId(Integer value) { this.id = value; return this; } private static Object responseType = GiftCardSimpleResult.class; public Object getResponseType() { return responseType; } } public static class GiftCardSimpleResult { public Boolean success = null; public String status = null; public Integer statusCode = null; public String message = null; public Boolean isSuccess() { return success; } public GiftCardSimpleResult setSuccess(Boolean value) { this.success = value; return this; } public String getStatus() { return status; } public GiftCardSimpleResult setStatus(String value) { this.status = value; return this; } public Integer getStatusCode() { return statusCode; } public GiftCardSimpleResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public GiftCardSimpleResult setMessage(String value) { this.message = value; return this; } } }