Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 979 Bytes

File metadata and controls

32 lines (23 loc) · 979 Bytes

ItemsInner

Properties

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

Example

from wordlift_client.models.items_inner import ItemsInner

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

# convert the object into a dict
items_inner_dict = items_inner_instance.to_dict()
# create an instance of ItemsInner from a dict
items_inner_from_dict = ItemsInner.from_dict(items_inner_dict)

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