Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

AttachExpectationSegmentRequest

Body for PUT /expectations/{id}/segments/{segment_id}.

Properties

Name Type Description Notes
severity ExpectationSeverity

Example

from wordlift_client.models.attach_expectation_segment_request import AttachExpectationSegmentRequest

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

# convert the object into a dict
attach_expectation_segment_request_dict = attach_expectation_segment_request_instance.to_dict()
# create an instance of AttachExpectationSegmentRequest from a dict
attach_expectation_segment_request_from_dict = AttachExpectationSegmentRequest.from_dict(attach_expectation_segment_request_dict)

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