UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.12 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 EmailParams */ export interface EmailParams { /** * The email to send the alert to when it triggers * @type {string} * @memberof EmailParams */ to: string; /** * * @type {string} * @memberof EmailParams */ subject?: string | null; } /** * Check if a given object implements the EmailParams interface. */ export declare function instanceOfEmailParams(value: object): value is EmailParams; export declare function EmailParamsFromJSON(json: any): EmailParams; export declare function EmailParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailParams; export declare function EmailParamsToJSON(json: any): EmailParams; export declare function EmailParamsToJSONTyped(value?: EmailParams | null, ignoreDiscriminator?: boolean): any;