UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.05 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 Assets1 */ export interface Assets1 { /** * * @type {Array<string>} * @memberof Assets1 */ images?: Array<string> | null; /** * * @type {Array<string>} * @memberof Assets1 */ videos?: Array<string> | null; } /** * Check if a given object implements the Assets1 interface. */ export declare function instanceOfAssets1(value: object): value is Assets1; export declare function Assets1FromJSON(json: any): Assets1; export declare function Assets1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Assets1; export declare function Assets1ToJSON(json: any): Assets1; export declare function Assets1ToJSONTyped(value?: Assets1 | null, ignoreDiscriminator?: boolean): any;