From b191f2b8c05fd25c38cb1c6eb85b47a0293f4e3e Mon Sep 17 00:00:00 2001 From: Sebastian Friedel Date: Wed, 28 Feb 2018 15:21:05 +0100 Subject: [PATCH] Add missing Maiden, PersonalID, PersonalIDProvided fields to Owner --- account.go | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/account.go b/account.go index b578b4d5b2..4d1c0de59a 100644 --- a/account.go +++ b/account.go @@ -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"` + Maiden 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.