@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
47 lines (39 loc) • 1.12 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* 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.
*/
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): value is ReplyTo {
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(json: any): ReplyTo {
return ReplyToToJSONTyped(json, false);
}
export function ReplyToToJSONTyped(value?: ReplyTo | null, ignoreDiscriminator: boolean = false): any {
return value;
}