- package http_model
- type SelectionInvalid struct {
- Time int32 `json:"time"`
- }
- func NewSelectionInvalidRequest() *SelectionInvalid {
- return new(SelectionInvalid)
- }
- func NewSelectionInvalidResponse() *CommonResponse {
- resp := new(CommonResponse)
- return resp
- }
|