fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
66 lines • 1.94 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 { AggregationItem } from './AggregationItem';
import type { AggregationResponseStats } from './AggregationResponseStats';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface AggregateResponse
*/
export interface AggregateResponse {
/**
*
* @type {APIStatus}
* @memberof AggregateResponse
*/
status: APIStatus;
/**
*
* @type {Array<AggregationItem>}
* @memberof AggregateResponse
*/
data: Array<AggregationItem>;
/**
*
* @type {AggregationResponseStats}
* @memberof AggregateResponse
*/
stats?: AggregationResponseStats;
/**
*
* @type {string}
* @memberof AggregateResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof AggregateResponse
*/
code: string;
/**
*
* @type {Array<string>}
* @memberof AggregateResponse
*/
validResourceNames?: Array<string>;
}
/**
* Check if a given object implements the AggregateResponse interface.
*/
export declare function instanceOfAggregateResponse(value: object): value is AggregateResponse;
export declare function AggregateResponseFromJSON(json: any): AggregateResponse;
export declare function AggregateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregateResponse;
export declare function AggregateResponseToJSON(json: any): AggregateResponse;
export declare function AggregateResponseToJSONTyped(value?: AggregateResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AggregateResponse.d.ts.map