Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.24 KB

File metadata and controls

30 lines (21 loc) · 1.24 KB

ReferencedRepositoryUpdatedDetails

Properties

Name Type Description Notes
detail_type str The type of detail for discriminator purposes.
repository str The name of the repository that was updated.

Example

from flightctl.models.referenced_repository_updated_details import ReferencedRepositoryUpdatedDetails

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

# convert the object into a dict
referenced_repository_updated_details_dict = referenced_repository_updated_details_instance.to_dict()
# create an instance of ReferencedRepositoryUpdatedDetails from a dict
referenced_repository_updated_details_from_dict = ReferencedRepositoryUpdatedDetails.from_dict(referenced_repository_updated_details_dict)

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