Skip to content

Files

Latest commit

 

History

History
30 lines (21 loc) · 983 Bytes

ApiDescriptionData.md

File metadata and controls

30 lines (21 loc) · 983 Bytes

ApiDescriptionData

Properties

Name Type Description Notes
lang str [optional]
value str [optional]

Example

from vulncheck_sdk.models.api_description_data import ApiDescriptionData

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

# convert the object into a dict
api_description_data_dict = api_description_data_instance.to_dict()
# create an instance of ApiDescriptionData from a dict
api_description_data_from_dict = ApiDescriptionData.from_dict(api_description_data_dict)

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