| Name | Type | Description | Notes |
|---|---|---|---|
| applies_to | str | [optional] [readonly] | |
| type | str | [optional] [readonly] |
from okta.models.user_block import UserBlock
# TODO update the JSON string below
json = "{}"
# create an instance of UserBlock from a JSON string
user_block_instance = UserBlock.from_json(json)
# print the JSON string representation of the object
print(UserBlock.to_json())
# convert the object into a dict
user_block_dict = user_block_instance.to_dict()
# create an instance of UserBlock from a dict
user_block_from_dict = UserBlock.from_dict(user_block_dict)