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 resource key identifying the dependency that changed (e.g. "git:my-repo/main").
fingerprint
str
The new fingerprint (e.g. commit SHA) of the changed dependency.
Example
fromflightctl.models.dependency_change_detected_detailsimportDependencyChangeDetectedDetails# TODO update the JSON string belowjson="{}"# create an instance of DependencyChangeDetectedDetails from a JSON stringdependency_change_detected_details_instance=DependencyChangeDetectedDetails.from_json(json)
# print the JSON string representation of the objectprint(DependencyChangeDetectedDetails.to_json())
# convert the object into a dictdependency_change_detected_details_dict=dependency_change_detected_details_instance.to_dict()
# create an instance of DependencyChangeDetectedDetails from a dictdependency_change_detected_details_from_dict=DependencyChangeDetectedDetails.from_dict(dependency_change_detected_details_dict)