Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

File metadata and controls

32 lines (23 loc) · 1.02 KB

UserVaultItem

Properties

Name Type Description Notes
type UserVaultType
key str
value str [optional]
visibility VaultScope [optional]

Example

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)

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