/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.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 { Invite } from './Invite'; /** * * @export * @interface InvitesResponse */ export interface InvitesResponse { /** * Total number of invites matching the query * @type {number} * @memberof InvitesResponse */ count?: number; /** * List of invite objects * @type {Array} * @memberof InvitesResponse */ invites?: Array; } export declare function InvitesResponseFromJSON(json: any): InvitesResponse; export declare function InvitesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvitesResponse; export declare function InvitesResponseToJSON(value?: InvitesResponse | null): any;