Name | Type | Description | Notes |
---|---|---|---|
links | JobHALLinks | [optional] | |
type | VerifyType | ||
state | JobStateResult | ||
request | VerifyArgs | [optional] | |
result | VerifyResult | [optional] | |
created_at | datetime | The timestamp of creation of this job | |
created_by | str | The user that created this job | |
operation | str | Request operation | |
function | FunctionRef | [optional] | |
job | JobStatus | [optional] | |
failure_reason | FailureReason | [optional] |
from waylay.services.registry.models.verify import Verify
# TODO update the JSON string below
json = "{}"
# create an instance of Verify from a JSON string
verify_instance = Verify.from_json(json)
# print the JSON string representation of the object
print Verify.to_json()
# convert the object into a dict
verify_dict = verify_instance.to_dict()
# create an instance of Verify from a dict
verify_form_dict = verify.from_dict(verify_dict)