Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 988 Bytes

BulkCreateAssertion.md

File metadata and controls

30 lines (21 loc) · 988 Bytes

BulkCreateAssertion

Properties

Name Type Description Notes
skipped List[object]
issued List[object]

Example

from iblai.models.bulk_create_assertion import BulkCreateAssertion

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

# convert the object into a dict
bulk_create_assertion_dict = bulk_create_assertion_instance.to_dict()
# create an instance of BulkCreateAssertion from a dict
bulk_create_assertion_from_dict = BulkCreateAssertion.from_dict(bulk_create_assertion_dict)

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