EnrollmentService contains information about how to communicate with a Flight Control enrollment service.
| Name | Type | Description | Notes |
|---|---|---|---|
| authentication | EnrollmentServiceAuth | ||
| service | EnrollmentServiceService | ||
| enrollment_ui_endpoint | str | The URL of the UI that the agent uses to print the QR code and link for enrolling the device. |
from flightctl.models.enrollment_service import EnrollmentService
# TODO update the JSON string below
json = "{}"
# create an instance of EnrollmentService from a JSON string
enrollment_service_instance = EnrollmentService.from_json(json)
# print the JSON string representation of the object
print(EnrollmentService.to_json())
# convert the object into a dict
enrollment_service_dict = enrollment_service_instance.to_dict()
# create an instance of EnrollmentService from a dict
enrollment_service_from_dict = EnrollmentService.from_dict(enrollment_service_dict)