Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

RadiusCheckAccess

Base serializer class which doesn't implement create/update methods

Properties

Name Type Description Notes
attributes str [optional]
access PolicyTestResult

Example

from authentik_client.models.radius_check_access import RadiusCheckAccess

# TODO update the JSON string below
json = "{}"
# create an instance of RadiusCheckAccess from a JSON string
radius_check_access_instance = RadiusCheckAccess.from_json(json)
# print the JSON string representation of the object
print(RadiusCheckAccess.to_json())

# convert the object into a dict
radius_check_access_dict = radius_check_access_instance.to_dict()
# create an instance of RadiusCheckAccess from a dict
radius_check_access_from_dict = RadiusCheckAccess.from_dict(radius_check_access_dict)

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