public override int GetHashCode()
        {
            int hash = 1;

            if (SeqNumber != 0)
            {
                hash ^= SeqNumber.GetHashCode();
            }
            if (Symbol.Length != 0)
            {
                hash ^= Symbol.GetHashCode();
            }
            if (Side != global::My.Rtm.Side.Ask)
            {
                hash ^= Side.GetHashCode();
            }
            if (Prc != 0D)
            {
                hash ^= pbc::ProtobufEqualityComparers.BitwiseDoubleEqualityComparer.GetHashCode(Prc);
            }
            if (Qty != 0D)
            {
                hash ^= pbc::ProtobufEqualityComparers.BitwiseDoubleEqualityComparer.GetHashCode(Qty);
            }
            if (_unknownFields != null)
            {
                hash ^= _unknownFields.GetHashCode();
            }
            return(hash);
        }
 public override string ToString()
 {
     return(ProcessId.ToString() + "." + SeqNumber.ToString());
 }