EndSelectionRequest.go 391 B

1234567891011121314151617
  1. package http_model
  2. type EndSelectionRequest struct {
  3. SelectionId string `json:"selection_id"`
  4. }
  5. type EndSelectionData struct {
  6. SelectionId string `json:"selection_id"`
  7. }
  8. func NewEndSelectionRequest() *EndSelectionRequest { return new(EndSelectionRequest) }
  9. func NewEndSelectionResponse() *CommonResponse {
  10. resp := new(CommonResponse)
  11. resp.Data = new(EndSelectionData)
  12. return resp
  13. }