UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.09 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. */ /** * * @export * @interface HitShareItem */ export interface HitShareItem { /** * * @type {string} * @memberof HitShareItem */ domain: string; /** * * @type {number} * @memberof HitShareItem */ hitShare: number; } /** * Check if a given object implements the HitShareItem interface. */ export declare function instanceOfHitShareItem(value: object): value is HitShareItem; export declare function HitShareItemFromJSON(json: any): HitShareItem; export declare function HitShareItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): HitShareItem; export declare function HitShareItemToJSON(json: any): HitShareItem; export declare function HitShareItemToJSONTyped(value?: HitShareItem | null, ignoreDiscriminator?: boolean): any;