UNPKG

fastcomments-sdk

Version:

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

89 lines 2.38 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 UnFlagCommentResponse */ export interface UnFlagCommentResponse { /** * * @type {number} * @memberof UnFlagCommentResponse */ statusCode?: number; /** * * @type {APIStatus} * @memberof UnFlagCommentResponse */ status: APIStatus; /** * * @type {string} * @memberof UnFlagCommentResponse */ code: string; /** * * @type {string} * @memberof UnFlagCommentResponse */ reason: string; /** * * @type {boolean} * @memberof UnFlagCommentResponse */ wasUnapproved?: boolean; /** * * @type {string} * @memberof UnFlagCommentResponse */ secondaryCode?: string; /** * * @type {number} * @memberof UnFlagCommentResponse */ bannedUntil?: number; /** * * @type {number} * @memberof UnFlagCommentResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof UnFlagCommentResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof UnFlagCommentResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the UnFlagCommentResponse interface. */ export declare function instanceOfUnFlagCommentResponse(value: object): value is UnFlagCommentResponse; export declare function UnFlagCommentResponseFromJSON(json: any): UnFlagCommentResponse; export declare function UnFlagCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnFlagCommentResponse; export declare function UnFlagCommentResponseToJSON(json: any): UnFlagCommentResponse; export declare function UnFlagCommentResponseToJSONTyped(value?: UnFlagCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UnFlagCommentResponse.d.ts.map