Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

EnrollmentService.md

File metadata and controls

31 lines (22 loc) · 1.07 KB

EnrollmentService

Properties

Name Type Description Notes
authentication EnrollmentServiceAuth
service EnrollmentServiceService
enrollment_ui_endpoint str

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]