export HubSpotContact

interface HubSpotContact {
    archived?: boolean;
    createdAt?: string;
    id?: null | string;
    properties?: HubSpotContactProperties;
    updatedAt?: string;
}

Properties

archived?: boolean
createdAt?: string
id?: null | string
updatedAt?: string