Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1001 Bytes

File metadata and controls

30 lines (21 loc) · 1001 Bytes

CanonicalName

Properties

Name Type Description Notes
canonical_name str Canonical form of the name, or the input name itself when it has no canonical form.
name str The input function name.

Example

from revengai.models.canonical_name import CanonicalName

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

# convert the object into a dict
canonical_name_dict = canonical_name_instance.to_dict()
# create an instance of CanonicalName from a dict
canonical_name_from_dict = CanonicalName.from_dict(canonical_name_dict)

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