UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
45 lines (44 loc) 1.32 kB
/** * AskNews API * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod) * * The version of the OpenAPI document: 0.24.22 * Contact: contact@emergentmethods.ai * * 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 IndexCountItem */ export interface IndexCountItem { /** * * @type {Date} * @memberof IndexCountItem */ start: Date; /** * * @type {Date} * @memberof IndexCountItem */ end: Date; /** * * @type {number} * @memberof IndexCountItem */ count: number; } /** * Check if a given object implements the IndexCountItem interface. */ export declare function instanceOfIndexCountItem(value: object): value is IndexCountItem; export declare function IndexCountItemFromJSON(json: any): IndexCountItem; export declare function IndexCountItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): IndexCountItem; export declare function IndexCountItemToJSON(json: any): IndexCountItem; export declare function IndexCountItemToJSONTyped(value?: IndexCountItem | null, ignoreDiscriminator?: boolean): any;