UNPKG

fastcomments-sdk

Version:

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

95 lines 2.6 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 GetApiExportStatusResponse */ export interface GetApiExportStatusResponse { /** * * @type {APIStatus} * @memberof GetApiExportStatusResponse */ status: APIStatus; /** * * @type {string} * @memberof GetApiExportStatusResponse */ jobStatus: string; /** * * @type {number} * @memberof GetApiExportStatusResponse */ recordCount: number; /** * * @type {string} * @memberof GetApiExportStatusResponse */ downloadUrl?: string; /** * * @type {string} * @memberof GetApiExportStatusResponse */ reason: string; /** * * @type {string} * @memberof GetApiExportStatusResponse */ code: string; /** * * @type {string} * @memberof GetApiExportStatusResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetApiExportStatusResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetApiExportStatusResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetApiExportStatusResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetApiExportStatusResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetApiExportStatusResponse interface. */ export declare function instanceOfGetApiExportStatusResponse(value: object): value is GetApiExportStatusResponse; export declare function GetApiExportStatusResponseFromJSON(json: any): GetApiExportStatusResponse; export declare function GetApiExportStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApiExportStatusResponse; export declare function GetApiExportStatusResponseToJSON(json: any): GetApiExportStatusResponse; export declare function GetApiExportStatusResponseToJSONTyped(value?: GetApiExportStatusResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetApiExportStatusResponse.d.ts.map