UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.04 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 Assets */ export interface Assets { /** * * @type {Array<string>} * @memberof Assets */ images?: Array<string> | null; /** * * @type {Array<string>} * @memberof Assets */ videos?: Array<string> | null; } /** * Check if a given object implements the Assets interface. */ export declare function instanceOfAssets(value: object): value is Assets; export declare function AssetsFromJSON(json: any): Assets; export declare function AssetsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Assets; export declare function AssetsToJSON(json: any): Assets; export declare function AssetsToJSONTyped(value?: Assets | null, ignoreDiscriminator?: boolean): any;