| Name | Type | Description | Notes |
|---|---|---|---|
| type | UserVaultType | ||
| key | str | ||
| value | str | [optional] | |
| visibility | VaultScope | [optional] |
from platform_api_python_client.models.user_vault_item import UserVaultItem
# TODO update the JSON string below
json = "{}"
# create an instance of UserVaultItem from a JSON string
user_vault_item_instance = UserVaultItem.from_json(json)
# print the JSON string representation of the object
print(UserVaultItem.to_json())
# convert the object into a dict
user_vault_item_dict = user_vault_item_instance.to_dict()
# create an instance of UserVaultItem from a dict
user_vault_item_from_dict = UserVaultItem.from_dict(user_vault_item_dict)