Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.33 KB

File metadata and controls

33 lines (24 loc) · 1.33 KB

StructuredDataExpectationResponse

Properties

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

Example

from wordlift_client.models.structured_data_expectation_response import StructuredDataExpectationResponse

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

# convert the object into a dict
structured_data_expectation_response_dict = structured_data_expectation_response_instance.to_dict()
# create an instance of StructuredDataExpectationResponse from a dict
structured_data_expectation_response_from_dict = StructuredDataExpectationResponse.from_dict(structured_data_expectation_response_dict)

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