UNPKG

fastcomments-sdk

Version:

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

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