- package http_model
- type ConfirmWithdrawRequest struct {
- InvoiceId string `json:"invoice_id"`
- }
- func NewConfirmWithdrawRequest() *ConfirmWithdrawRequest {
- return new(ConfirmWithdrawRequest)
- }
- func NewConfirmWithdrawResponse() *CommonResponse {
- return new(CommonResponse)
- }
|