Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 976 Bytes

File metadata and controls

29 lines (20 loc) · 976 Bytes

GenerateAllOperation

Properties

Name Type Description Notes
timezone_offset int [optional]

Example

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]