Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

PageArtifactQueryRequest

Properties

Name Type Description Notes
items List[PageArtifactQueryItem]
run_id str [optional]
as_of datetime [optional]

Example

from wordlift_client.models.page_artifact_query_request import PageArtifactQueryRequest

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

# convert the object into a dict
page_artifact_query_request_dict = page_artifact_query_request_instance.to_dict()
# create an instance of PageArtifactQueryRequest from a dict
page_artifact_query_request_from_dict = PageArtifactQueryRequest.from_dict(page_artifact_query_request_dict)

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