Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.15 KB

File metadata and controls

33 lines (24 loc) · 1.15 KB

ExportPackageOperation

Properties

Name Type Description Notes
configs bool [optional]
external_nats_brokers bool [optional]
keycloak bool [optional]
license_servers bool [optional]
results bool [optional]

Example

from cyperf.models.export_package_operation import ExportPackageOperation

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

# convert the object into a dict
export_package_operation_dict = export_package_operation_instance.to_dict()
# create an instance of ExportPackageOperation from a dict
export_package_operation_from_dict = ExportPackageOperation.from_dict(export_package_operation_dict)

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