Skip to content

Latest commit

 

History

History
135 lines (72 loc) · 3.19 KB

NestedSite.md

File metadata and controls

135 lines (72 loc) · 3.19 KB

NestedSite

Properties

Name Type Description Notes
Id int32 [readonly]
Url string [readonly]
Display string [readonly]
Name string Full name of the site
Slug string

Methods

NewNestedSite

func NewNestedSite(id int32, url string, display string, name string, slug string, ) *NestedSite

NewNestedSite instantiates a new NestedSite 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

NewNestedSiteWithDefaults

func NewNestedSiteWithDefaults() *NestedSite

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

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

GetIdOk

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

SetId sets Id field to given value.

GetUrl

func (o *NestedSite) GetUrl() string

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

GetUrlOk

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

SetUrl sets Url field to given value.

GetDisplay

func (o *NestedSite) GetDisplay() string

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

GetDisplayOk

func (o *NestedSite) 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 *NestedSite) SetDisplay(v string)

SetDisplay sets Display field to given value.

GetName

func (o *NestedSite) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetSlug

func (o *NestedSite) GetSlug() string

GetSlug returns the Slug field if non-nil, zero value otherwise.

GetSlugOk

func (o *NestedSite) GetSlugOk() (*string, bool)

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

SetSlug

func (o *NestedSite) SetSlug(v string)

SetSlug sets Slug field to given value.

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