/** * 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 { GroupInfo } from '../models/GroupInfo'; import { HttpFile } from '../http/http'; /** * Org-level non-embed access configuration. */ export class OrgNonEmbedAccess { /** * Block full application access for non-embedded usage. */ 'block_full_app_access'?: boolean | null; /** * Groups that have non-embed full app access. */ 'groups_with_access'?: Array | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "block_full_app_access", "baseName": "block_full_app_access", "type": "boolean", "format": "" }, { "name": "groups_with_access", "baseName": "groups_with_access", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return OrgNonEmbedAccess.attributeTypeMap; } public constructor() { } }