/* Options: Date: 2026-08-01 04:25:02 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RunBillingSystemRequest.* //ExcludeTypes: //InitializeCollections: True //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="/v1/billing/run/system", Verbs="POST") open class RunBillingSystemRequest : IReturn { open var RunType:String? = null open var PeriodKey:String? = null open var TenantId:UUID? = null open var ReclaimStaleMinutes:Int? = null companion object { private val responseType = RunBillingSystemResponse::class.java } override fun getResponseType(): Any? = RunBillingSystemRequest.responseType } open class RunBillingSystemResponse { open var ResponseStatus:ResponseStatus? = null open var TenantsSwept:Int? = null open var RunsStarted:Int? = null open var Reclaimed:Int? = null open var Results:ArrayList = ArrayList() } open class RunBillingSystemTenantResult { open var TenantId:UUID? = null open var BillingRunID:Int? = null open var Started:Boolean? = null open var Message:String? = null }