Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.25 KB

PublicTeam.md

File metadata and controls

93 lines (50 loc) · 2.25 KB

PublicTeam

Properties

Name Type Description Notes
Name string
Id string
Primary bool

Methods

NewPublicTeam

func NewPublicTeam(name string, id string, primary bool, ) *PublicTeam

NewPublicTeam instantiates a new PublicTeam 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

NewPublicTeamWithDefaults

func NewPublicTeamWithDefaults() *PublicTeam

NewPublicTeamWithDefaults instantiates a new PublicTeam 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

GetName

func (o *PublicTeam) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetId

func (o *PublicTeam) GetId() string

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

GetIdOk

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

SetId sets Id field to given value.

GetPrimary

func (o *PublicTeam) GetPrimary() bool

GetPrimary returns the Primary field if non-nil, zero value otherwise.

GetPrimaryOk

func (o *PublicTeam) GetPrimaryOk() (*bool, bool)

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

SetPrimary

func (o *PublicTeam) SetPrimary(v bool)

SetPrimary sets Primary field to given value.

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