Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 922 Bytes

TokenizeOutput.md

File metadata and controls

30 lines (21 loc) · 922 Bytes

TokenizeOutput

Properties

Name Type Description Notes
result str [optional]
tweak str [optional]

Example

from akeyless.models.tokenize_output import TokenizeOutput

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

# convert the object into a dict
tokenize_output_dict = tokenize_output_instance.to_dict()
# create an instance of TokenizeOutput from a dict
tokenize_output_from_dict = TokenizeOutput.from_dict(tokenize_output_dict)

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