Customer Models

AddressModel {
  "uuid": "UUID (Primary Key)",
  "customer_uuid": "UUID (Primary Key) Primary key of customer",
  "type": "<'shipping','billing'>",
  "is_primary": "Boolean",
  "country_code": "Varchar(2) (ISO 3166 country code Ex.: 'GB')",
  "address_1": "Text",
  "address_2": "Text",
  "city": "Text",
  "state": "Text",
  "tax_rate": "Integer",
  "zip_code": "Varchar(55)",
  "created_at": "DateTime",
  "updated_at": "DateTime",
  "phone": "Varchar(55)",
  "email": "Varchar(55)"
}