UNPKG

fastcomments-sdk

Version:

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

108 lines 2.9 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 GetOnlineUsers200Response */ export interface GetOnlineUsers200Response { /** * * @type {string} * @memberof GetOnlineUsers200Response */ nextAfterUserId: string | null; /** * * @type {string} * @memberof GetOnlineUsers200Response */ nextAfterName: string | null; /** * * @type {number} * @memberof GetOnlineUsers200Response */ totalCount: number; /** * * @type {number} * @memberof GetOnlineUsers200Response */ anonCount: number; /** * * @type {Array<PageUserEntry>} * @memberof GetOnlineUsers200Response */ users: Array<PageUserEntry>; /** * * @type {APIStatus} * @memberof GetOnlineUsers200Response */ status: APIStatus; /** * * @type {string} * @memberof GetOnlineUsers200Response */ reason: string; /** * * @type {string} * @memberof GetOnlineUsers200Response */ code: string; /** * * @type {string} * @memberof GetOnlineUsers200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetOnlineUsers200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetOnlineUsers200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetOnlineUsers200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetOnlineUsers200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetOnlineUsers200Response interface. */ export declare function instanceOfGetOnlineUsers200Response(value: object): value is GetOnlineUsers200Response; export declare function GetOnlineUsers200ResponseFromJSON(json: any): GetOnlineUsers200Response; export declare function GetOnlineUsers200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetOnlineUsers200Response; export declare function GetOnlineUsers200ResponseToJSON(json: any): GetOnlineUsers200Response; export declare function GetOnlineUsers200ResponseToJSONTyped(value?: GetOnlineUsers200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetOnlineUsers200Response.d.ts.map