Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 4.55 KB

IdentitySourceDTO.md

File metadata and controls

186 lines (101 loc) · 4.55 KB

IdentitySourceDTO

Properties

Name Type Description Notes
Description Pointer to string [optional]
ElementId Pointer to string [optional]
Id Pointer to int64 [optional]
Name Pointer to string [optional]
X Pointer to float64 [optional]
Y Pointer to float64 [optional]

Methods

NewIdentitySourceDTO

func NewIdentitySourceDTO() *IdentitySourceDTO

NewIdentitySourceDTO instantiates a new IdentitySourceDTO 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

NewIdentitySourceDTOWithDefaults

func NewIdentitySourceDTOWithDefaults() *IdentitySourceDTO

NewIdentitySourceDTOWithDefaults instantiates a new IdentitySourceDTO 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

GetDescription

func (o *IdentitySourceDTO) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *IdentitySourceDTO) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *IdentitySourceDTO) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *IdentitySourceDTO) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetElementId

func (o *IdentitySourceDTO) GetElementId() string

GetElementId returns the ElementId field if non-nil, zero value otherwise.

GetElementIdOk

func (o *IdentitySourceDTO) GetElementIdOk() (*string, bool)

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

SetElementId

func (o *IdentitySourceDTO) SetElementId(v string)

SetElementId sets ElementId field to given value.

HasElementId

func (o *IdentitySourceDTO) HasElementId() bool

HasElementId returns a boolean if a field has been set.

GetId

func (o *IdentitySourceDTO) GetId() int64

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

GetIdOk

func (o *IdentitySourceDTO) GetIdOk() (*int64, 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 *IdentitySourceDTO) SetId(v int64)

SetId sets Id field to given value.

HasId

func (o *IdentitySourceDTO) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *IdentitySourceDTO) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *IdentitySourceDTO) GetNameOk() (*string, bool)

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

SetName

func (o *IdentitySourceDTO) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *IdentitySourceDTO) HasName() bool

HasName returns a boolean if a field has been set.

GetX

func (o *IdentitySourceDTO) GetX() float64

GetX returns the X field if non-nil, zero value otherwise.

GetXOk

func (o *IdentitySourceDTO) GetXOk() (*float64, bool)

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

SetX

func (o *IdentitySourceDTO) SetX(v float64)

SetX sets X field to given value.

HasX

func (o *IdentitySourceDTO) HasX() bool

HasX returns a boolean if a field has been set.

GetY

func (o *IdentitySourceDTO) GetY() float64

GetY returns the Y field if non-nil, zero value otherwise.

GetYOk

func (o *IdentitySourceDTO) GetYOk() (*float64, bool)

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

SetY

func (o *IdentitySourceDTO) SetY(v float64)

SetY sets Y field to given value.

HasY

func (o *IdentitySourceDTO) HasY() bool

HasY returns a boolean if a field has been set.

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