fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
48 lines • 1.72 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';
/**
* The API response returns the aggregated data along with simple stats
* @export
* @interface AggregationResponse
*/
export interface AggregationResponse {
/**
*
* @type {APIStatus}
* @memberof AggregationResponse
*/
status: APIStatus;
/**
*
* @type {Array<AggregationItem>}
* @memberof AggregationResponse
*/
data: Array<AggregationItem>;
/**
*
* @type {AggregationResponseStats}
* @memberof AggregationResponse
*/
stats?: AggregationResponseStats;
}
/**
* Check if a given object implements the AggregationResponse interface.
*/
export declare function instanceOfAggregationResponse(value: object): value is AggregationResponse;
export declare function AggregationResponseFromJSON(json: any): AggregationResponse;
export declare function AggregationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregationResponse;
export declare function AggregationResponseToJSON(json: any): AggregationResponse;
export declare function AggregationResponseToJSONTyped(value?: AggregationResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AggregationResponse.d.ts.map