mailslurp-client
Version:
Official client for MailSlurp Email and SMS API. Create email addresses and phone numbers in Javascript without a mail server. Send and receive real emails in applications or tests.
78 lines (72 loc) • 2.22 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* MailSlurp API
* MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository
*
* The version of the OpenAPI document: 6.5.2
* Contact: contact@mailslurp.dev
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from '../runtime';
import {
EmailSignature,
EmailSignatureFromJSON,
EmailSignatureFromJSONTyped,
EmailSignatureToJSON,
} from './';
/**
* Result of attempting to parse an email signature
* @export
* @interface EmailSignatureParseResult
*/
export interface EmailSignatureParseResult {
/**
* True when a signature block was detected
* @type {boolean}
* @memberof EmailSignatureParseResult
*/
present: boolean;
/**
*
* @type {EmailSignature}
* @memberof EmailSignatureParseResult
*/
signature?: EmailSignature | null;
}
export function EmailSignatureParseResultFromJSON(
json: any
): EmailSignatureParseResult {
return EmailSignatureParseResultFromJSONTyped(json, false);
}
export function EmailSignatureParseResultFromJSONTyped(
json: any,
ignoreDiscriminator: boolean
): EmailSignatureParseResult {
if (json === undefined || json === null) {
return json;
}
return {
present: json['present'],
signature: !exists(json, 'signature')
? undefined
: EmailSignatureFromJSON(json['signature']),
};
}
export function EmailSignatureParseResultToJSON(
value?: EmailSignatureParseResult | null
): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
present: value.present,
signature: EmailSignatureToJSON(value.signature),
};
}