Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 924 Bytes

File metadata and controls

31 lines (22 loc) · 924 Bytes

Keyword

Properties

Name Type Description Notes
category str The keyword category [optional]
value str The keyword value [optional]
index int The index of the category [optional]

Example

from cyperf.models.keyword import Keyword

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

# convert the object into a dict
keyword_dict = keyword_instance.to_dict()
# create an instance of Keyword from a dict
keyword_from_dict = Keyword.from_dict(keyword_dict)

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