-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthority.go
22 lines (20 loc) · 943 Bytes
/
authority.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package qcmobile
// AuthorityDetails -
type AuthorityDetails struct {
CarrierAuthority CarrierAuthority `json:"carrierAuthority"`
}
// CarrierAuthority -
type CarrierAuthority struct {
ApplicantID int `json:"applicantID"`
Authority string `json:"authority"`
AuthorizedForBroker string `json:"authorizedForBroker"`
AuthorizedForHouseholdGoods string `json:"authorizedForHouseholdGoods"`
AuthorizedForPassenger string `json:"authorizedForPassenger"`
AuthorizedForProperty string `json:"authorizedForProperty"`
BrokerAuthorityStatus string `json:"brokerAuthorityStatus"`
CommonAuthorityStatus string `json:"commonAuthorityStatus"`
ContractAuthorityStatus string `json:"contractAuthorityStatus"`
DocketNumber int `json:"docketNumber"`
DOTNumber int `json:"dotNumber"`
Prefix string `json:"prefix"`
}