Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 4.43 KB

ResourceDTO.md

File metadata and controls

186 lines (101 loc) · 4.43 KB

ResourceDTO

Properties

Name Type Description Notes
DisplayName Pointer to string [optional]
ElementId Pointer to string [optional]
Id Pointer to int64 [optional]
Name Pointer to string [optional]
Uri Pointer to string [optional]
Value Pointer to string [optional]

Methods

NewResourceDTO

func NewResourceDTO() *ResourceDTO

NewResourceDTO instantiates a new ResourceDTO 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

NewResourceDTOWithDefaults

func NewResourceDTOWithDefaults() *ResourceDTO

NewResourceDTOWithDefaults instantiates a new ResourceDTO 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

GetDisplayName

func (o *ResourceDTO) GetDisplayName() string

GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.

GetDisplayNameOk

func (o *ResourceDTO) GetDisplayNameOk() (*string, bool)

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

SetDisplayName

func (o *ResourceDTO) SetDisplayName(v string)

SetDisplayName sets DisplayName field to given value.

HasDisplayName

func (o *ResourceDTO) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

GetElementId

func (o *ResourceDTO) GetElementId() string

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

GetElementIdOk

func (o *ResourceDTO) 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 *ResourceDTO) SetElementId(v string)

SetElementId sets ElementId field to given value.

HasElementId

func (o *ResourceDTO) HasElementId() bool

HasElementId returns a boolean if a field has been set.

GetId

func (o *ResourceDTO) GetId() int64

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

GetIdOk

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

SetId sets Id field to given value.

HasId

func (o *ResourceDTO) HasId() bool

HasId returns a boolean if a field has been set.

GetName

func (o *ResourceDTO) GetName() string

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

GetNameOk

func (o *ResourceDTO) 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 *ResourceDTO) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *ResourceDTO) HasName() bool

HasName returns a boolean if a field has been set.

GetUri

func (o *ResourceDTO) GetUri() string

GetUri returns the Uri field if non-nil, zero value otherwise.

GetUriOk

func (o *ResourceDTO) GetUriOk() (*string, bool)

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

SetUri

func (o *ResourceDTO) SetUri(v string)

SetUri sets Uri field to given value.

HasUri

func (o *ResourceDTO) HasUri() bool

HasUri returns a boolean if a field has been set.

GetValue

func (o *ResourceDTO) GetValue() string

GetValue returns the Value field if non-nil, zero value otherwise.

GetValueOk

func (o *ResourceDTO) GetValueOk() (*string, bool)

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

SetValue

func (o *ResourceDTO) SetValue(v string)

SetValue sets Value field to given value.

HasValue

func (o *ResourceDTO) HasValue() bool

HasValue returns a boolean if a field has been set.

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