UNPKG

fastcomments-sdk

Version:

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

83 lines 2.33 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 PostApiExport200Response */ export interface PostApiExport200Response { /** * * @type {APIStatus} * @memberof PostApiExport200Response */ status: APIStatus; /** * * @type {string} * @memberof PostApiExport200Response */ batchJobId: string; /** * * @type {string} * @memberof PostApiExport200Response */ reason: string; /** * * @type {string} * @memberof PostApiExport200Response */ code: string; /** * * @type {string} * @memberof PostApiExport200Response */ secondaryCode?: string; /** * * @type {number} * @memberof PostApiExport200Response */ bannedUntil?: number; /** * * @type {number} * @memberof PostApiExport200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof PostApiExport200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PostApiExport200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PostApiExport200Response interface. */ export declare function instanceOfPostApiExport200Response(value: object): value is PostApiExport200Response; export declare function PostApiExport200ResponseFromJSON(json: any): PostApiExport200Response; export declare function PostApiExport200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostApiExport200Response; export declare function PostApiExport200ResponseToJSON(json: any): PostApiExport200Response; export declare function PostApiExport200ResponseToJSONTyped(value?: PostApiExport200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PostApiExport200Response.d.ts.map