UNPKG

fastcomments-sdk

Version:

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

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