UNPKG

fastcomments-sdk

Version:

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

84 lines 2.55 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 GetCommentChildren200Response */ export interface GetCommentChildren200Response { /** * * @type {Array<ModerationAPIComment>} * @memberof GetCommentChildren200Response */ comments: Array<ModerationAPIComment>; /** * * @type {APIStatus} * @memberof GetCommentChildren200Response */ status: APIStatus; /** * * @type {string} * @memberof GetCommentChildren200Response */ reason: string; /** * * @type {string} * @memberof GetCommentChildren200Response */ code: string; /** * * @type {string} * @memberof GetCommentChildren200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetCommentChildren200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetCommentChildren200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetCommentChildren200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetCommentChildren200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetCommentChildren200Response interface. */ export declare function instanceOfGetCommentChildren200Response(value: object): value is GetCommentChildren200Response; export declare function GetCommentChildren200ResponseFromJSON(json: any): GetCommentChildren200Response; export declare function GetCommentChildren200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCommentChildren200Response; export declare function GetCommentChildren200ResponseToJSON(json: any): GetCommentChildren200Response; export declare function GetCommentChildren200ResponseToJSONTyped(value?: GetCommentChildren200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCommentChildren200Response.d.ts.map