蛋蛋星球-制度模式
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

50 行
1.8 KiB

  1. package alipay
  2. type CommerceTransportNfccardSendRsp struct {
  3. Response *CommerceTransportNfccardSend `json:"alipay_commerce_transport_nfccard_send_response"`
  4. AlipayCertSn string `json:"alipay_cert_sn,omitempty"`
  5. SignData string `json:"-"`
  6. Sign string `json:"sign"`
  7. }
  8. type CommerceAirCallcenterTradeApplyRsp struct {
  9. Response *CommerceAirCallcenterTradeApply `json:"alipay_commerce_air_callcenter_trade_apply_response"`
  10. AlipayCertSn string `json:"alipay_cert_sn,omitempty"`
  11. SignData string `json:"-"`
  12. Sign string `json:"sign"`
  13. }
  14. type CommerceBenefitApplyRsp struct {
  15. Response *CommerceBenefitApply `json:"alipay_commerce_operation_gamemarketing_benefit_apply_response"`
  16. AlipayCertSn string `json:"alipay_cert_sn,omitempty"`
  17. SignData string `json:"-"`
  18. Sign string `json:"sign"`
  19. }
  20. type CommerceBenefitVerifyRsp struct {
  21. Response *CommerceBenefitVerify `json:"alipay_commerce_operation_gamemarketing_benefit_verify_response"`
  22. AlipayCertSn string `json:"alipay_cert_sn,omitempty"`
  23. SignData string `json:"-"`
  24. Sign string `json:"sign"`
  25. }
  26. // =========================================================分割=========================================================
  27. type CommerceTransportNfccardSend struct {
  28. ErrorResponse
  29. }
  30. type CommerceAirCallcenterTradeApply struct {
  31. ErrorResponse
  32. }
  33. type CommerceBenefitApply struct {
  34. ErrorResponse
  35. ApplyVoucherCodeList string `json:"apply_voucher_code_list,omitempty"`
  36. }
  37. type CommerceBenefitVerify struct {
  38. ErrorResponse
  39. VoucherVerifyStatus bool `json:"voucher_verify_status,omitempty"`
  40. }