Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

File metadata and controls

32 lines (23 loc) · 1.26 KB

EnrollmentService

EnrollmentService contains information about how to communicate with a Flight Control enrollment service.

Properties

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.

Example

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)

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