Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Customer ¶
type Customer struct { // agent associated with this customer AgentID int32 `json:"agentId,omitempty"` // internal identifier of a customer // Required: true // Read Only: true CustomerID int64 `json:"customerId"` // fips code // Required: true // Min Length: 1 FipsCode *string `json:"fipsCode"` // name // Required: true // Min Length: 1 Name *string `json:"name"` // Lookup identifier to find a customer in the system // Required: true // Min Length: 11 Ssn *string `json:"ssn"` // surname // Required: true // Min Length: 1 Surname *string `json:"surname"` }
Customer customer swagger:model customer
type Error ¶
type Error struct { // code Code int64 `json:"code,omitempty"` // fields Fields string `json:"fields,omitempty"` // message // Required: true Message *string `json:"message"` }
Error error swagger:model error
Click to show internal directories.
Click to hide internal directories.