fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
52 lines • 1.58 kB
TypeScript
/**
* 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 { APIStatus } from './APIStatus';
/**
*
* @export
* @interface AggregationAPIError
*/
export interface AggregationAPIError {
/**
*
* @type {APIStatus}
* @memberof AggregationAPIError
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof AggregationAPIError
*/
reason: string;
/**
*
* @type {string}
* @memberof AggregationAPIError
*/
code: string;
/**
*
* @type {Array<string>}
* @memberof AggregationAPIError
*/
validResourceNames?: Array<string>;
}
/**
* Check if a given object implements the AggregationAPIError interface.
*/
export declare function instanceOfAggregationAPIError(value: object): value is AggregationAPIError;
export declare function AggregationAPIErrorFromJSON(json: any): AggregationAPIError;
export declare function AggregationAPIErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregationAPIError;
export declare function AggregationAPIErrorToJSON(json: any): AggregationAPIError;
export declare function AggregationAPIErrorToJSONTyped(value?: AggregationAPIError | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AggregationAPIError.d.ts.map