Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

BatchTokenizationResponseLine.md

File metadata and controls

31 lines (22 loc) · 1.14 KB

BatchTokenizationResponseLine

Properties

Name Type Description Notes
data str [optional]
error str [optional]
tweak str [optional]

Example

from akeyless.models.batch_tokenization_response_line import BatchTokenizationResponseLine

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

# convert the object into a dict
batch_tokenization_response_line_dict = batch_tokenization_response_line_instance.to_dict()
# create an instance of BatchTokenizationResponseLine from a dict
batch_tokenization_response_line_from_dict = BatchTokenizationResponseLine.from_dict(batch_tokenization_response_line_dict)

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