Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.73 KB

E164phone.md

File metadata and controls

108 lines (59 loc) · 3.73 KB

E164phone

Properties

Name Type Description Notes
DefaultRegion Pointer to string This is an optional attribute that can be used to define the region of the phone number to format into. If defaultRegion is not provided, it will take US as the default country. The format of the country code should be in ISO 3166-1 alpha-2 format [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

NewE164phone

func NewE164phone() *E164phone

NewE164phone instantiates a new E164phone 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

NewE164phoneWithDefaults

func NewE164phoneWithDefaults() *E164phone

NewE164phoneWithDefaults instantiates a new E164phone 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

GetDefaultRegion

func (o *E164phone) GetDefaultRegion() string

GetDefaultRegion returns the DefaultRegion field if non-nil, zero value otherwise.

GetDefaultRegionOk

func (o *E164phone) GetDefaultRegionOk() (*string, bool)

GetDefaultRegionOk returns a tuple with the DefaultRegion field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetDefaultRegion

func (o *E164phone) SetDefaultRegion(v string)

SetDefaultRegion sets DefaultRegion field to given value.

HasDefaultRegion

func (o *E164phone) HasDefaultRegion() bool

HasDefaultRegion returns a boolean if a field has been set.

GetRequiresPeriodicRefresh

func (o *E164phone) GetRequiresPeriodicRefresh() bool

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

GetRequiresPeriodicRefreshOk

func (o *E164phone) 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 *E164phone) SetRequiresPeriodicRefresh(v bool)

SetRequiresPeriodicRefresh sets RequiresPeriodicRefresh field to given value.

HasRequiresPeriodicRefresh

func (o *E164phone) HasRequiresPeriodicRefresh() bool

HasRequiresPeriodicRefresh returns a boolean if a field has been set.

GetInput

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

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

GetInputOk

func (o *E164phone) 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 *E164phone) SetInput(v map[string]interface{})

SetInput sets Input field to given value.

HasInput

func (o *E164phone) HasInput() bool

HasInput returns a boolean if a field has been set.

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