/** * DuckyAPI * A customer facing api for WildDuck * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { DnsTxt } from './dnsTxt'; export interface DkimKey { /** * Unique id of the DKIM key */ id: string; /** * The domain this DKIM key applies to */ domain: string; /** * DKIM selector */ selector: string; /** * Unique id of the DKIM key */ fingerprint: string; /** * Public key in DNS format (no prefix/suffix, single line) */ publicKey: string; dnsTxt: DnsTxt; /** * Datestring of the time the DKIM key was created */ created: string; }