Skip to content

Latest commit

 

History

History
103 lines (56 loc) · 2.93 KB

ApiTeamResponseView.md

File metadata and controls

103 lines (56 loc) · 2.93 KB

ApiTeamResponseView

Properties

Name Type Description Notes
Id Pointer to string Unique 24-hexadecimal digit string that identifies this team. [optional] [readonly]
Links []Link List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. [readonly]
Name Pointer to string Human-readable label that identifies the team. [optional]

Methods

NewApiTeamResponseView

func NewApiTeamResponseView(links []Link, ) *ApiTeamResponseView

NewApiTeamResponseView instantiates a new ApiTeamResponseView 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

NewApiTeamResponseViewWithDefaults

func NewApiTeamResponseViewWithDefaults() *ApiTeamResponseView

NewApiTeamResponseViewWithDefaults instantiates a new ApiTeamResponseView 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 *ApiTeamResponseView) GetId() string

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

GetIdOk

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

SetId sets Id field to given value.

HasId

func (o *ApiTeamResponseView) HasId() bool

HasId returns a boolean if a field has been set.

GetLinks

func (o *ApiTeamResponseView) GetLinks() []Link

GetLinks returns the Links field if non-nil, zero value otherwise.

GetLinksOk

func (o *ApiTeamResponseView) GetLinksOk() (*[]Link, bool)

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

SetLinks

func (o *ApiTeamResponseView) SetLinks(v []Link)

SetLinks sets Links field to given value.

GetName

func (o *ApiTeamResponseView) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

HasName

func (o *ApiTeamResponseView) HasName() bool

HasName returns a boolean if a field has been set.

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