UNPKG

fastcomments-sdk

Version:

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

84 lines 2.5 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 GetGlobalEventLog200Response */ export interface GetGlobalEventLog200Response { /** * * @type {Array<EventLogEntry>} * @memberof GetGlobalEventLog200Response */ events: Array<EventLogEntry>; /** * * @type {APIStatus} * @memberof GetGlobalEventLog200Response */ status: APIStatus; /** * * @type {string} * @memberof GetGlobalEventLog200Response */ reason: string; /** * * @type {string} * @memberof GetGlobalEventLog200Response */ code: string; /** * * @type {string} * @memberof GetGlobalEventLog200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetGlobalEventLog200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetGlobalEventLog200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetGlobalEventLog200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetGlobalEventLog200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetGlobalEventLog200Response interface. */ export declare function instanceOfGetGlobalEventLog200Response(value: object): value is GetGlobalEventLog200Response; export declare function GetGlobalEventLog200ResponseFromJSON(json: any): GetGlobalEventLog200Response; export declare function GetGlobalEventLog200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetGlobalEventLog200Response; export declare function GetGlobalEventLog200ResponseToJSON(json: any): GetGlobalEventLog200Response; export declare function GetGlobalEventLog200ResponseToJSONTyped(value?: GetGlobalEventLog200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetGlobalEventLog200Response.d.ts.map