/* Options: Date: 2024-09-19 22:53:11 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://initiation.sirva.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ExtendSasRequest.* //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="/documents/extendSas", Verbs="POST") public static class ExtendSasRequest extends DocumentRequestBase implements IReturn { public String FileName = null; /** * Month */ @ApiMember(Description="Month", ExcludeInSchema=true, IsRequired=true, ParameterType="path") public Integer Month = null; /** * Day */ @ApiMember(Description="Day", ExcludeInSchema=true, IsRequired=true, ParameterType="path") public Integer Day = null; public String getFileName() { return FileName; } public ExtendSasRequest setFileName(String value) { this.FileName = value; return this; } public Integer getMonth() { return Month; } public ExtendSasRequest setMonth(Integer value) { this.Month = value; return this; } public Integer getDay() { return Day; } public ExtendSasRequest setDay(Integer value) { this.Day = value; return this; } private static Object responseType = ExtendSasResponse.class; public Object getResponseType() { return responseType; } } public static class ExtendSasResponse extends ResponseBase { public String Link = null; public String getLink() { return Link; } public ExtendSasResponse setLink(String value) { this.Link = value; return this; } } public static class DocumentRequestBase { /** * ExternalID */ @ApiMember(Description="ExternalID", ExcludeInSchema=true, IsRequired=true, ParameterType="path") public String ExternalId = null; public String getExternalId() { return ExternalId; } public DocumentRequestBase setExternalId(String value) { this.ExternalId = value; return this; } } public static class ResponseBase { public String Message = null; public Boolean IsSuccess = null; public String getMessage() { return Message; } public ResponseBase setMessage(String value) { this.Message = value; return this; } public Boolean getIsSuccess() { return IsSuccess; } public ResponseBase setIsSuccess(Boolean value) { this.IsSuccess = value; return this; } } }