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
func (*Customer) ContextValidate ¶ added in v0.26.0
ContextValidate validate this customer based on the context it is used
func (*Customer) MarshalBinary ¶
MarshalBinary interface implementation
func (*Customer) UnmarshalBinary ¶
UnmarshalBinary interface implementation
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
func (*Error) ContextValidate ¶ added in v0.26.0
ContextValidate validates this error based on context it is used
func (*Error) MarshalBinary ¶
MarshalBinary interface implementation
func (*Error) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type Principal ¶
type Principal string
Principal principal
swagger:model principal
func (Principal) ContextValidate ¶ added in v0.26.0
ContextValidate validates this principal based on context it is used
type SocialID ¶
type SocialID struct { // ssn // Required: true // Min Length: 11 Ssn *string `json:"ssn"` }
SocialID social id
swagger:model social_id
func (*SocialID) ContextValidate ¶ added in v0.26.0
ContextValidate validates this social id based on context it is used
func (*SocialID) MarshalBinary ¶
MarshalBinary interface implementation
func (*SocialID) UnmarshalBinary ¶
UnmarshalBinary interface implementation