- package http_model
- type RefuseWithdrawRequest struct {
- InvoiceId string `json:"withdraw_id"`
- Reason string `json:"reason"`
- }
- func NewRefuseWithdrawRequest() *RefuseWithdrawRequest {
- return new(RefuseWithdrawRequest)
- }
- func NewRefuseWithdrawResponse() *CommonResponse {
- return new(CommonResponse)
- }
|