flexbase-client
Version:
Flexbase api client
23 lines (22 loc) • 387 B
TypeScript
export interface Relationship {
data: {
id: string;
type: string;
};
}
export interface Address {
city: string;
state: string;
street: string;
street2?: string;
country: string;
postalCode: string;
}
export interface FullName {
first: string;
last: string;
}
export interface Phone {
countryCode: string;
number: string;
}