/* Options: Date: 2025-05-04 20:08:36 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: GetTwilioAutoPilotTypeValues.* //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 { /** * Get the values available for an autopilot question type */ @Route(Path="/values/twilio-auto-pilot-types", Verbs="GET") @Api(Description="Get the values available for an autopilot question type") public static class GetTwilioAutoPilotTypeValues implements IReturn { public String accountId = null; public String getAccountId() { return accountId; } public GetTwilioAutoPilotTypeValues setAccountId(String value) { this.accountId = value; return this; } private static Object responseType = GetValuesResponse.class; public Object getResponseType() { return responseType; } } public static class GetValuesResponse { public ArrayList fieldValues = null; public ArrayList getFieldValues() { return fieldValues; } public GetValuesResponse setFieldValues(ArrayList value) { this.fieldValues = value; return this; } } public static class FieldValue { public String displayName = null; public String value = null; public String getDisplayName() { return displayName; } public FieldValue setDisplayName(String value) { this.displayName = value; return this; } public String getValue() { return value; } public FieldValue setValue(String value) { this.value = value; return this; } } }