UNPKG

fastcomments-sdk

Version:

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

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