UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.14 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. */ /** * * @export * @interface DisplayImageUrl */ export interface DisplayImageUrl { /** * * @type {string} * @memberof DisplayImageUrl */ sourceId: string; /** * * @type {string} * @memberof DisplayImageUrl */ imageUrl: string; } /** * Check if a given object implements the DisplayImageUrl interface. */ export declare function instanceOfDisplayImageUrl(value: object): value is DisplayImageUrl; export declare function DisplayImageUrlFromJSON(json: any): DisplayImageUrl; export declare function DisplayImageUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): DisplayImageUrl; export declare function DisplayImageUrlToJSON(json: any): DisplayImageUrl; export declare function DisplayImageUrlToJSONTyped(value?: DisplayImageUrl | null, ignoreDiscriminator?: boolean): any;