UNPKG

fastcomments-sdk

Version:

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

108 lines 2.82 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 { CustomConfigParameters } from './CustomConfigParameters'; import type { PageUserEntry } from './PageUserEntry'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetOnlineUsersResponse */ export interface GetOnlineUsersResponse { /** * * @type {string} * @memberof GetOnlineUsersResponse */ nextAfterUserId: string | null; /** * * @type {string} * @memberof GetOnlineUsersResponse */ nextAfterName: string | null; /** * * @type {number} * @memberof GetOnlineUsersResponse */ totalCount: number; /** * * @type {number} * @memberof GetOnlineUsersResponse */ anonCount: number; /** * * @type {Array<PageUserEntry>} * @memberof GetOnlineUsersResponse */ users: Array<PageUserEntry>; /** * * @type {APIStatus} * @memberof GetOnlineUsersResponse */ status: APIStatus; /** * * @type {string} * @memberof GetOnlineUsersResponse */ reason: string; /** * * @type {string} * @memberof GetOnlineUsersResponse */ code: string; /** * * @type {string} * @memberof GetOnlineUsersResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetOnlineUsersResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetOnlineUsersResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetOnlineUsersResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetOnlineUsersResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetOnlineUsersResponse interface. */ export declare function instanceOfGetOnlineUsersResponse(value: object): value is GetOnlineUsersResponse; export declare function GetOnlineUsersResponseFromJSON(json: any): GetOnlineUsersResponse; export declare function GetOnlineUsersResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetOnlineUsersResponse; export declare function GetOnlineUsersResponseToJSON(json: any): GetOnlineUsersResponse; export declare function GetOnlineUsersResponseToJSONTyped(value?: GetOnlineUsersResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetOnlineUsersResponse.d.ts.map