/* Options: Date: 2024-09-19 22:55:27 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://initiation.sirva.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ExtendSasRequest.* //ExcludeTypes: //DefaultImports: */ export class DocumentRequestBase { /** @description ExternalID */ // @ApiMember(Description="ExternalID", ExcludeInSchema=true, IsRequired=true, ParameterType="path") public ExternalId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ResponseBase { public Message: string; public IsSuccess: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ExtendSasResponse extends ResponseBase { public Link: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @Route("/documents/extendSas", "POST") export class ExtendSasRequest extends DocumentRequestBase implements IReturn { public FileName: string; /** @description Month */ // @ApiMember(Description="Month", ExcludeInSchema=true, IsRequired=true, ParameterType="path") public Month: number; /** @description Day */ // @ApiMember(Description="Day", ExcludeInSchema=true, IsRequired=true, ParameterType="path") public Day: number; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'ExtendSasRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new ExtendSasResponse(); } }