UNPKG

fastcomments-sdk

Version:

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

58 lines 1.67 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 { APIStatus } from './APIStatus'; /** * * @export * @interface FlagCommentResponse */ export interface FlagCommentResponse { /** * * @type {number} * @memberof FlagCommentResponse */ statusCode?: number; /** * * @type {APIStatus} * @memberof FlagCommentResponse */ status: APIStatus; /** * * @type {string} * @memberof FlagCommentResponse */ code?: string; /** * * @type {string} * @memberof FlagCommentResponse */ reason?: string; /** * * @type {boolean} * @memberof FlagCommentResponse */ wasUnapproved?: boolean; } /** * Check if a given object implements the FlagCommentResponse interface. */ export declare function instanceOfFlagCommentResponse(value: object): value is FlagCommentResponse; export declare function FlagCommentResponseFromJSON(json: any): FlagCommentResponse; export declare function FlagCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlagCommentResponse; export declare function FlagCommentResponseToJSON(json: any): FlagCommentResponse; export declare function FlagCommentResponseToJSONTyped(value?: FlagCommentResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FlagCommentResponse.d.ts.map