/* Options: Date: 2025-10-28 03:40:41 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: InvoiceFilesAdd.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/invoice_files", Verbs="POST") @DataContract open class InvoiceFilesAdd : IReturn { @DataMember(Order=2) @Validate(Validator="NotNull") open var TenantsId:Int? = null @DataMember(Order=3) @Validate(Validator="NotNull") open var DebtsId:Long? = null @DataMember(Order=4) @Validate(Validator="NotNull") open var InvoiceUrl:String? = null companion object { private val responseType = InvoiceFilesAddResponse::class.java } override fun getResponseType(): Any? = InvoiceFilesAdd.responseType } open class InvoiceFilesAddResponse { @DataMember(Order=2) open var TenantsId:Int? = null @DataMember(Order=3) open var DebtsId:Long? = null @DataMember(Order=4) open var InvoiceUrl:String? = null @DataMember(Order=6) open var ResponseStatus:ResponseStatus? = null }