Skip to content

Commit

Permalink
Add missing MaidenName, PersonalID, PersonalIDProvided fields to Owner
Browse files Browse the repository at this point in the history
  • Loading branch information
sfriedel committed Feb 28, 2018
1 parent 47d9f44 commit fe48405
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions account.go
Original file line number Diff line number Diff line change
Expand Up @@ -342,11 +342,14 @@ type Gender string

// Owner is the structure for an account owner.
type Owner struct {
Address Address `json:"address" form:"address"`
DOB DOB `json:"dob" form:"dob"`
First string `json:"first_name" form:"first_name"`
Last string `json:"last_name" form:"last_name"`
Verification IdentityVerification `json:"verification" form:"verification"`
Address Address `json:"address" form:"address"`
DOB DOB `json:"dob" form:"dob"`
First string `json:"first_name" form:"first_name"`
Last string `json:"last_name" form:"last_name"`
MaidenName string `json:"maiden_name" form:"maiden_name"`
PersonalID string `json:"-" form:"personal_id_number"`
PersonalIDProvided bool `json:"personal_id_number_provided" form:"-"`
Verification IdentityVerification `json:"verification" form:"verification"`
}

// IdentityVerification is the structure for an account's verification.
Expand Down

0 comments on commit fe48405

Please sign in to comment.