Body for POST /expectations. Segment attachments are managed via the dedicated /expectations/{e}/segments endpoints.
| Name | Type | Description | Notes |
|---|---|---|---|
| check_name | MonitorCheckName | ||
| severity | ExpectationSeverity | ||
| config | StructuredDataExpectationConfig |
from wordlift_client.models.expectation_request import ExpectationRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ExpectationRequest from a JSON string
expectation_request_instance = ExpectationRequest.from_json(json)
# print the JSON string representation of the object
print(ExpectationRequest.to_json())
# convert the object into a dict
expectation_request_dict = expectation_request_instance.to_dict()
# create an instance of ExpectationRequest from a dict
expectation_request_from_dict = ExpectationRequest.from_dict(expectation_request_dict)