UNPKG

fastcomments-sdk

Version:

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

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