You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
approved indicates whether the request has been approved.
approved_by
str
approvedBy is the name of the approver.
[optional]
approved_at
datetime
approvedAt is the time at which the request was approved.
[optional]
Example
fromflightctl.models.enrollment_request_approvalimportEnrollmentRequestApproval# TODO update the JSON string belowjson="{}"# create an instance of EnrollmentRequestApproval from a JSON stringenrollment_request_approval_instance=EnrollmentRequestApproval.from_json(json)
# print the JSON string representation of the objectprint(EnrollmentRequestApproval.to_json())
# convert the object into a dictenrollment_request_approval_dict=enrollment_request_approval_instance.to_dict()
# create an instance of EnrollmentRequestApproval from a dictenrollment_request_approval_from_dict=EnrollmentRequestApproval.from_dict(enrollment_request_approval_dict)