14 lines
316 B
Go
14 lines
316 B
Go
package kyc
|
|
|
|
type KycInfo struct {
|
|
Type string `json:"type"` // Chinese / Foreigner
|
|
LegalName string `json:"legal_name"`
|
|
ResidentId string `json:"rsident_id"`
|
|
}
|
|
|
|
type MD5Ali struct {
|
|
ParamType string `json:"param_type"`
|
|
IdentifyNum string `json:"identify_num"`
|
|
UserName string `json:"user_name"`
|
|
}
|