/* Options: Date: 2024-12-15 20:42:38 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ExportPaymentRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/payments/export", Verbs="PUT") open class ExportPaymentRequest : PutPatchOperationTenanted(), IReturn { companion object { private val responseType = ExportPaymentResponse::class.java } override fun getResponseType(): Any? = ExportPaymentRequest.responseType } open class ExportPaymentResponse { var responseStatus:ResponseStatus? = null } open interface ITenantedRequest { var organisationId:String? } open class PutPatchOperationUnTenanted : IPatch, IPut { } open class PutPatchOperationTenanted : PutPatchOperationUnTenanted(), ITenantedRequest { var organisationId:String? = null }