UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
26 lines (25 loc) 804 B
/** * AskNews API * AskNews API * * The version of the OpenAPI document: 0.18.6 * 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. */ /** * The reply to email address. For multiple addresses, send as a list of strings * @export * @interface ReplyTo */ export interface ReplyTo { } /** * Check if a given object implements the ReplyTo interface. */ export declare function instanceOfReplyTo(value: object): boolean; export declare function ReplyToFromJSON(json: any): ReplyTo; export declare function ReplyToFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReplyTo; export declare function ReplyToToJSON(value?: ReplyTo | null): any;