/* Options: Date: 2025-05-04 22:36:34 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AppGetScheduleInformation.* //ExcludeTypes: //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.*; public class dtos { @Route(Path="/portal/schedule") public static class AppGetScheduleInformation implements IReturn { public String accountId = null; public String customerId = null; public String endpointId = null; public String getAccountId() { return accountId; } public AppGetScheduleInformation setAccountId(String value) { this.accountId = value; return this; } public String getCustomerId() { return customerId; } public AppGetScheduleInformation setCustomerId(String value) { this.customerId = value; return this; } public String getEndpointId() { return endpointId; } public AppGetScheduleInformation setEndpointId(String value) { this.endpointId = value; return this; } private static Object responseType = AppScheduleInformation.class; public Object getResponseType() { return responseType; } } public static class AppScheduleInformation { public String timeZoneId = null; public ArrayList customerStates = null; public String getTimeZoneId() { return timeZoneId; } public AppScheduleInformation setTimeZoneId(String value) { this.timeZoneId = value; return this; } public ArrayList getCustomerStates() { return customerStates; } public AppScheduleInformation setCustomerStates(ArrayList value) { this.customerStates = value; return this; } } }