refusewithdrawrequest.go 308 B

1234567891011121314
  1. package http_model
  2. type RefuseWithdrawRequest struct {
  3. InvoiceId string `json:"withdraw_id"`
  4. Reason string `json:"reason"`
  5. }
  6. func NewRefuseWithdrawRequest() *RefuseWithdrawRequest {
  7. return new(RefuseWithdrawRequest)
  8. }
  9. func NewRefuseWithdrawResponse() *CommonResponse {
  10. return new(CommonResponse)
  11. }