User
User object
User
User object
type UserObject = {
object: "user"; // string literal
id: string; // uuid
email: string | null;
username: string | null;
details: {
type: string | null; // one of "individual", "company"
firstName: string | null;
lastName: string | null;
phoneNumber: string | null;
dialCode: string | null;
address: string | null;
addressLine2: string | null;
postalCode: string | null;
city: string | null;
state: string | null;
countryCode: string | null; // ISO 3166-1 alpha-2 country code
companyName: string | null;
taxId: string | null;
taxNumber: string | null;
};
internalId: string | null;
};