UNPKG

fastcomments-sdk

Version:

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

84 lines 2.51 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 { ModerationAPIComment } from './ModerationAPIComment'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetModerationCommentResponse */ export interface GetModerationCommentResponse { /** * * @type {ModerationAPIComment} * @memberof GetModerationCommentResponse */ comment: ModerationAPIComment; /** * * @type {APIStatus} * @memberof GetModerationCommentResponse */ status: APIStatus; /** * * @type {string} * @memberof GetModerationCommentResponse */ reason: string; /** * * @type {string} * @memberof GetModerationCommentResponse */ code: string; /** * * @type {string} * @memberof GetModerationCommentResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetModerationCommentResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetModerationCommentResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetModerationCommentResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetModerationCommentResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetModerationCommentResponse interface. */ export declare function instanceOfGetModerationCommentResponse(value: object): value is GetModerationCommentResponse; export declare function GetModerationCommentResponseFromJSON(json: any): GetModerationCommentResponse; export declare function GetModerationCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetModerationCommentResponse; export declare function GetModerationCommentResponseToJSON(json: any): GetModerationCommentResponse; export declare function GetModerationCommentResponseToJSONTyped(value?: GetModerationCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetModerationCommentResponse.d.ts.map