UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
27 lines (26 loc) 909 B
/** * 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. */ /** * 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): value is ReplyTo; export declare function ReplyToFromJSON(json: any): ReplyTo; export declare function ReplyToFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReplyTo; export declare function ReplyToToJSON(json: any): ReplyTo; export declare function ReplyToToJSONTyped(value?: ReplyTo | null, ignoreDiscriminator?: boolean): any;