Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

CreateAppOperation

Properties

Name Type Description Notes
actions List[ActionInput] [optional]
app_name str [optional]
app_type str [optional]
parameters List[Parameter] [optional]

Example

from cyperf.models.create_app_operation import CreateAppOperation

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

# convert the object into a dict
create_app_operation_dict = create_app_operation_instance.to_dict()
# create an instance of CreateAppOperation from a dict
create_app_operation_from_dict = CreateAppOperation.from_dict(create_app_operation_dict)

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