Skip to content

Latest commit

 

History

History
103 lines (56 loc) · 3.26 KB

Reference.md

File metadata and controls

103 lines (56 loc) · 3.26 KB

Reference

Properties

Name Type Description Notes
Id string This ID specifies the name of the pre-existing transform which you want to use within your current transform
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

NewReference

func NewReference(id string, ) *Reference

NewReference instantiates a new Reference 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

NewReferenceWithDefaults

func NewReferenceWithDefaults() *Reference

NewReferenceWithDefaults instantiates a new Reference 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

GetId

func (o *Reference) GetId() string

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *Reference) GetIdOk() (*string, bool)

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

SetId

func (o *Reference) SetId(v string)

SetId sets Id field to given value.

GetRequiresPeriodicRefresh

func (o *Reference) GetRequiresPeriodicRefresh() bool

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

GetRequiresPeriodicRefreshOk

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

SetRequiresPeriodicRefresh sets RequiresPeriodicRefresh field to given value.

HasRequiresPeriodicRefresh

func (o *Reference) HasRequiresPeriodicRefresh() bool

HasRequiresPeriodicRefresh returns a boolean if a field has been set.

GetInput

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

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

GetInputOk

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

SetInput sets Input field to given value.

HasInput

func (o *Reference) HasInput() bool

HasInput returns a boolean if a field has been set.

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