Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.2 KB

File metadata and controls

30 lines (21 loc) · 1.2 KB

StructuredDataExpectationRequest

Properties

Name Type Description Notes
type str
config StructuredDataExpectationConfigRequest

Example

from wordlift_client.models.structured_data_expectation_request import StructuredDataExpectationRequest

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

# convert the object into a dict
structured_data_expectation_request_dict = structured_data_expectation_request_instance.to_dict()
# create an instance of StructuredDataExpectationRequest from a dict
structured_data_expectation_request_from_dict = StructuredDataExpectationRequest.from_dict(structured_data_expectation_request_dict)

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