confirmwithdrawrequest.go 278 B

12345678910111213
  1. package http_model
  2. type ConfirmWithdrawRequest struct {
  3. InvoiceId string `json:"invoice_id"`
  4. }
  5. func NewConfirmWithdrawRequest() *ConfirmWithdrawRequest {
  6. return new(ConfirmWithdrawRequest)
  7. }
  8. func NewConfirmWithdrawResponse() *CommonResponse {
  9. return new(CommonResponse)
  10. }