Name | Type | Description | Notes |
---|---|---|---|
Name | string | The name of the remote group. | |
Description | Pointer to string | A description of the remote group. | [optional] |
GroupType | GroupTypeEnum | ||
AppId | string | The ID of the app for the group. | |
RemoteGroupId | Pointer to string | The ID of the group on the remote system. Include only for items linked to remote systems. See this guide for details on how to specify this field. | [optional] |
Metadata | Pointer to string | JSON metadata about the remote group. Include only for items linked to remote systems. See this guide for details on how to specify this field. The required format is dependent on group_type and should have the following schema: <style type="text/css"> code {max-height:300px !important} </style> ```json { "$schema": "http://json-schema.org/draft-04/schema#\", "title": "Group Metadata", "properties": { "ad_group": { "properties": { "object_guid": { "type": "string" } }, "required": ["object_guid"], "additionalProperties": false, "type": "object", "title": "Active Directory Group" }, "duo_group": { "properties": { "group_id": { "type": "string" } }, "required": ["group_id"], "additionalProperties": false, "type": "object", "title": "Duo Group" }, "git_hub_team": { "properties": { "org_name": { "type": "string" }, "team_slug": { "type": "string" } }, "required": ["org_name", "team_slug"], "additionalProperties": false, "type": "object", "title": "GitHub Team" }, "google_groups_group": { "properties": { "group_id": { "type": "string" } }, "required": ["group_id"], "additionalProperties": false, "type": "object", "title": "Google Groups Group" }, "ldap_group": { "properties": { "group_uid": { "type": "string" } }, "required": ["group_uid"], "additionalProperties": false, "type": "object", "title": "LDAP Group" }, "okta_directory_group": { "properties": { "group_id": { "type": "string" } }, "required": ["group_id"], "additionalProperties": false, "type": "object", "title": "Okta Directory Group" } }, "additionalProperties": false, "minProperties": 1, "maxProperties": 1, "type": "object" } ``` | [optional] |
func NewCreateGroupInfo(name string, groupType GroupTypeEnum, appId string, ) *CreateGroupInfo
NewCreateGroupInfo instantiates a new CreateGroupInfo 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 NewCreateGroupInfoWithDefaults() *CreateGroupInfo
NewCreateGroupInfoWithDefaults instantiates a new CreateGroupInfo 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 *CreateGroupInfo) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *CreateGroupInfo) 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 *CreateGroupInfo) SetName(v string)
SetName sets Name field to given value.
func (o *CreateGroupInfo) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *CreateGroupInfo) 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 *CreateGroupInfo) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *CreateGroupInfo) HasDescription() bool
HasDescription returns a boolean if a field has been set.
func (o *CreateGroupInfo) GetGroupType() GroupTypeEnum
GetGroupType returns the GroupType field if non-nil, zero value otherwise.
func (o *CreateGroupInfo) GetGroupTypeOk() (*GroupTypeEnum, bool)
GetGroupTypeOk returns a tuple with the GroupType field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateGroupInfo) SetGroupType(v GroupTypeEnum)
SetGroupType sets GroupType field to given value.
func (o *CreateGroupInfo) GetAppId() string
GetAppId returns the AppId field if non-nil, zero value otherwise.
func (o *CreateGroupInfo) GetAppIdOk() (*string, bool)
GetAppIdOk returns a tuple with the AppId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateGroupInfo) SetAppId(v string)
SetAppId sets AppId field to given value.
func (o *CreateGroupInfo) GetRemoteGroupId() string
GetRemoteGroupId returns the RemoteGroupId field if non-nil, zero value otherwise.
func (o *CreateGroupInfo) GetRemoteGroupIdOk() (*string, bool)
GetRemoteGroupIdOk returns a tuple with the RemoteGroupId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateGroupInfo) SetRemoteGroupId(v string)
SetRemoteGroupId sets RemoteGroupId field to given value.
func (o *CreateGroupInfo) HasRemoteGroupId() bool
HasRemoteGroupId returns a boolean if a field has been set.
func (o *CreateGroupInfo) GetMetadata() string
GetMetadata returns the Metadata field if non-nil, zero value otherwise.
func (o *CreateGroupInfo) GetMetadataOk() (*string, bool)
GetMetadataOk returns a tuple with the Metadata field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *CreateGroupInfo) SetMetadata(v string)
SetMetadata sets Metadata field to given value.
func (o *CreateGroupInfo) HasMetadata() bool
HasMetadata returns a boolean if a field has been set.