Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.2 KB

File metadata and controls

30 lines (21 loc) · 1.2 KB

FleetRolloutCompletedDetails

Properties

Name Type Description Notes
detail_type str The type of detail for discriminator purposes.
template_version str The name of the TemplateVersion that this fleet rollout is completed for.

Example

from flightctl.models.fleet_rollout_completed_details import FleetRolloutCompletedDetails

# TODO update the JSON string below
json = "{}"
# create an instance of FleetRolloutCompletedDetails from a JSON string
fleet_rollout_completed_details_instance = FleetRolloutCompletedDetails.from_json(json)
# print the JSON string representation of the object
print(FleetRolloutCompletedDetails.to_json())

# convert the object into a dict
fleet_rollout_completed_details_dict = fleet_rollout_completed_details_instance.to_dict()
# create an instance of FleetRolloutCompletedDetails from a dict
fleet_rollout_completed_details_from_dict = FleetRolloutCompletedDetails.from_dict(fleet_rollout_completed_details_dict)

[Back to Model list] [Back to API list] [Back to README]