/* Options: Date: 2025-05-04 20:22:49 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCountryCodeFieldValues.* //ExcludeTypes: //InitializeCollections: False //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.* /** * Get country code values */ @Route(Path="/values/country-code") @Api(Description="Get country code values") open class GetCountryCodeFieldValues : IReturn { open var accountId:String? = null companion object { private val responseType = GetValuesResponse::class.java } override fun getResponseType(): Any? = GetCountryCodeFieldValues.responseType } open class GetValuesResponse { open var fieldValues:ArrayList? = null } open class FieldValue { open var displayName:String? = null open var value:String? = null }