class OrderModifyParams:
def __init__(self):
self.newPrice = 0
self.newTriggerPrice = 0
self.newQty = 0
self.newOrderType = None
def __str__(self):
return "newPrice=" + str(self.newPrice) + ", newTriggerPrice=" + str(self.newTriggerPrice) \
+ ", newQty=" + str(self.newQty) + ", newOrderType=" + str(self.newOrderType)