/** * 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 { ImportUser } from '../models/ImportUser'; import { HttpFile } from '../http/http'; export class ImportUsersRequest { /** * List of users needs to be imported. */ 'users': Array; /** * The default password to assign to users if they do not have a password assigned in ThoughtSpot. */ 'default_password'?: string; /** * If true, the API performs a test operation and returns user IDs whose data will be edited after the import. */ 'dry_run'?: boolean | null; /** * If set to true, removes the users that are not specified in the API request. */ 'delete_unspecified_users'?: boolean | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "users", "baseName": "users", "type": "Array", "format": "" }, { "name": "default_password", "baseName": "default_password", "type": "string", "format": "" }, { "name": "dry_run", "baseName": "dry_run", "type": "boolean", "format": "" }, { "name": "delete_unspecified_users", "baseName": "delete_unspecified_users", "type": "boolean", "format": "" } ]; static getAttributeTypeMap() { return ImportUsersRequest.attributeTypeMap; } public constructor() { } }