diff --git a/Runtime/GuruCore/Runtime/IPM/Scripts/ResponseData/OrderResponse.cs b/Runtime/GuruCore/Runtime/IPM/Scripts/ResponseData/OrderResponse.cs index 03ef3f2..046193d 100644 --- a/Runtime/GuruCore/Runtime/IPM/Scripts/ResponseData/OrderResponse.cs +++ b/Runtime/GuruCore/Runtime/IPM/Scripts/ResponseData/OrderResponse.cs @@ -7,10 +7,11 @@ namespace Guru { public double usdPrice; public bool test; + public string state; public override string ToString() { - return $"{nameof(usdPrice)}: {usdPrice} {nameof(test)}: {test}"; + return $"{nameof(usdPrice)}: {usdPrice} {nameof(test)}: {test} {nameof(state)}: {state}"; } } } \ No newline at end of file