fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
89 lines • 2.4 kB
TypeScript
/**
* 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 FlagComment200Response
*/
export interface FlagComment200Response {
/**
*
* @type {number}
* @memberof FlagComment200Response
*/
statusCode?: number;
/**
*
* @type {APIStatus}
* @memberof FlagComment200Response
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof FlagComment200Response
*/
code: string;
/**
*
* @type {string}
* @memberof FlagComment200Response
*/
reason: string;
/**
*
* @type {boolean}
* @memberof FlagComment200Response
*/
wasUnapproved?: boolean;
/**
*
* @type {string}
* @memberof FlagComment200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof FlagComment200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof FlagComment200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof FlagComment200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof FlagComment200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the FlagComment200Response interface.
*/
export declare function instanceOfFlagComment200Response(value: object): value is FlagComment200Response;
export declare function FlagComment200ResponseFromJSON(json: any): FlagComment200Response;
export declare function FlagComment200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlagComment200Response;
export declare function FlagComment200ResponseToJSON(json: any): FlagComment200Response;
export declare function FlagComment200ResponseToJSONTyped(value?: FlagComment200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=FlagComment200Response.d.ts.map