Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 1.8 KB

File metadata and controls

77 lines (42 loc) · 1.8 KB

Link

Properties

Name Type Description Notes
Label Pointer to string [optional]
Url string

Methods

NewLink

func NewLink(url string, ) *Link

NewLink instantiates a new Link 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

NewLinkWithDefaults

func NewLinkWithDefaults() *Link

NewLinkWithDefaults instantiates a new Link 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

GetLabel

func (o *Link) GetLabel() string

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

GetLabelOk

func (o *Link) 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 *Link) SetLabel(v string)

SetLabel sets Label field to given value.

HasLabel

func (o *Link) HasLabel() bool

HasLabel returns a boolean if a field has been set.

GetUrl

func (o *Link) GetUrl() string

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

GetUrlOk

func (o *Link) 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 *Link) SetUrl(v string)

SetUrl sets Url field to given value.

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