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 }