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
fromflightctl.models.device_ownership_changed_detailsimportDeviceOwnershipChangedDetails# TODO update the JSON string belowjson="{}"# create an instance of DeviceOwnershipChangedDetails from a JSON stringdevice_ownership_changed_details_instance=DeviceOwnershipChangedDetails.from_json(json)
# print the JSON string representation of the objectprint(DeviceOwnershipChangedDetails.to_json())
# convert the object into a dictdevice_ownership_changed_details_dict=device_ownership_changed_details_instance.to_dict()
# create an instance of DeviceOwnershipChangedDetails from a dictdevice_ownership_changed_details_from_dict=DeviceOwnershipChangedDetails.from_dict(device_ownership_changed_details_dict)