/** * 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 SearchOrgsRequest { /** * ID or name of the Org */ 'org_identifier'?: string; /** * Description of the Org */ 'description'?: string; /** * Visibility of the Org */ 'visibility'?: SearchOrgsRequestVisibilityEnum; /** * Status of the Org */ 'status'?: SearchOrgsRequestStatusEnum; /** * GUIDs or names of the users for which you want to retrieve the Orgs data */ 'user_identifiers'?: Array; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "org_identifier", "baseName": "org_identifier", "type": "string", "format": "" }, { "name": "description", "baseName": "description", "type": "string", "format": "" }, { "name": "visibility", "baseName": "visibility", "type": "SearchOrgsRequestVisibilityEnum", "format": "" }, { "name": "status", "baseName": "status", "type": "SearchOrgsRequestStatusEnum", "format": "" }, { "name": "user_identifiers", "baseName": "user_identifiers", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return SearchOrgsRequest.attributeTypeMap; } public constructor() { } } export type SearchOrgsRequestVisibilityEnum = "SHOW" | "HIDDEN" ; export type SearchOrgsRequestStatusEnum = "ACTIVE" | "IN_ACTIVE" ;