OnixS C++ MTS Bond Vision SDP Handler 1.3.0
API documentation
Loading...
Searching...
No Matches
SMP.Classes.BV_IOI.h
Go to the documentation of this file.
1#pragma once
2/*
3* Copyright Onix Solutions Limited [OnixS]. All rights reserved.
4*
5* This software owned by Onix Solutions Limited [OnixS] and is protected by copyright law
6* and international copyright treaties.
7*
8* Access to and use of the software is governed by the terms of the applicable ONIXS Software
9* Services Agreement (the Agreement) and Customer end user license agreements granting
10* a non-assignable, non-transferable and non-exclusive license to use the software
11* for it's own data processing purposes under the terms defined in the Agreement.
12*
13* Except as otherwise granted within the terms of the Agreement, copying or reproduction of any part
14* of this source code or associated reference material to any other location for further reproduction
15* or redistribution, and any amendments to this copyright notice, are expressly prohibited.
16*
17* Any reproduction or redistribution for sale or hiring of the Software not in accordance with
18* the terms of the Agreement is a violation of copyright law.
19*/
20
21
22/*
23--------------
24GENERATED FILE
25--------------
26*/
27
28
29#include <string>
38
39
40namespace OnixS {
41namespace Mts {
42namespace BondVision {
43namespace SDP {
44
45
46
48class ONIXS_MTS_BONDVISION_SDP_API BV_IOI : public Class
49{
50public:
52 {
53 iOIClientInfo.reserve(32);
54 iOIRefClientInfo.reserve(32);
55 freeText.reserve(20);
56 transactionTime.reserve(32);
57 }
58
59 virtual ~BV_IOI() {}
60
62 virtual ClassId::Enum id() const
63 {
64 return ClassId::BV_IOI;
65 }
66
69
71 std::string iOIClientInfo; // maxSize = 32
72
74 std::string iOIRefClientInfo; // maxSize = 32
75
78
81
84
87
90
93
96
99
101 std::string freeText; // maxSize = 20
102
104 std::string transactionTime; // maxSize = 32
105
107 UInt64 updateTime; // UTIME presentation
108
109
111 size_t deserialize(const void* buf, size_t inLen);
112
114 virtual std::string toString () const;
115
117 virtual size_t serializationBufSize() const { return 1060; }
118
120 virtual BV_IOI* clone() const;
121
122 virtual BV_IOI* clone(void*) const;
123
124private:
125 virtual size_t serialize(void* buf) const;
126
127};
128
129
130}
131}
132}
133}
std::string iOIClientInfo
Alphanumeric client's message identifier, set by the client who inserts/modifies an IOI.
virtual ClassId::Enum id() const
Class id.
BV_IOI_STATUS::Enum status
IOI status.
UInt64 updateTime
Time at which the data was last updated.
virtual size_t serializationBufSize() const
std::string iOIRefClientInfo
Message reference, referred to the IOI to be modified/deleted. Empty in case of IOI insertion.
BV_MEMBER_INFO provider
Data about the member - Sell Side Member.
UInt32 groupId
Unique ID of the group. The field is set to 0, if the IOI is addressed to a single Buy Side Member.
virtual BV_IOI * clone() const
BV_IOI_EVENT::Enum event
IOI event (e.g. activate, delete)
virtual BV_IOI * clone(void *) const
BV_IOI_QUOTING_DATA quotingData
IOI quoting data (e.g. Quantity, Price, ...). The Quantity must be specified.
BV_INSTRUMENT_INFO instrument
Data about the instrument (instrument ID and type)
BV_MEMBER_INFO submitter
Data about the member - submitterof the IOI (Sell Side Member or broker OBO)
size_t deserialize(const void *buf, size_t inLen)
std::string transactionTime
Time at which the transaction took place.
TI_VERB::Enum side
Verb - from Sell Side Member's point of view.
std::string freeText
Free text or Single Buy Side Member. See the description provided at the beginning of this chapter.
virtual std::string toString() const
Provides string presentation.
unsigned long long UInt64
Definition Defines.h:47