UNPKG

fastcomments-sdk

Version:

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

77 lines 2.15 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 UnLockCommentResponse */ export interface UnLockCommentResponse { /** * * @type {APIStatus} * @memberof UnLockCommentResponse */ status: APIStatus; /** * * @type {string} * @memberof UnLockCommentResponse */ reason: string; /** * * @type {string} * @memberof UnLockCommentResponse */ code: string; /** * * @type {string} * @memberof UnLockCommentResponse */ secondaryCode?: string; /** * * @type {number} * @memberof UnLockCommentResponse */ bannedUntil?: number; /** * * @type {number} * @memberof UnLockCommentResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof UnLockCommentResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof UnLockCommentResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the UnLockCommentResponse interface. */ export declare function instanceOfUnLockCommentResponse(value: object): value is UnLockCommentResponse; export declare function UnLockCommentResponseFromJSON(json: any): UnLockCommentResponse; export declare function UnLockCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnLockCommentResponse; export declare function UnLockCommentResponseToJSON(json: any): UnLockCommentResponse; export declare function UnLockCommentResponseToJSONTyped(value?: UnLockCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UnLockCommentResponse.d.ts.map