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
The name of the application whose device-level lifecycle override changed.
action
str
The lifecycle action that was requested.
Example
fromflightctl.models.application_lifecycle_changed_detailsimportApplicationLifecycleChangedDetails# TODO update the JSON string belowjson="{}"# create an instance of ApplicationLifecycleChangedDetails from a JSON stringapplication_lifecycle_changed_details_instance=ApplicationLifecycleChangedDetails.from_json(json)
# print the JSON string representation of the objectprint(ApplicationLifecycleChangedDetails.to_json())
# convert the object into a dictapplication_lifecycle_changed_details_dict=application_lifecycle_changed_details_instance.to_dict()
# create an instance of ApplicationLifecycleChangedDetails from a dictapplication_lifecycle_changed_details_from_dict=ApplicationLifecycleChangedDetails.from_dict(application_lifecycle_changed_details_dict)