UNPKG

fastcomments-sdk

Version:

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

77 lines 2.42 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 { APIStatus } from './APIStatus'; /** * * @export * @interface PostRestoreDeletedCommentResponse */ export interface PostRestoreDeletedCommentResponse { /** * * @type {APIStatus} * @memberof PostRestoreDeletedCommentResponse */ status: APIStatus; /** * * @type {string} * @memberof PostRestoreDeletedCommentResponse */ reason: string; /** * * @type {string} * @memberof PostRestoreDeletedCommentResponse */ code: string; /** * * @type {string} * @memberof PostRestoreDeletedCommentResponse */ secondaryCode?: string; /** * * @type {number} * @memberof PostRestoreDeletedCommentResponse */ bannedUntil?: number; /** * * @type {number} * @memberof PostRestoreDeletedCommentResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof PostRestoreDeletedCommentResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PostRestoreDeletedCommentResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PostRestoreDeletedCommentResponse interface. */ export declare function instanceOfPostRestoreDeletedCommentResponse(value: object): value is PostRestoreDeletedCommentResponse; export declare function PostRestoreDeletedCommentResponseFromJSON(json: any): PostRestoreDeletedCommentResponse; export declare function PostRestoreDeletedCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostRestoreDeletedCommentResponse; export declare function PostRestoreDeletedCommentResponseToJSON(json: any): PostRestoreDeletedCommentResponse; export declare function PostRestoreDeletedCommentResponseToJSONTyped(value?: PostRestoreDeletedCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostRestoreDeletedCommentResponse.d.ts.map