UNPKG

fastcomments-sdk

Version:

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

85 lines 2.62 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 { APIStatus } from './APIStatus'; /** * * @export * @interface GetUserPresenceStatusesResponse1 */ export interface GetUserPresenceStatusesResponse1 { /** * * @type {APIStatus} * @memberof GetUserPresenceStatusesResponse1 */ status: APIStatus; /** * Construct a type with a set of properties K of type T * @type {{ [key: string]: boolean; }} * @memberof GetUserPresenceStatusesResponse1 */ userIdsOnline: { [key: string]: boolean; }; /** * * @type {string} * @memberof GetUserPresenceStatusesResponse1 */ reason: string; /** * * @type {string} * @memberof GetUserPresenceStatusesResponse1 */ code: string; /** * * @type {string} * @memberof GetUserPresenceStatusesResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof GetUserPresenceStatusesResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof GetUserPresenceStatusesResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetUserPresenceStatusesResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetUserPresenceStatusesResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetUserPresenceStatusesResponse1 interface. */ export declare function instanceOfGetUserPresenceStatusesResponse1(value: object): value is GetUserPresenceStatusesResponse1; export declare function GetUserPresenceStatusesResponse1FromJSON(json: any): GetUserPresenceStatusesResponse1; export declare function GetUserPresenceStatusesResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserPresenceStatusesResponse1; export declare function GetUserPresenceStatusesResponse1ToJSON(json: any): GetUserPresenceStatusesResponse1; export declare function GetUserPresenceStatusesResponse1ToJSONTyped(value?: GetUserPresenceStatusesResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetUserPresenceStatusesResponse1.d.ts.map