Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.39 KB

File metadata and controls

31 lines (23 loc) · 1.39 KB

ArtifactIdentifier

ArtifactIdentifier specifies the artifact a monitor tracks over time. Metrics exist in TestCases, TestBatches and CategoryTests. This is extendable to allow new kinds of metrics.

Properties

Name Type Description Notes
test_case_metric_identifier TestCaseMetricIdentifier [optional]
category_test_metric_identifier CategoryTestIdentifier [optional]
subset_test_metric_identifier SubsetTestMetricIdentifier [optional]

Example

from ri.apiclient.models.artifact_identifier import ArtifactIdentifier

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

# convert the object into a dict
artifact_identifier_dict = artifact_identifier_instance.to_dict()
# create an instance of ArtifactIdentifier from a dict
artifact_identifier_from_dict = ArtifactIdentifier.from_dict(artifact_identifier_dict)

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