IssuesDto¶
The issues for the object
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| duplicate_target_ids | List[str] | [optional] | |
| duplicates_ignored | bool | [optional] | |
| unused_ignored | bool | [optional] | |
| unused_target_ids | List[str] | [optional] |
Example¶
from scc_firewall_manager_sdk.models.issues_dto import IssuesDto
# TODO update the JSON string below
json = "{}"
# create an instance of IssuesDto from a JSON string
issues_dto_instance = IssuesDto.from_json(json)
# print the JSON string representation of the object
print(IssuesDto.to_json())
# convert the object into a dict
issues_dto_dict = issues_dto_instance.to_dict()
# create an instance of IssuesDto from a dict
issues_dto_form_dict = issues_dto.from_dict(issues_dto_dict)