Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.4 KB

Verify.md

File metadata and controls

39 lines (30 loc) · 1.4 KB

Verify

Properties

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]

Example

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)

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