PassSecTaskCoop.go 508 B

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