Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
29 lines (20 loc) · 1 KB
·

ModelsEntitlements.md

File metadata and controls

29 lines (20 loc) · 1 KB
·

ModelsEntitlements

Properties

Name Type Description Notes
entitlements Dict[str, List[str]] Entitlements provides a map of roles to a list of entitlements [optional]

Example

from vulncheck_sdk.models.models_entitlements import ModelsEntitlements

# TODO update the JSON string below
json = "{}"
# create an instance of ModelsEntitlements from a JSON string
models_entitlements_instance = ModelsEntitlements.from_json(json)
# print the JSON string representation of the object
print(ModelsEntitlements.to_json())

# convert the object into a dict
models_entitlements_dict = models_entitlements_instance.to_dict()
# create an instance of ModelsEntitlements from a dict
models_entitlements_from_dict = ModelsEntitlements.from_dict(models_entitlements_dict)

[Back to Model list] [Back to API list] [Back to README]