UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
46 lines (45 loc) 1.32 kB
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.19.10 * 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 { Sentiment } from './Sentiment'; /** * * @export * @interface RedditPerspective */ export interface RedditPerspective { /** * * @type {Sentiment} * @memberof RedditPerspective */ sentiment: Sentiment; /** * * @type {boolean} * @memberof RedditPerspective */ relevant: boolean; /** * * @type {string} * @memberof RedditPerspective */ summary: string; } /** * Check if a given object implements the RedditPerspective interface. */ export declare function instanceOfRedditPerspective(value: object): value is RedditPerspective; export declare function RedditPerspectiveFromJSON(json: any): RedditPerspective; export declare function RedditPerspectiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): RedditPerspective; export declare function RedditPerspectiveToJSON(json: any): RedditPerspective; export declare function RedditPerspectiveToJSONTyped(value?: RedditPerspective | null, ignoreDiscriminator?: boolean): any;