Write model for PUT /user_vault, where the key and value rules are enforced.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| type | UserVaultType | ||
| key | str | ||
| value | str | ||
| visibility | VaultScope | [optional] |
from platform_api_python_client.models.upsert_user_vault_item_request import UpsertUserVaultItemRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpsertUserVaultItemRequest from a JSON string
upsert_user_vault_item_request_instance = UpsertUserVaultItemRequest.from_json(json)
# print the JSON string representation of the object
print(UpsertUserVaultItemRequest.to_json())
# convert the object into a dict
upsert_user_vault_item_request_dict = upsert_user_vault_item_request_instance.to_dict()
# create an instance of UpsertUserVaultItemRequest from a dict
upsert_user_vault_item_request_from_dict = UpsertUserVaultItemRequest.from_dict(upsert_user_vault_item_request_dict)