/** * 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 { GroupsImportListInput } from '../models/GroupsImportListInput'; import { HttpFile } from '../http/http'; export class ImportUserGroupsRequest { /** * Details of groups which are to be imported */ 'groups'?: Array; /** * If set to true, removes groups that are not specified in the API request. */ 'delete_unspecified_groups'?: boolean | null; /** * If true, the API performs a test operation and returns user IDs whose data will be edited after the import. */ 'dry_run'?: boolean | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "groups", "baseName": "groups", "type": "Array", "format": "" }, { "name": "delete_unspecified_groups", "baseName": "delete_unspecified_groups", "type": "boolean", "format": "" }, { "name": "dry_run", "baseName": "dry_run", "type": "boolean", "format": "" } ]; static getAttributeTypeMap() { return ImportUserGroupsRequest.attributeTypeMap; } public constructor() { } }