PassSecTaskCoop.go 413 B

12345678910111213141516171819
  1. package http_model
  2. type PassSecTaskCoopRequest struct {
  3. SelectionId string `json:"selection_id"`
  4. TaskIds []string `json:"task_ids"`
  5. }
  6. type PassSecTaskCoopData struct {
  7. }
  8. func NewPassSecTaskCoopRequest() *PassSecTaskCoopRequest {
  9. return new(PassSecTaskCoopRequest)
  10. }
  11. func NewPassSecTaskCoopResponse() *CommonResponse {
  12. resp := new(CommonResponse)
  13. resp.Data = new(PassSecTaskCoopData)
  14. return resp
  15. }