Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Latest commit

 

History

History
108 lines (59 loc) · 2.5 KB

Team.md

File metadata and controls

108 lines (59 loc) · 2.5 KB

Team

Properties

Name Type Description Notes
Id string Team ID
Label string Team Label
Users Pointer to []User Users [optional]

Methods

NewTeam

func NewTeam(id string, label string, ) *Team

NewTeam instantiates a new Team 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

NewTeamWithDefaults

func NewTeamWithDefaults() *Team

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

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

GetIdOk

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

SetId sets Id field to given value.

GetLabel

func (o *Team) GetLabel() string

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

GetLabelOk

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

SetLabel sets Label field to given value.

GetUsers

func (o *Team) GetUsers() []User

GetUsers returns the Users field if non-nil, zero value otherwise.

GetUsersOk

func (o *Team) GetUsersOk() (*[]User, bool)

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

SetUsers

func (o *Team) SetUsers(v []User)

SetUsers sets Users field to given value.

HasUsers

func (o *Team) HasUsers() bool

HasUsers returns a boolean if a field has been set.

SetUsersNil

func (o *Team) SetUsersNil(b bool)

SetUsersNil sets the value for Users to be an explicit nil

UnsetUsers

func (o *Team) UnsetUsers()

UnsetUsers ensures that no value is present for Users, not even an explicit nil

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