Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1008 Bytes

File metadata and controls

29 lines (20 loc) · 1008 Bytes

LoadConfigOperation

Properties

Name Type Description Notes
config_url str The URL of the configuration that should be loaded [optional]

Example

from cyperf.models.load_config_operation import LoadConfigOperation

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

# convert the object into a dict
load_config_operation_dict = load_config_operation_instance.to_dict()
# create an instance of LoadConfigOperation from a dict
load_config_operation_from_dict = LoadConfigOperation.from_dict(load_config_operation_dict)

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