Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.36 KB

Status.md

File metadata and controls

32 lines (23 loc) · 1.36 KB

Status

Status is a return value for calls that don't return other objects.

Properties

Name Type Description Notes
message str A human-readable description of the status of this operation. [optional]
reason str A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it. [optional]
status str Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status [optional]

Example

from flightctl.models.status import Status

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

# convert the object into a dict
status_dict = status_instance.to_dict()
# create an instance of Status from a dict
status_from_dict = Status.from_dict(status_dict)

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