package srequest // Customer captures payer/recipient identity details for downstream processing. type Customer struct { ID string `json:"id,omitempty"` FirstName string `json:"first_name,omitempty"` MiddleName string `json:"middle_name,omitempty"` LastName string `json:"last_name,omitempty"` IP string `json:"ip,omitempty"` Zip string `json:"zip,omitempty"` Country string `json:"country,omitempty"` State string `json:"state,omitempty"` City string `json:"city,omitempty"` Address string `json:"address,omitempty"` }