 Documentation
      ¶
      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) 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) MarshalBinary ¶
MarshalBinary interface implementation
func (*Error) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type SocialID ¶
type SocialID struct {
	// ssn
	// Required: true
	// Min Length: 11
	Ssn *string `json:"ssn"`
}
    SocialID social id swagger:model social_id
func (*SocialID) MarshalBinary ¶
MarshalBinary interface implementation
func (*SocialID) UnmarshalBinary ¶
UnmarshalBinary interface implementation
 Click to show internal directories. 
   Click to hide internal directories.