/* Options: Date: 2024-09-19 22:58:57 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://initiation-test.sirva.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ExtendSasRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/documents/extendSas", Verbs="POST") open class ExtendSasRequest : DocumentRequestBase(), IReturn { var FileName:String? = null /** * Month */ @ApiMember(Description="Month", ExcludeInSchema=true, IsRequired=true, ParameterType="path") var Month:Int? = null /** * Day */ @ApiMember(Description="Day", ExcludeInSchema=true, IsRequired=true, ParameterType="path") var Day:Int? = null companion object { private val responseType = ExtendSasResponse::class.java } override fun getResponseType(): Any? = ExtendSasRequest.responseType } open class ExtendSasResponse : ResponseBase() { var Link:String? = null } open class DocumentRequestBase { /** * ExternalID */ @ApiMember(Description="ExternalID", ExcludeInSchema=true, IsRequired=true, ParameterType="path") var ExternalId:String? = null } open class ResponseBase { var Message:String? = null var IsSuccess:Boolean? = null }