UNPKG

fastcomments-sdk

Version:

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

84 lines 2.24 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 { ModerationAPICommentLog } from './ModerationAPICommentLog'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetLogsResponse */ export interface GetLogsResponse { /** * * @type {Array<ModerationAPICommentLog>} * @memberof GetLogsResponse */ logs: Array<ModerationAPICommentLog>; /** * * @type {APIStatus} * @memberof GetLogsResponse */ status: APIStatus; /** * * @type {string} * @memberof GetLogsResponse */ reason: string; /** * * @type {string} * @memberof GetLogsResponse */ code: string; /** * * @type {string} * @memberof GetLogsResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetLogsResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetLogsResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetLogsResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetLogsResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetLogsResponse interface. */ export declare function instanceOfGetLogsResponse(value: object): value is GetLogsResponse; export declare function GetLogsResponseFromJSON(json: any): GetLogsResponse; export declare function GetLogsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetLogsResponse; export declare function GetLogsResponseToJSON(json: any): GetLogsResponse; export declare function GetLogsResponseToJSONTyped(value?: GetLogsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetLogsResponse.d.ts.map