fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
64 lines • 1.95 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 { AggregateTimeBucket } from './AggregateTimeBucket';
/**
*
* @export
* @interface BulkAggregateQuestionItem
*/
export interface BulkAggregateQuestionItem {
/**
*
* @type {string}
* @memberof BulkAggregateQuestionItem
*/
aggId: string;
/**
*
* @type {string}
* @memberof BulkAggregateQuestionItem
*/
questionId?: string;
/**
*
* @type {Array<string>}
* @memberof BulkAggregateQuestionItem
*/
questionIds?: Array<string>;
/**
*
* @type {string}
* @memberof BulkAggregateQuestionItem
*/
urlId?: string;
/**
*
* @type {AggregateTimeBucket}
* @memberof BulkAggregateQuestionItem
*/
timeBucket?: AggregateTimeBucket;
/**
*
* @type {Date}
* @memberof BulkAggregateQuestionItem
*/
startDate?: Date;
}
/**
* Check if a given object implements the BulkAggregateQuestionItem interface.
*/
export declare function instanceOfBulkAggregateQuestionItem(value: object): value is BulkAggregateQuestionItem;
export declare function BulkAggregateQuestionItemFromJSON(json: any): BulkAggregateQuestionItem;
export declare function BulkAggregateQuestionItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): BulkAggregateQuestionItem;
export declare function BulkAggregateQuestionItemToJSON(json: any): BulkAggregateQuestionItem;
export declare function BulkAggregateQuestionItemToJSONTyped(value?: BulkAggregateQuestionItem | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=BulkAggregateQuestionItem.d.ts.map