UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
43 lines (36 loc) 970 B
/* tslint:disable */ /* eslint-disable */ /** * 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. */ import { mapValues } from '../runtime'; /** * 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 function instanceOfReplyTo(value: object): boolean { return true; } export function ReplyToFromJSON(json: any): ReplyTo { return ReplyToFromJSONTyped(json, false); } export function ReplyToFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReplyTo { return json; } export function ReplyToToJSON(value?: ReplyTo | null): any { return value; }