/** * 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. */ /** * * @export * @interface LookupDkimDomainResults */ export interface LookupDkimDomainResults { /** * * @type {boolean} * @memberof LookupDkimDomainResults */ valid: boolean; /** * * @type {string} * @memberof LookupDkimDomainResults */ queriedName?: string; /** * * @type {string} * @memberof LookupDkimDomainResults */ selector?: string; /** * * @type {string} * @memberof LookupDkimDomainResults */ record?: string; /** * * @type {string} * @memberof LookupDkimDomainResults */ algorithm?: string; /** * * @type {number} * @memberof LookupDkimDomainResults */ keyLength?: number; /** * * @type {Array} * @memberof LookupDkimDomainResults */ checkedNames: Array; /** * * @type {Array} * @memberof LookupDkimDomainResults */ warnings: Array; /** * * @type {Array} * @memberof LookupDkimDomainResults */ errors: Array; } export declare function LookupDkimDomainResultsFromJSON(json: any): LookupDkimDomainResults; export declare function LookupDkimDomainResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): LookupDkimDomainResults; export declare function LookupDkimDomainResultsToJSON(value?: LookupDkimDomainResults | null): any;