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