import * as Enums from '../enums/index'; /** * Represents an invitation for a customer to use CertExpress to self-report their own certificates. This invitation is delivered by your choice of method, or you can present a hyperlink to the user directly in your connector. Your customer will be redirected to https://app.certexpress.com/ where they can follow a step-by-step guide to enter information about their exemption certificates. The certificates entered will be recorded and automatically linked to their customer record. * @export * @class CreateCertExpressInvitationModel */ export declare class CreateCertExpressInvitationModel { /** * @type {string} * @memberof CreateCertExpressInvitationModel */ recipient?: string | undefined; /** * @type {string} * @memberof CreateCertExpressInvitationModel */ coverLetterTitle?: string | undefined; /** * @type {number[]} * @memberof CreateCertExpressInvitationModel */ exposureZones?: number[] | undefined; /** * @type {number[]} * @memberof CreateCertExpressInvitationModel */ exemptReasons?: number[] | undefined; /** * @type {Enums.CertificateRequestDeliveryMethod} * @memberof CreateCertExpressInvitationModel */ deliveryMethod?: Enums.CertificateRequestDeliveryMethod | undefined; }