36 lines
656 B
Go
36 lines
656 B
Go
package response
|
|
|
|
import (
|
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability591/domain"
|
|
)
|
|
|
|
type AlibabaAelophyOrderDesensitizephoneGetResponse struct {
|
|
|
|
/*
|
|
System request id
|
|
*/
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
/*
|
|
System body
|
|
*/
|
|
Body string
|
|
|
|
/*
|
|
调用是否成功
|
|
*/
|
|
ApiSuccess bool `json:"api_success,omitempty" `
|
|
/*
|
|
错误码
|
|
*/
|
|
ApiErrCode string `json:"api_err_code,omitempty" `
|
|
/*
|
|
错误信息
|
|
*/
|
|
ApiErrMsg string `json:"api_err_msg,omitempty" `
|
|
/*
|
|
订单隐私号信息
|
|
*/
|
|
Model domain.AlibabaAelophyOrderDesensitizephoneGetOrderDesensitizePhoneResult `json:"model,omitempty" `
|
|
}
|