github.com/grokify/go-ringcentral-client@v0.3.31/engagevoice/v1/client/model_country.go (about) 1 /* 2 * RingCentral Engage Voice API 3 * 4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) 5 * 6 * API version: 1.0 7 * Generated by: OpenAPI Generator (https://openapi-generator.tech) 8 */ 9 10 package engagevoice 11 12 type Country struct { 13 CountryCode string `json:"countryCode"` 14 // Country code i ISO 3166-1 alpha-3 format 15 CountryId string `json:"countryId,omitempty"` 16 CountryName string `json:"countryName,omitempty"` 17 MaxAniLength int32 `json:"maxAniLength,omitempty"` 18 MaxUtcOffset int32 `json:"maxUtcOffset,omitempty"` 19 MinAniLength int32 `json:"minAniLength,omitempty"` 20 MinUtcOffset int32 `json:"minUtcOffset,omitempty"` 21 }