UNPKG

fastcomments-sdk

Version:

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

84 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 { APIComment } from './APIComment'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetComments200Response */ export interface GetComments200Response { /** * * @type {APIStatus} * @memberof GetComments200Response */ status: APIStatus; /** * * @type {Array<APIComment>} * @memberof GetComments200Response */ comments: Array<APIComment>; /** * * @type {string} * @memberof GetComments200Response */ reason: string; /** * * @type {string} * @memberof GetComments200Response */ code: string; /** * * @type {string} * @memberof GetComments200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetComments200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetComments200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetComments200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetComments200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetComments200Response interface. */ export declare function instanceOfGetComments200Response(value: object): value is GetComments200Response; export declare function GetComments200ResponseFromJSON(json: any): GetComments200Response; export declare function GetComments200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetComments200Response; export declare function GetComments200ResponseToJSON(json: any): GetComments200Response; export declare function GetComments200ResponseToJSONTyped(value?: GetComments200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetComments200Response.d.ts.map