UNPKG

fastcomments-sdk

Version:

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

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