/* Options: Date: 2024-09-21 03:21:29 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AppGetScheduleInformation.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route("/portal/schedule") open class AppGetScheduleInformation : IReturn { var accountId:String? = null var customerId:String? = null var endpointId:String? = null companion object { private val responseType = AppScheduleInformation::class.java } override fun getResponseType(): Any? = AppGetScheduleInformation.responseType } open class AppScheduleInformation { var timeZoneId:String? = null var customerStates:ArrayList = ArrayList() }