| Name | Type | Description | Notes |
|---|---|---|---|
| filter_by | FilterBy4 | [optional] | |
| fields | List[DeviceVulnerabilityFieldsEnum] | Specify which fields to return for each item. See the endpoint description for details of supported fields. | |
| sort_by | List[ValidatingSortClauseDeviceVulnerability] | Specifies how the returned data should be sorted. If more than one sort clause is passed, additional clauses will be used to sort data that is equal in all previous clauses. | [optional] [default to [{field=device_uid, order=asc}, {field=vulnerability_id, order=asc}]] |
| offset | int | An offset in the data. This can be used to fetch all data in a paginated manner, by e.g requesting (offset=0, limit=100) followed by (offset=100, limit=100), (offset=200, limit=100), etc. | [optional] [default to 0] |
| limit | int | Maximum amount of items to fetch | [optional] [default to 100] |
| include_count | bool | [optional] [default to False] |
from medigate_api.models.get_device_vulnerabilities_parameters import GetDeviceVulnerabilitiesParameters
# TODO update the JSON string below
json = "{}"
# create an instance of GetDeviceVulnerabilitiesParameters from a JSON string
get_device_vulnerabilities_parameters_instance = GetDeviceVulnerabilitiesParameters.from_json(json)
# print the JSON string representation of the object
print(GetDeviceVulnerabilitiesParameters.to_json())
# convert the object into a dict
get_device_vulnerabilities_parameters_dict = get_device_vulnerabilities_parameters_instance.to_dict()
# create an instance of GetDeviceVulnerabilitiesParameters from a dict
get_device_vulnerabilities_parameters_from_dict = GetDeviceVulnerabilitiesParameters.from_dict(get_device_vulnerabilities_parameters_dict)