Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

File metadata and controls

29 lines (20 loc) · 1.04 KB

OpenAPIDefinitions

Properties

Name Type Description Notes
open_api_definitions Dict[str, AttackMetadataKeywordsInner] The OpenAPI definitions for CyPerf data model [optional]

Example

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)

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