ConfirmWithdrawalRequest.go 304 B

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