UNPKG

fastcomments-sdk

Version:

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

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