Name | Type | Description | Notes |
---|---|---|---|
Format | Pointer to string | An optional value to denote which ISO 3166 format to return. Valid values are: `alpha2` - Two-character country code (e.g., "US"); this is the default value if no format is supplied `alpha3` - Three-character country code (e.g., "USA") `numeric` - The numeric country code (e.g., "840") | [optional] |
RequiresPeriodicRefresh | Pointer to bool | A value that indicates whether the transform logic should be re-evaluated every evening as part of the identity refresh process | [optional] [default to false] |
Input | Pointer to map[string]interface{} | This is an optional attribute that can explicitly define the input data which will be fed into the transform logic. If input is not provided, the transform will take its input from the source and attribute combination configured via the UI. | [optional] |
func NewISO3166() *ISO3166
NewISO3166 instantiates a new ISO3166 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewISO3166WithDefaults() *ISO3166
NewISO3166WithDefaults instantiates a new ISO3166 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *ISO3166) GetFormat() string
GetFormat returns the Format field if non-nil, zero value otherwise.
func (o *ISO3166) GetFormatOk() (*string, bool)
GetFormatOk returns a tuple with the Format field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ISO3166) SetFormat(v string)
SetFormat sets Format field to given value.
func (o *ISO3166) HasFormat() bool
HasFormat returns a boolean if a field has been set.
func (o *ISO3166) GetRequiresPeriodicRefresh() bool
GetRequiresPeriodicRefresh returns the RequiresPeriodicRefresh field if non-nil, zero value otherwise.
func (o *ISO3166) GetRequiresPeriodicRefreshOk() (*bool, bool)
GetRequiresPeriodicRefreshOk returns a tuple with the RequiresPeriodicRefresh field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ISO3166) SetRequiresPeriodicRefresh(v bool)
SetRequiresPeriodicRefresh sets RequiresPeriodicRefresh field to given value.
func (o *ISO3166) HasRequiresPeriodicRefresh() bool
HasRequiresPeriodicRefresh returns a boolean if a field has been set.
func (o *ISO3166) GetInput() map[string]interface{}
GetInput returns the Input field if non-nil, zero value otherwise.
func (o *ISO3166) GetInputOk() (*map[string]interface{}, bool)
GetInputOk returns a tuple with the Input field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ISO3166) SetInput(v map[string]interface{})
SetInput sets Input field to given value.
func (o *ISO3166) HasInput() bool
HasInput returns a boolean if a field has been set.