import { AddressEntry } from '../AddressEntry' import { PhoneNumberEntry } from '../PhoneNumberEntry' export class AccountOwner { email: string // 'user@example.com', name: string 'primary-address': AddressEntry 'primary-phone-number': PhoneNumberEntry 'contact-type': string // 'natural_person', 'date-of-birth': string // '2020-06-04', sex?: string // Enum: "male" "female" "other" 'tax-country': string // 'US', 'tax-id-number': string 'tax-state': string // 'AA' }