Skip to content

Latest commit

 

History

History
98 lines (53 loc) · 2.59 KB

Dependency.md

File metadata and controls

98 lines (53 loc) · 2.59 KB

Dependency

Properties

Name Type Description Notes
Id Pointer to string [optional]
SourceColumnId string
TargetColumnId string

Methods

NewDependency

func NewDependency(sourceColumnId string, targetColumnId string, ) *Dependency

NewDependency instantiates a new Dependency 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

NewDependencyWithDefaults

func NewDependencyWithDefaults() *Dependency

NewDependencyWithDefaults instantiates a new Dependency 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 *Dependency) GetId() string

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

GetIdOk

func (o *Dependency) 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 *Dependency) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *Dependency) HasId() bool

HasId returns a boolean if a field has been set.

GetSourceColumnId

func (o *Dependency) GetSourceColumnId() string

GetSourceColumnId returns the SourceColumnId field if non-nil, zero value otherwise.

GetSourceColumnIdOk

func (o *Dependency) GetSourceColumnIdOk() (*string, bool)

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

SetSourceColumnId

func (o *Dependency) SetSourceColumnId(v string)

SetSourceColumnId sets SourceColumnId field to given value.

GetTargetColumnId

func (o *Dependency) GetTargetColumnId() string

GetTargetColumnId returns the TargetColumnId field if non-nil, zero value otherwise.

GetTargetColumnIdOk

func (o *Dependency) GetTargetColumnIdOk() (*string, bool)

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

SetTargetColumnId

func (o *Dependency) SetTargetColumnId(v string)

SetTargetColumnId sets TargetColumnId field to given value.

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