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 fleet that the device is being selected for.
template_version
str
The name of the TemplateVersion that the device is being selected to render.
Example
fromflightctl.models.fleet_rollout_device_selected_detailsimportFleetRolloutDeviceSelectedDetails# TODO update the JSON string belowjson="{}"# create an instance of FleetRolloutDeviceSelectedDetails from a JSON stringfleet_rollout_device_selected_details_instance=FleetRolloutDeviceSelectedDetails.from_json(json)
# print the JSON string representation of the objectprint(FleetRolloutDeviceSelectedDetails.to_json())
# convert the object into a dictfleet_rollout_device_selected_details_dict=fleet_rollout_device_selected_details_instance.to_dict()
# create an instance of FleetRolloutDeviceSelectedDetails from a dictfleet_rollout_device_selected_details_from_dict=FleetRolloutDeviceSelectedDetails.from_dict(fleet_rollout_device_selected_details_dict)