@medusajs/types
Version:
Medusa Types definition
16 lines • 458 B
TypeScript
export type AddressDTO = {
id?: string;
address_1: string;
address_2?: string | null;
company?: string | null;
country_code: string;
city?: string | null;
phone?: string | null;
postal_code?: string | null;
province?: string | null;
metadata?: Record<string, unknown> | null;
created_at?: string | Date;
updated_at?: string | Date;
deleted_at?: string | Date | null;
};
//# sourceMappingURL=common.d.ts.map