Voucher.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. // Copyright 2018 JDCLOUD.COM
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. //
  15. // NOTE: This class is auto generated by the jdcloud code generator program.
  16. package models
  17. type Voucher struct {
  18. /* (Optional) */
  19. CashingFee float64 `json:"cashingFee"`
  20. /* (Optional) */
  21. CreateTime string `json:"createTime"`
  22. /* (Optional) */
  23. EndTime string `json:"endTime"`
  24. /* (Optional) */
  25. ErpOrderId string `json:"erpOrderId"`
  26. /* (Optional) */
  27. Fee float64 `json:"fee"`
  28. /* (Optional) */
  29. Id int `json:"id"`
  30. /* (Optional) */
  31. PaymentChannel int `json:"paymentChannel"`
  32. /* (Optional) */
  33. PaymentNumber string `json:"paymentNumber"`
  34. /* (Optional) */
  35. Pin string `json:"pin"`
  36. /* (Optional) */
  37. RechargeType int `json:"rechargeType"`
  38. /* (Optional) */
  39. Status int `json:"status"`
  40. /* (Optional) */
  41. UpdateTime string `json:"updateTime"`
  42. /* (Optional) */
  43. UsableFee float64 `json:"usableFee"`
  44. /* (Optional) */
  45. UserAllFee float64 `json:"userAllFee"`
  46. }