1234567891011121314151617 |
- package http_model
- type EndSelectionRequest struct {
- SelectionId string `json:"selection_id"`
- }
- type EndSelectionData struct {
- SelectionId string `json:"selection_id"`
- }
- func NewEndSelectionRequest() *EndSelectionRequest { return new(EndSelectionRequest) }
- func NewEndSelectionResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(EndSelectionData)
- return resp
- }
|