Skip to content

Latest commit

 

History

History
155 lines (84 loc) · 4.05 KB

OrganizationTeam.md

File metadata and controls

155 lines (84 loc) · 4.05 KB

OrganizationTeam

Properties

Name Type Description Notes
Description Pointer to string [optional]
Name string
Slug Pointer to string [optional]
SlugPerm Pointer to string [optional] [readonly]
Visibility Pointer to string [optional] [default to "Visible"]

Methods

NewOrganizationTeam

func NewOrganizationTeam(name string, ) *OrganizationTeam

NewOrganizationTeam instantiates a new OrganizationTeam 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

NewOrganizationTeamWithDefaults

func NewOrganizationTeamWithDefaults() *OrganizationTeam

NewOrganizationTeamWithDefaults instantiates a new OrganizationTeam 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

GetDescription

func (o *OrganizationTeam) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *OrganizationTeam) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *OrganizationTeam) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *OrganizationTeam) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetName

func (o *OrganizationTeam) GetName() string

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

GetNameOk

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

SetName sets Name field to given value.

GetSlug

func (o *OrganizationTeam) GetSlug() string

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

GetSlugOk

func (o *OrganizationTeam) 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 *OrganizationTeam) SetSlug(v string)

SetSlug sets Slug field to given value.

HasSlug

func (o *OrganizationTeam) HasSlug() bool

HasSlug returns a boolean if a field has been set.

GetSlugPerm

func (o *OrganizationTeam) GetSlugPerm() string

GetSlugPerm returns the SlugPerm field if non-nil, zero value otherwise.

GetSlugPermOk

func (o *OrganizationTeam) GetSlugPermOk() (*string, bool)

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

SetSlugPerm

func (o *OrganizationTeam) SetSlugPerm(v string)

SetSlugPerm sets SlugPerm field to given value.

HasSlugPerm

func (o *OrganizationTeam) HasSlugPerm() bool

HasSlugPerm returns a boolean if a field has been set.

GetVisibility

func (o *OrganizationTeam) GetVisibility() string

GetVisibility returns the Visibility field if non-nil, zero value otherwise.

GetVisibilityOk

func (o *OrganizationTeam) GetVisibilityOk() (*string, bool)

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

SetVisibility

func (o *OrganizationTeam) SetVisibility(v string)

SetVisibility sets Visibility field to given value.

HasVisibility

func (o *OrganizationTeam) HasVisibility() bool

HasVisibility returns a boolean if a field has been set.

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