Properties
| Name | Type | Description |
|---|---|---|
| shipperType | object | |
| companyName | string | |
| trade | string | |
| cnpj | string | |
| companyContact | string | |
| telephoneArea | string | |
| telephone | string | |
| mobileArea | string | |
| mobile | string | |
| string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ShipperBranchResponse",
"title": "ShipperBranchResponse",
"type": "object",
"properties": {
"shipperType": {
"$ref": "#/components/schemas/ShipperTypeResponse"
},
"companyName": {
"type": "string"
},
"trade": {
"type": "string"
},
"cnpj": {
"type": "string"
},
"companyContact": {
"type": "string"
},
"telephoneArea": {
"type": "string"
},
"telephone": {
"type": "string"
},
"mobileArea": {
"type": "string"
},
"mobile": {
"type": "string"
},
"email": {
"type": "string"
}
}
}