UNPKG

fastcomments-sdk

Version:

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

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