UNPKG

fastcomments-sdk

Version:

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

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