12345678910111213141516171819 |
- package http_model
- type ConfirmWithdrawalRequest struct {
- WithdrawId string `json:"withdraw_id"`
- }
- type ConfirmWithdrawalResponse struct {
- WithdrawId string `json:"withdraw_id"`
- }
- func NewConfirmWithdrawalRequest() *ConfirmWithdrawalRequest {
- return new(ConfirmWithdrawalRequest)
- }
- func NewConfirmWithdrawalResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(ConfirmWithdrawalResponse)
- return resp
- }
|