Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

MDMConfigRequest

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

Properties

Name Type Description Notes
platform DeviceFactsOSFamily
enrollment_token UUID

Example

from authentik_client.models.mdm_config_request import MDMConfigRequest

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

# convert the object into a dict
mdm_config_request_dict = mdm_config_request_instance.to_dict()
# create an instance of MDMConfigRequest from a dict
mdm_config_request_from_dict = MDMConfigRequest.from_dict(mdm_config_request_dict)

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