| Name | Type | Description | Notes |
|---|---|---|---|
| CustomRoleKeys | Pointer to []string | List of custom role keys the team will access | [optional] |
| Description | Pointer to string | A description of the team | [optional] |
| Key | string | The team key | |
| MemberIDs | Pointer to []string | A list of member IDs who belong to the team | [optional] |
| Name | string | A human-friendly name for the team | |
| PermissionGrants | Pointer to []PermissionGrantInput | A list of permission grants. Permission grants allow access to a specific action, without having to create or update a custom role. | [optional] |
| RoleAttributes | Pointer to map[string][]string | [optional] |
func NewTeamPostInput(key string, name string, ) *TeamPostInput
NewTeamPostInput instantiates a new TeamPostInput 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
func NewTeamPostInputWithDefaults() *TeamPostInput
NewTeamPostInputWithDefaults instantiates a new TeamPostInput 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
func (o *TeamPostInput) GetCustomRoleKeys() []string
GetCustomRoleKeys returns the CustomRoleKeys field if non-nil, zero value otherwise.
func (o *TeamPostInput) GetCustomRoleKeysOk() (*[]string, bool)
GetCustomRoleKeysOk returns a tuple with the CustomRoleKeys field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TeamPostInput) SetCustomRoleKeys(v []string)
SetCustomRoleKeys sets CustomRoleKeys field to given value.
func (o *TeamPostInput) HasCustomRoleKeys() bool
HasCustomRoleKeys returns a boolean if a field has been set.
func (o *TeamPostInput) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *TeamPostInput) 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.
func (o *TeamPostInput) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *TeamPostInput) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *TeamPostInput) GetKey() string
GetKey returns the Key field if non-nil, zero value otherwise.
func (o *TeamPostInput) GetKeyOk() (*string, bool)
GetKeyOk returns a tuple with the Key field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TeamPostInput) SetKey(v string)
SetKey sets Key field to given value.
func (o *TeamPostInput) GetMemberIDs() []string
GetMemberIDs returns the MemberIDs field if non-nil, zero value otherwise.
func (o *TeamPostInput) GetMemberIDsOk() (*[]string, bool)
GetMemberIDsOk returns a tuple with the MemberIDs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TeamPostInput) SetMemberIDs(v []string)
SetMemberIDs sets MemberIDs field to given value.
func (o *TeamPostInput) HasMemberIDs() bool
HasMemberIDs returns a boolean if a field has been set.
func (o *TeamPostInput) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *TeamPostInput) 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.
func (o *TeamPostInput) SetName(v string)
SetName sets Name field to given value.
func (o *TeamPostInput) GetPermissionGrants() []PermissionGrantInput
GetPermissionGrants returns the PermissionGrants field if non-nil, zero value otherwise.
func (o *TeamPostInput) GetPermissionGrantsOk() (*[]PermissionGrantInput, bool)
GetPermissionGrantsOk returns a tuple with the PermissionGrants field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TeamPostInput) SetPermissionGrants(v []PermissionGrantInput)
SetPermissionGrants sets PermissionGrants field to given value.
func (o *TeamPostInput) HasPermissionGrants() bool
HasPermissionGrants returns a boolean if a field has been set.
func (o *TeamPostInput) GetRoleAttributes() map[string][]string
GetRoleAttributes returns the RoleAttributes field if non-nil, zero value otherwise.
func (o *TeamPostInput) GetRoleAttributesOk() (*map[string][]string, bool)
GetRoleAttributesOk returns a tuple with the RoleAttributes field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TeamPostInput) SetRoleAttributes(v map[string][]string)
SetRoleAttributes sets RoleAttributes field to given value.
func (o *TeamPostInput) HasRoleAttributes() bool
HasRoleAttributes returns a boolean if a field has been set.