UNPKG

fastcomments-sdk

Version:

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

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