getwithdrawvaluerequest.go 381 B

123456789101112131415161718
  1. package http_model
  2. type GetWithdrawValueRequest struct {
  3. }
  4. type ALlWithdrawValue struct {
  5. AllWithdrawValue float64 `json:"AllWithdraw_value"`
  6. }
  7. func NewGetWithdrawValueRequest() *GetWithdrawValueRequest {
  8. return new(GetWithdrawValueRequest)
  9. }
  10. func NewGetWithdrawValueResponse() *CommonResponse {
  11. resp := new(CommonResponse)
  12. resp.Data = new(ALlWithdrawValue)
  13. return resp
  14. }