fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
70 lines • 2.34 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 { QuestionDatum } from './QuestionDatum';
/**
*
* @export
* @interface QuestionResultAggregationOverall
*/
export interface QuestionResultAggregationOverall {
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: QuestionDatum; }}
* @memberof QuestionResultAggregationOverall
*/
dataByDateBucket?: {
[key: string]: QuestionDatum;
};
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: QuestionDatum; }}
* @memberof QuestionResultAggregationOverall
*/
dataByUrlId?: {
[key: string]: QuestionDatum;
};
/**
*
* @type {{ [key: string]: number; }}
* @memberof QuestionResultAggregationOverall
*/
countsByValue?: {
[key: string]: number;
};
/**
*
* @type {number}
* @memberof QuestionResultAggregationOverall
*/
total: number;
/**
*
* @type {number}
* @memberof QuestionResultAggregationOverall
*/
average?: number;
/**
*
* @type {Date}
* @memberof QuestionResultAggregationOverall
*/
createdAt: Date;
}
/**
* Check if a given object implements the QuestionResultAggregationOverall interface.
*/
export declare function instanceOfQuestionResultAggregationOverall(value: object): value is QuestionResultAggregationOverall;
export declare function QuestionResultAggregationOverallFromJSON(json: any): QuestionResultAggregationOverall;
export declare function QuestionResultAggregationOverallFromJSONTyped(json: any, ignoreDiscriminator: boolean): QuestionResultAggregationOverall;
export declare function QuestionResultAggregationOverallToJSON(json: any): QuestionResultAggregationOverall;
export declare function QuestionResultAggregationOverallToJSONTyped(value?: QuestionResultAggregationOverall | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=QuestionResultAggregationOverall.d.ts.map