Customer.proto#
path Customer.proto
package com.example
This file has messages for describing a customer.
Messages#
Address#
Represents a mail address.
| Name | Type | Description |
|---|---|---|
address_line_1 | string | First address line. |
address_line_2 | string | Second address line. |
address_line_3 | string | Second address line. |
town | string | Address town. |
county | string | Address county, if applicable. |
country | string | Address country. |
Customer#
Represents a customer.
| Name | Type | Description |
|---|---|---|
id | int32 | Unique customer ID. |
first_name | string | Customer first name. |
last_name | string | Customer last name. |
details | string | Customer details. |
email_address | string | Customer e-mail address. |
phone_number | string | Customer phone numbers, primary first. |
mail_addresses | Address | Customer mail addresses, primary first. |