8 lines
171 B
Go
8 lines
171 B
Go
package kyc
|
|
|
|
type KycInfo struct {
|
|
Type string `json:"type"` // Chinese / Foreigner
|
|
LegalName string `json:"legal_name"`
|
|
ResidentId string `json:"rsident_id"`
|
|
}
|