/** * ThoughtSpot Public REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { HttpFile } from '../http/http'; export class GroupsImportListInput { /** * Unique display name of the group. */ 'display_name': string; /** * Unique ID or name of the group. */ 'group_identifier': string; /** * Unique ID of Liveboards that will be assigned as default Liveboards to the users in the group. */ 'default_liveboard_identifiers'?: Array | null; /** * Description of the group. */ 'description'?: string | null; /** * Privileges that will be assigned to the group. */ 'privileges'?: Array | null; /** * Unique ID or name of the sub-groups to add to the group. */ 'sub_group_identifiers'?: Array | null; /** * Type of the group. */ 'type'?: GroupsImportListInputTypeEnum | null; /** * Unique ID or name of the users to assign to the group. */ 'user_identifiers'?: Array | null; /** * Visibility of the group. The SHARABLE makes a group visible to other users and groups, and thus allows them to share objects. */ 'visibility'?: GroupsImportListInputVisibilityEnum | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "display_name", "baseName": "display_name", "type": "string", "format": "" }, { "name": "group_identifier", "baseName": "group_identifier", "type": "string", "format": "" }, { "name": "default_liveboard_identifiers", "baseName": "default_liveboard_identifiers", "type": "Array", "format": "" }, { "name": "description", "baseName": "description", "type": "string", "format": "" }, { "name": "privileges", "baseName": "privileges", "type": "Array", "format": "" }, { "name": "sub_group_identifiers", "baseName": "sub_group_identifiers", "type": "Array", "format": "" }, { "name": "type", "baseName": "type", "type": "GroupsImportListInputTypeEnum", "format": "" }, { "name": "user_identifiers", "baseName": "user_identifiers", "type": "Array", "format": "" }, { "name": "visibility", "baseName": "visibility", "type": "GroupsImportListInputVisibilityEnum", "format": "" } ]; static getAttributeTypeMap() { return GroupsImportListInput.attributeTypeMap; } public constructor() { } } export type GroupsImportListInputPrivilegesEnum = "ADMINISTRATION" | "AUTHORING" | "USERDATAUPLOADING" | "DATADOWNLOADING" | "USERMANAGEMENT" | "DATAMANAGEMENT" | "SHAREWITHALL" | "JOBSCHEDULING" | "A3ANALYSIS" | "EXPERIMENTALFEATUREPRIVILEGE" | "BYPASSRLS" | "RANALYSIS" | "DEVELOPER" | "USER_ADMINISTRATION" | "GROUP_ADMINISTRATION" | "SYNCMANAGEMENT" | "CAN_CREATE_CATALOG" | "DISABLE_PINBOARD_CREATION" | "LIVEBOARD_VERIFIER" | "PREVIEW_THOUGHTSPOT_SAGE" | "CAN_MANAGE_VERSION_CONTROL" | "THIRDPARTY_ANALYSIS" | "ALLOW_NON_EMBED_FULL_APP_ACCESS" | "CAN_ACCESS_ANALYST_STUDIO" | "CAN_MANAGE_ANALYST_STUDIO" | "CAN_MODIFY_FOLDERS" | "CAN_MANAGE_VARIABLES" | "CAN_VIEW_FOLDERS" | "PREVIEW_DOCUMENT_SEARCH" | "CAN_SETUP_VERSION_CONTROL" | "CAN_DOWNLOAD_VISUALS" | "CAN_DOWNLOAD_DETAILED_DATA" | "CAN_USE_SPOTTER" ; export type GroupsImportListInputTypeEnum = "LOCAL_GROUP" | "LDAP_GROUP" | "TEAM_GROUP" | "TENANT_GROUP" ; export type GroupsImportListInputVisibilityEnum = "SHARABLE" | "NON_SHARABLE" ;