Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

ExportAppsOperationInput

Properties

Name Type Description Notes
app_ids List[AppId] An optional list of applications to be included. All are included if the list is empty. [optional]

Example

from cyperf.models.export_apps_operation_input import ExportAppsOperationInput

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

# convert the object into a dict
export_apps_operation_input_dict = export_apps_operation_input_instance.to_dict()
# create an instance of ExportAppsOperationInput from a dict
export_apps_operation_input_from_dict = ExportAppsOperationInput.from_dict(export_apps_operation_input_dict)

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