RepositoryStatus represents information about the status of a repository.
| Name | Type | Description | Notes |
|---|---|---|---|
| conditions | List[Condition] | Current state of the repository. |
from flightctl.models.repository_status import RepositoryStatus
# TODO update the JSON string below
json = "{}"
# create an instance of RepositoryStatus from a JSON string
repository_status_instance = RepositoryStatus.from_json(json)
# print the JSON string representation of the object
print(RepositoryStatus.to_json())
# convert the object into a dict
repository_status_dict = repository_status_instance.to_dict()
# create an instance of RepositoryStatus from a dict
repository_status_from_dict = RepositoryStatus.from_dict(repository_status_dict)