UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
40 lines (39 loc) 1.23 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.21.1 * 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. */ import type { HitShareItem } from './HitShareItem'; /** * * @export * @interface HitShareResponse */ export interface HitShareResponse { /** * * @type {Array<HitShareItem>} * @memberof HitShareResponse */ data: Array<HitShareItem>; /** * * @type {number} * @memberof HitShareResponse */ totalShare: number; } /** * Check if a given object implements the HitShareResponse interface. */ export declare function instanceOfHitShareResponse(value: object): value is HitShareResponse; export declare function HitShareResponseFromJSON(json: any): HitShareResponse; export declare function HitShareResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): HitShareResponse; export declare function HitShareResponseToJSON(json: any): HitShareResponse; export declare function HitShareResponseToJSONTyped(value?: HitShareResponse | null, ignoreDiscriminator?: boolean): any;