RadiusProviderPropertyMapping Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | UUID | [readonly] | |
| managed | str | Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update. | [optional] |
| name | str | ||
| expression | str | ||
| component | str | Get object's component so that we know how to edit the object | [readonly] |
| verbose_name | str | Return object's verbose_name | [readonly] |
| verbose_name_plural | str | Return object's plural verbose_name | [readonly] |
| meta_model_name | str | Return internal model name | [readonly] |
from authentik_client.models.radius_provider_property_mapping import RadiusProviderPropertyMapping
# TODO update the JSON string below
json = "{}"
# create an instance of RadiusProviderPropertyMapping from a JSON string
radius_provider_property_mapping_instance = RadiusProviderPropertyMapping.from_json(json)
# print the JSON string representation of the object
print(RadiusProviderPropertyMapping.to_json())
# convert the object into a dict
radius_provider_property_mapping_dict = radius_provider_property_mapping_instance.to_dict()
# create an instance of RadiusProviderPropertyMapping from a dict
radius_provider_property_mapping_from_dict = RadiusProviderPropertyMapping.from_dict(radius_provider_property_mapping_dict)