Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 878 Bytes

File metadata and controls

30 lines (21 loc) · 878 Bytes

UserBlock

Properties

Name Type Description Notes
applies_to str [optional] [readonly]
type str [optional] [readonly]

Example

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)

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