fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
61 lines • 1.79 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.
*/
/**
*
* @export
* @interface AggregationValue
*/
export interface AggregationValue {
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: string; }}
* @memberof AggregationValue
*/
groups?: {
[key: string]: string;
};
/**
*
* @type {string}
* @memberof AggregationValue
*/
stringValue?: string;
/**
*
* @type {number}
* @memberof AggregationValue
*/
numericValue?: number;
/**
*
* @type {number}
* @memberof AggregationValue
*/
distinctCount?: number;
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: number; }}
* @memberof AggregationValue
*/
distinctCounts?: {
[key: string]: number;
};
}
/**
* Check if a given object implements the AggregationValue interface.
*/
export declare function instanceOfAggregationValue(value: object): value is AggregationValue;
export declare function AggregationValueFromJSON(json: any): AggregationValue;
export declare function AggregationValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregationValue;
export declare function AggregationValueToJSON(json: any): AggregationValue;
export declare function AggregationValueToJSONTyped(value?: AggregationValue | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AggregationValue.d.ts.map