UNPKG

fastcomments-sdk

Version:

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

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