UNPKG

fastcomments-sdk

Version:

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

84 lines 2.58 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 GetModerationComment200Response */ export interface GetModerationComment200Response { /** * * @type {ModerationAPIComment} * @memberof GetModerationComment200Response */ comment: ModerationAPIComment; /** * * @type {APIStatus} * @memberof GetModerationComment200Response */ status: APIStatus; /** * * @type {string} * @memberof GetModerationComment200Response */ reason: string; /** * * @type {string} * @memberof GetModerationComment200Response */ code: string; /** * * @type {string} * @memberof GetModerationComment200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetModerationComment200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetModerationComment200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetModerationComment200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetModerationComment200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetModerationComment200Response interface. */ export declare function instanceOfGetModerationComment200Response(value: object): value is GetModerationComment200Response; export declare function GetModerationComment200ResponseFromJSON(json: any): GetModerationComment200Response; export declare function GetModerationComment200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetModerationComment200Response; export declare function GetModerationComment200ResponseToJSON(json: any): GetModerationComment200Response; export declare function GetModerationComment200ResponseToJSONTyped(value?: GetModerationComment200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetModerationComment200Response.d.ts.map