export enum PolicyholderIDType { ID = 'id', Passport = 'passport', Cellphone = 'cellphone', Custom = 'custom', Email = 'email', } export interface PolicyholderIdentification { type?: PolicyholderIDType; number?: string; country: string; }