> ## Documentation Index
> Fetch the complete documentation index at: https://docs.subotiz.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 业务对象

顾客（Customer）业务对象字段说明

| 属性名                 | 类型                 | 描述                                    |
| ------------------- | ------------------ | ------------------------------------- |
| customer\_id        | string             | 顾客 Id                                 |
| email               | string             | 顾客邮箱                                  |
| name                | string             | 顾客姓名                                  |
| type                | string             | 顾客类型<br />customer: 会员<br />guest: 游客 |
| create\_at          | string             | 顾客创建时间                                |
| payer\_id           | string             | 接入方顾客 ID                              |
| email\_subscription | int                | 是否订阅营销电子邮件通知<br />1：不订阅<br />2：订阅     |
| metadata            | map\[string]string | 一组可附加到对象上的键值对，允许您以结构化格式存储附加信息。        |
| address             | CustomerAddress    | 顾客地址                                  |

## CustomerAddress

| 属性名          | 类型     | 描述      |
| :----------- | :----- | :------ |
| line1        | string | 地址行1    |
| line2        | string | 地址行2    |
| city         | string | 城市      |
| province     | string | 省/州代码   |
| postal\_code | string | 邮政编码    |
| country      | string | 国家/地区代码 |
