Name | Type | Description | Notes |
---|---|---|---|
authentication | EnrollmentServiceAuth | ||
service | EnrollmentServiceService | ||
enrollment_ui_endpoint | str |
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)