/** * Whispir Platform API * Whispir Platform API for cross channel and multi channel communications. Documentation on each endpoint is available at https://developers.whispir.com. * * The version of the OpenAPI document: 1.0.0 * Contact: support@whispir.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; import { Workspace } from './workspace'; /** * List of workspaces */ export class GetWorkspaces200Response { /** * List of workspaces */ 'workspaces': Array; /** * Provides the total number of records fetched. This attribute may return \"No records found\" when there are no callbacks available. */ 'status': string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "workspaces", "baseName": "workspaces", "type": "Array" }, { "name": "status", "baseName": "status", "type": "string" } ]; static getAttributeTypeMap() { return GetWorkspaces200Response.attributeTypeMap; } }