18 lines
540 B
Go
18 lines
540 B
Go
package kyc
|
|
|
|
type KycInfo struct {
|
|
Type string `json:"type"` // cnrid/passport
|
|
LegalName string `json:"legal_name"`
|
|
ResidentId string `json:"rsident_id"`
|
|
PassportInfo PassportInfo `json:"passport_info"`
|
|
}
|
|
|
|
type PassportInfo struct {
|
|
FirstName string `json:"first_name"`
|
|
LastName string `json:"last_name"`
|
|
DateOfExpire string `json:"date_of_expire"`
|
|
Nationality string `json:"nationality"`
|
|
DocumentType string `json:"document_type"`
|
|
DocumentNumber string `json:"document_number"`
|
|
}
|