| Name | Type | Description | Notes |
|---|---|---|---|
| open_api_definitions | Dict[str, AttackMetadataKeywordsInner] | The OpenAPI definitions for CyPerf data model | [optional] |
from cyperf.models.open_api_definitions import OpenAPIDefinitions
# TODO update the JSON string below
json = "{}"
# create an instance of OpenAPIDefinitions from a JSON string
open_api_definitions_instance = OpenAPIDefinitions.from_json(json)
# print the JSON string representation of the object
print(OpenAPIDefinitions.to_json())
# convert the object into a dict
open_api_definitions_dict = open_api_definitions_instance.to_dict()
# create an instance of OpenAPIDefinitions from a dict
open_api_definitions_from_dict = OpenAPIDefinitions.from_dict(open_api_definitions_dict)