Kaynağa Gözat

CLOUDAUTH SDK Auto Released By gongpei.gp,Version:1.34.2

Signed-off-by: yixiong.jxy <yixiong.jxy@alibaba-inc.com>
yixiong.jxy 7 yıl önce
ebeveyn
işleme
dbe4eb834d

+ 3 - 0
ChangeLog.txt

@@ -1,3 +1,6 @@
+2018-10-26 Version: 1.34.2
+1, Return AuditConclusions in SubmitMaterials API.
+
 2018-10-25 Version: 1.34.1
 1, Add apis for trademark domains.
 

+ 1 - 1
services/cloudauth/struct_data.go

@@ -37,7 +37,7 @@ type Data struct {
 	ImgHeight            int          `json:"ImgHeight" xml:"ImgHeight"`
 	ConfidenceThresholds string       `json:"ConfidenceThresholds" xml:"ConfidenceThresholds"`
 	StsToken             StsToken     `json:"StsToken" xml:"StsToken"`
-	VerifyToken          VerifyToken  `json:"VerifyToken" xml:"VerifyToken"`
 	VerifyStatus         VerifyStatus `json:"VerifyStatus" xml:"VerifyStatus"`
+	VerifyToken          VerifyToken  `json:"VerifyToken" xml:"VerifyToken"`
 	FaceInfos            FaceInfos    `json:"FaceInfos" xml:"FaceInfos"`
 }

+ 4 - 3
services/cloudauth/struct_verify_status.go

@@ -17,7 +17,8 @@ package cloudauth
 
 // VerifyStatus is a nested struct in cloudauth response
 type VerifyStatus struct {
-	StatusCode      int     `json:"StatusCode" xml:"StatusCode"`
-	TrustedScore    float64 `json:"TrustedScore" xml:"TrustedScore"`
-	SimilarityScore float64 `json:"SimilarityScore" xml:"SimilarityScore"`
+	StatusCode       int     `json:"StatusCode" xml:"StatusCode"`
+	TrustedScore     float64 `json:"TrustedScore" xml:"TrustedScore"`
+	SimilarityScore  float64 `json:"SimilarityScore" xml:"SimilarityScore"`
+	AuditConclusions string  `json:"AuditConclusions" xml:"AuditConclusions"`
 }