getwithdrawrequest.go 510 B

123456789101112131415161718192021
  1. package http_model
  2. type GetWithDrawInfoRequest struct {
  3. Withdrawid string `json:"withdraw_id"`
  4. }
  5. type WithDrawInfoResponse struct {
  6. WithdrawAmount float64 `json:"withdraw_amount"`
  7. Operator string `json:"operator"`
  8. AmountPayable float64 `json:"amount_payable"`
  9. }
  10. func NewGetWithDrawInfoRequest() *GetWithDrawInfoRequest {
  11. return new(GetWithDrawInfoRequest)
  12. }
  13. func NewGetWithDrawInfoResponse() *CommonResponse {
  14. resp := new(CommonResponse)
  15. resp.Data = new(WithDrawInfoResponse)
  16. return resp
  17. }