/** * 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. */ /** * Parsed signature block detected in an email * @export * @interface EmailSignature */ export interface EmailSignature { /** * Extracted signature text * @type {string} * @memberof EmailSignature */ body: string; /** * Source used for extraction. Examples: RAW_TEXT_PART, RAW_HTML_SELECTOR * @type {string} * @memberof EmailSignature */ source: string; /** * Matched marker or selector that identified the signature * @type {string} * @memberof EmailSignature */ marker?: string | null; /** * Detection strategy used. Examples: DELIMITER, MOBILE_FOOTER, VALEDICTION * @type {string} * @memberof EmailSignature */ detectionType: string; } export declare function EmailSignatureFromJSON(json: any): EmailSignature; export declare function EmailSignatureFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailSignature; export declare function EmailSignatureToJSON(value?: EmailSignature | null): any;