UNPKG

fastcomments-sdk

Version:

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

66 lines 2 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 { AggregationItem } from './AggregationItem'; import type { AggregationResponseStats } from './AggregationResponseStats'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface Aggregate200Response */ export interface Aggregate200Response { /** * * @type {APIStatus} * @memberof Aggregate200Response */ status: APIStatus; /** * * @type {Array<AggregationItem>} * @memberof Aggregate200Response */ data: Array<AggregationItem>; /** * * @type {AggregationResponseStats} * @memberof Aggregate200Response */ stats?: AggregationResponseStats; /** * * @type {string} * @memberof Aggregate200Response */ reason: string; /** * * @type {string} * @memberof Aggregate200Response */ code: string; /** * * @type {Array<string>} * @memberof Aggregate200Response */ validResourceNames?: Array<string>; } /** * Check if a given object implements the Aggregate200Response interface. */ export declare function instanceOfAggregate200Response(value: object): value is Aggregate200Response; export declare function Aggregate200ResponseFromJSON(json: any): Aggregate200Response; export declare function Aggregate200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): Aggregate200Response; export declare function Aggregate200ResponseToJSON(json: any): Aggregate200Response; export declare function Aggregate200ResponseToJSONTyped(value?: Aggregate200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Aggregate200Response.d.ts.map