UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

65 lines 1.96 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.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 type { PageUserEntry } from './PageUserEntry'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface PageUsersOnlineResponse */ export interface PageUsersOnlineResponse { /** * * @type {string} * @memberof PageUsersOnlineResponse */ nextAfterUserId: string | null; /** * * @type {string} * @memberof PageUsersOnlineResponse */ nextAfterName: string | null; /** * * @type {number} * @memberof PageUsersOnlineResponse */ totalCount: number; /** * * @type {number} * @memberof PageUsersOnlineResponse */ anonCount: number; /** * * @type {Array<PageUserEntry>} * @memberof PageUsersOnlineResponse */ users: Array<PageUserEntry>; /** * * @type {APIStatus} * @memberof PageUsersOnlineResponse */ status: APIStatus; } /** * Check if a given object implements the PageUsersOnlineResponse interface. */ export declare function instanceOfPageUsersOnlineResponse(value: object): value is PageUsersOnlineResponse; export declare function PageUsersOnlineResponseFromJSON(json: any): PageUsersOnlineResponse; export declare function PageUsersOnlineResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageUsersOnlineResponse; export declare function PageUsersOnlineResponseToJSON(json: any): PageUsersOnlineResponse; export declare function PageUsersOnlineResponseToJSONTyped(value?: PageUsersOnlineResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PageUsersOnlineResponse.d.ts.map