UNPKG

fastcomments-sdk

Version:

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

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