| Name |
Type |
Description |
Notes |
| timezone_offset |
int |
|
[optional] |
from cyperf.models.generate_all_operation import GenerateAllOperation
# TODO update the JSON string below
json = "{}"
# create an instance of GenerateAllOperation from a JSON string
generate_all_operation_instance = GenerateAllOperation.from_json(json)
# print the JSON string representation of the object
print(GenerateAllOperation.to_json())
# convert the object into a dict
generate_all_operation_dict = generate_all_operation_instance.to_dict()
# create an instance of GenerateAllOperation from a dict
generate_all_operation_from_dict = GenerateAllOperation.from_dict(generate_all_operation_dict)
[Back to Model list] [Back to API list] [Back to README]