ConfirmWithdrawalRequest.go 431 B

12345678910111213141516171819
  1. package http_model
  2. type ConfirmWithdrawalRequest struct {
  3. WithdrawId string `json:"withdraw_id"`
  4. }
  5. type ConfirmWithdrawalResponse struct {
  6. WithdrawId string `json:"withdraw_id"`
  7. }
  8. func NewConfirmWithdrawalRequest() *ConfirmWithdrawalRequest {
  9. return new(ConfirmWithdrawalRequest)
  10. }
  11. func NewConfirmWithdrawalResponse() *CommonResponse {
  12. resp := new(CommonResponse)
  13. resp.Data = new(ConfirmWithdrawalResponse)
  14. return resp
  15. }