You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromcyperf.models.create_app_or_attack_operation_inputimportCreateAppOrAttackOperationInput# TODO update the JSON string belowjson="{}"# create an instance of CreateAppOrAttackOperationInput from a JSON stringcreate_app_or_attack_operation_input_instance=CreateAppOrAttackOperationInput.from_json(json)
# print the JSON string representation of the objectprint(CreateAppOrAttackOperationInput.to_json())
# convert the object into a dictcreate_app_or_attack_operation_input_dict=create_app_or_attack_operation_input_instance.to_dict()
# create an instance of CreateAppOrAttackOperationInput from a dictcreate_app_or_attack_operation_input_from_dict=CreateAppOrAttackOperationInput.from_dict(create_app_or_attack_operation_input_dict)