Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

ExpectationResponse

Properties

Name Type Description Notes
id str
check_name MonitorCheckName
severity ExpectationSeverity
config StructuredDataExpectationConfig
created_at datetime

Example

from wordlift_client.models.expectation_response import ExpectationResponse

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

# convert the object into a dict
expectation_response_dict = expectation_response_instance.to_dict()
# create an instance of ExpectationResponse from a dict
expectation_response_from_dict = ExpectationResponse.from_dict(expectation_response_dict)

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