Skip to content

Latest commit

 

History

History
145 lines (78 loc) · 3.38 KB

Cable.md

File metadata and controls

145 lines (78 loc) · 3.38 KB

Cable

Properties

Name Type Description Notes
Id int32 [readonly]
Url string [readonly]
Display string [readonly]
Label Pointer to string [optional]
Description Pointer to string [optional]

Methods

NewCable

func NewCable(id int32, url string, display string, ) *Cable

NewCable instantiates a new Cable 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

NewCableWithDefaults

func NewCableWithDefaults() *Cable

NewCableWithDefaults instantiates a new Cable 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 *Cable) GetId() int32

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

GetIdOk

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

SetId sets Id field to given value.

GetUrl

func (o *Cable) GetUrl() string

GetUrl returns the Url field if non-nil, zero value otherwise.

GetUrlOk

func (o *Cable) GetUrlOk() (*string, bool)

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

SetUrl

func (o *Cable) SetUrl(v string)

SetUrl sets Url field to given value.

GetDisplay

func (o *Cable) GetDisplay() string

GetDisplay returns the Display field if non-nil, zero value otherwise.

GetDisplayOk

func (o *Cable) GetDisplayOk() (*string, bool)

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

SetDisplay

func (o *Cable) SetDisplay(v string)

SetDisplay sets Display field to given value.

GetLabel

func (o *Cable) GetLabel() string

GetLabel returns the Label field if non-nil, zero value otherwise.

GetLabelOk

func (o *Cable) GetLabelOk() (*string, bool)

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

SetLabel

func (o *Cable) SetLabel(v string)

SetLabel sets Label field to given value.

HasLabel

func (o *Cable) HasLabel() bool

HasLabel returns a boolean if a field has been set.

GetDescription

func (o *Cable) GetDescription() string

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

GetDescriptionOk

func (o *Cable) 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 *Cable) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *Cable) HasDescription() bool

HasDescription returns a boolean if a field has been set.

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