Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

ReleaseOperationInput

Properties

Name Type Description Notes
agents_data List[AgentRelease] [optional]
session_id str [optional]

Example

from cyperf.models.release_operation_input import ReleaseOperationInput

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

# convert the object into a dict
release_operation_input_dict = release_operation_input_instance.to_dict()
# create an instance of ReleaseOperationInput from a dict
release_operation_input_from_dict = ReleaseOperationInput.from_dict(release_operation_input_dict)

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