Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.63 KB

ISO3166.md

File metadata and controls

108 lines (59 loc) · 3.63 KB

ISO3166

Properties

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]

Methods

NewISO3166

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

NewISO3166WithDefaults

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

GetFormat

func (o *ISO3166) GetFormat() string

GetFormat returns the Format field if non-nil, zero value otherwise.

GetFormatOk

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.

SetFormat

func (o *ISO3166) SetFormat(v string)

SetFormat sets Format field to given value.

HasFormat

func (o *ISO3166) HasFormat() bool

HasFormat returns a boolean if a field has been set.

GetRequiresPeriodicRefresh

func (o *ISO3166) GetRequiresPeriodicRefresh() bool

GetRequiresPeriodicRefresh returns the RequiresPeriodicRefresh field if non-nil, zero value otherwise.

GetRequiresPeriodicRefreshOk

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.

SetRequiresPeriodicRefresh

func (o *ISO3166) SetRequiresPeriodicRefresh(v bool)

SetRequiresPeriodicRefresh sets RequiresPeriodicRefresh field to given value.

HasRequiresPeriodicRefresh

func (o *ISO3166) HasRequiresPeriodicRefresh() bool

HasRequiresPeriodicRefresh returns a boolean if a field has been set.

GetInput

func (o *ISO3166) GetInput() map[string]interface{}

GetInput returns the Input field if non-nil, zero value otherwise.

GetInputOk

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.

SetInput

func (o *ISO3166) SetInput(v map[string]interface{})

SetInput sets Input field to given value.

HasInput

func (o *ISO3166) HasInput() bool

HasInput returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]