UNPKG

fastcomments-sdk

Version:

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

84 lines 2.43 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 { EventLogEntry } from './EventLogEntry'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetGlobalEventLogResponse */ export interface GetGlobalEventLogResponse { /** * * @type {Array<EventLogEntry>} * @memberof GetGlobalEventLogResponse */ events: Array<EventLogEntry>; /** * * @type {APIStatus} * @memberof GetGlobalEventLogResponse */ status: APIStatus; /** * * @type {string} * @memberof GetGlobalEventLogResponse */ reason: string; /** * * @type {string} * @memberof GetGlobalEventLogResponse */ code: string; /** * * @type {string} * @memberof GetGlobalEventLogResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetGlobalEventLogResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetGlobalEventLogResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetGlobalEventLogResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetGlobalEventLogResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetGlobalEventLogResponse interface. */ export declare function instanceOfGetGlobalEventLogResponse(value: object): value is GetGlobalEventLogResponse; export declare function GetGlobalEventLogResponseFromJSON(json: any): GetGlobalEventLogResponse; export declare function GetGlobalEventLogResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetGlobalEventLogResponse; export declare function GetGlobalEventLogResponseToJSON(json: any): GetGlobalEventLogResponse; export declare function GetGlobalEventLogResponseToJSONTyped(value?: GetGlobalEventLogResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetGlobalEventLogResponse.d.ts.map