github.com/twilio/twilio-go@v1.20.1/rest/api/v2010/model_api_v2010_available_phone_number_country.go (about) 1 /* 2 * This code was generated by 3 * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ 4 * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ 5 * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ 6 * 7 * Twilio - Api 8 * This is the public Twilio REST API. 9 * 10 * NOTE: This class is auto generated by OpenAPI Generator. 11 * https://openapi-generator.tech 12 * Do not edit the class manually. 13 */ 14 15 package openapi 16 17 // ApiV2010AvailablePhoneNumberCountry struct for ApiV2010AvailablePhoneNumberCountry 18 type ApiV2010AvailablePhoneNumberCountry struct { 19 // The [ISO-3166-1](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code of the country. 20 CountryCode *string `json:"country_code,omitempty"` 21 // The name of the country. 22 Country *string `json:"country,omitempty"` 23 // The URI of the Country resource, relative to `https://api.twilio.com`. 24 Uri *string `json:"uri,omitempty"` 25 // Whether all phone numbers available in the country are new to the Twilio platform. `true` if they are and `false` if all numbers are not in the Twilio Phone Number Beta program. 26 Beta *bool `json:"beta,omitempty"` 27 // A list of related AvailablePhoneNumber resources identified by their URIs relative to `https://api.twilio.com`. 28 SubresourceUris *map[string]interface{} `json:"subresource_uris,omitempty"` 29 }