QuoteRequestReject.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. #ifndef FIX50SP1_QUOTEREQUESTREJECT_H
  2. #define FIX50SP1_QUOTEREQUESTREJECT_H
  3. #include "Message.h"
  4. namespace FIX50SP1
  5. {
  6. class QuoteRequestReject : public Message
  7. {
  8. public:
  9. QuoteRequestReject() : Message(MsgType()) {}
  10. QuoteRequestReject(const FIX::Message& m) : Message(m) {}
  11. QuoteRequestReject(const Message& m) : Message(m) {}
  12. QuoteRequestReject(const QuoteRequestReject& m) : Message(m) {}
  13. static FIX::MsgType MsgType() { return FIX::MsgType("AG"); }
  14. QuoteRequestReject(
  15. const FIX::QuoteReqID& aQuoteReqID,
  16. const FIX::QuoteRequestRejectReason& aQuoteRequestRejectReason )
  17. : Message(MsgType())
  18. {
  19. set(aQuoteReqID);
  20. set(aQuoteRequestRejectReason);
  21. }
  22. FIELD_SET(*this, FIX::QuoteReqID);
  23. FIELD_SET(*this, FIX::RFQReqID);
  24. FIELD_SET(*this, FIX::QuoteRequestRejectReason);
  25. FIELD_SET(*this, FIX::PrivateQuote);
  26. FIELD_SET(*this, FIX::RespondentType);
  27. FIELD_SET(*this, FIX::PreTradeAnonymity);
  28. FIELD_SET(*this, FIX::NoRootPartyIDs);
  29. class NoRootPartyIDs: public FIX::Group
  30. {
  31. public:
  32. NoRootPartyIDs() : FIX::Group(1116,1117,FIX::message_order(1117,1118,1119,1120,0)) {}
  33. FIELD_SET(*this, FIX::RootPartyID);
  34. FIELD_SET(*this, FIX::RootPartyIDSource);
  35. FIELD_SET(*this, FIX::RootPartyRole);
  36. FIELD_SET(*this, FIX::NoRootPartySubIDs);
  37. class NoRootPartySubIDs: public FIX::Group
  38. {
  39. public:
  40. NoRootPartySubIDs() : FIX::Group(1120,1121,FIX::message_order(1121,1122,0)) {}
  41. FIELD_SET(*this, FIX::RootPartySubID);
  42. FIELD_SET(*this, FIX::RootPartySubIDType);
  43. };
  44. };
  45. FIELD_SET(*this, FIX::NoRelatedSym);
  46. class NoRelatedSym: public FIX::Group
  47. {
  48. public:
  49. NoRelatedSym() : FIX::Group(146,55,FIX::message_order(55,65,48,22,460,1227,1151,461,167,762,200,541,1079,966,1049,965,224,225,239,226,227,228,255,543,470,471,472,240,202,947,967,968,206,231,969,1146,996,1147,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,201,1244,1242,997,223,207,970,971,106,348,349,107,350,351,691,667,875,876,873,874,913,914,915,918,788,916,917,919,898,711,140,303,537,336,625,229,54,854,38,152,516,468,469,63,64,193,192,15,232,1,660,581,555,735,692,40,126,60,218,220,221,222,662,663,699,761,423,44,640,235,236,701,696,697,698,453,0)) {}
  50. FIELD_SET(*this, FIX::Symbol);
  51. FIELD_SET(*this, FIX::SymbolSfx);
  52. FIELD_SET(*this, FIX::SecurityID);
  53. FIELD_SET(*this, FIX::SecurityIDSource);
  54. FIELD_SET(*this, FIX::Product);
  55. FIELD_SET(*this, FIX::ProductComplex);
  56. FIELD_SET(*this, FIX::SecurityGroup);
  57. FIELD_SET(*this, FIX::CFICode);
  58. FIELD_SET(*this, FIX::SecurityType);
  59. FIELD_SET(*this, FIX::SecuritySubType);
  60. FIELD_SET(*this, FIX::MaturityMonthYear);
  61. FIELD_SET(*this, FIX::MaturityDate);
  62. FIELD_SET(*this, FIX::MaturityTime);
  63. FIELD_SET(*this, FIX::SettleOnOpenFlag);
  64. FIELD_SET(*this, FIX::InstrmtAssignmentMethod);
  65. FIELD_SET(*this, FIX::SecurityStatus);
  66. FIELD_SET(*this, FIX::CouponPaymentDate);
  67. FIELD_SET(*this, FIX::IssueDate);
  68. FIELD_SET(*this, FIX::RepoCollateralSecurityType);
  69. FIELD_SET(*this, FIX::RepurchaseTerm);
  70. FIELD_SET(*this, FIX::RepurchaseRate);
  71. FIELD_SET(*this, FIX::Factor);
  72. FIELD_SET(*this, FIX::CreditRating);
  73. FIELD_SET(*this, FIX::InstrRegistry);
  74. FIELD_SET(*this, FIX::CountryOfIssue);
  75. FIELD_SET(*this, FIX::StateOrProvinceOfIssue);
  76. FIELD_SET(*this, FIX::LocaleOfIssue);
  77. FIELD_SET(*this, FIX::RedemptionDate);
  78. FIELD_SET(*this, FIX::StrikePrice);
  79. FIELD_SET(*this, FIX::StrikeCurrency);
  80. FIELD_SET(*this, FIX::StrikeMultiplier);
  81. FIELD_SET(*this, FIX::StrikeValue);
  82. FIELD_SET(*this, FIX::OptAttribute);
  83. FIELD_SET(*this, FIX::ContractMultiplier);
  84. FIELD_SET(*this, FIX::MinPriceIncrement);
  85. FIELD_SET(*this, FIX::MinPriceIncrementAmount);
  86. FIELD_SET(*this, FIX::UnitOfMeasure);
  87. FIELD_SET(*this, FIX::UnitOfMeasureQty);
  88. FIELD_SET(*this, FIX::PriceUnitOfMeasure);
  89. FIELD_SET(*this, FIX::PriceUnitOfMeasureQty);
  90. FIELD_SET(*this, FIX::SettlMethod);
  91. FIELD_SET(*this, FIX::ExerciseStyle);
  92. FIELD_SET(*this, FIX::OptPayAmount);
  93. FIELD_SET(*this, FIX::PriceQuoteMethod);
  94. FIELD_SET(*this, FIX::FuturesValuationMethod);
  95. FIELD_SET(*this, FIX::ListMethod);
  96. FIELD_SET(*this, FIX::CapPrice);
  97. FIELD_SET(*this, FIX::FloorPrice);
  98. FIELD_SET(*this, FIX::PutOrCall);
  99. FIELD_SET(*this, FIX::FlexibleIndicator);
  100. FIELD_SET(*this, FIX::FlexProductEligibilityIndicator);
  101. FIELD_SET(*this, FIX::TimeUnit);
  102. FIELD_SET(*this, FIX::CouponRate);
  103. FIELD_SET(*this, FIX::SecurityExchange);
  104. FIELD_SET(*this, FIX::PositionLimit);
  105. FIELD_SET(*this, FIX::NTPositionLimit);
  106. FIELD_SET(*this, FIX::Issuer);
  107. FIELD_SET(*this, FIX::EncodedIssuerLen);
  108. FIELD_SET(*this, FIX::EncodedIssuer);
  109. FIELD_SET(*this, FIX::SecurityDesc);
  110. FIELD_SET(*this, FIX::EncodedSecurityDescLen);
  111. FIELD_SET(*this, FIX::EncodedSecurityDesc);
  112. FIELD_SET(*this, FIX::Pool);
  113. FIELD_SET(*this, FIX::ContractSettlMonth);
  114. FIELD_SET(*this, FIX::CPProgram);
  115. FIELD_SET(*this, FIX::CPRegType);
  116. FIELD_SET(*this, FIX::DatedDate);
  117. FIELD_SET(*this, FIX::InterestAccrualDate);
  118. FIELD_SET(*this, FIX::AgreementDesc);
  119. FIELD_SET(*this, FIX::AgreementID);
  120. FIELD_SET(*this, FIX::AgreementDate);
  121. FIELD_SET(*this, FIX::AgreementCurrency);
  122. FIELD_SET(*this, FIX::TerminationType);
  123. FIELD_SET(*this, FIX::StartDate);
  124. FIELD_SET(*this, FIX::EndDate);
  125. FIELD_SET(*this, FIX::DeliveryType);
  126. FIELD_SET(*this, FIX::MarginRatio);
  127. FIELD_SET(*this, FIX::NoUnderlyings);
  128. class NoUnderlyings: public FIX::Group
  129. {
  130. public:
  131. NoUnderlyings() : FIX::Group(711,311,FIX::message_order(311,312,309,305,462,463,310,763,313,542,1213,241,242,243,244,245,246,256,595,592,593,594,247,316,941,317,436,998,1423,1424,1425,1000,1419,435,308,306,362,363,307,364,365,877,878,972,318,879,975,973,974,810,882,883,884,885,886,1044,1045,1046,1038,1039,315,0)) {}
  132. FIELD_SET(*this, FIX::UnderlyingSymbol);
  133. FIELD_SET(*this, FIX::UnderlyingSymbolSfx);
  134. FIELD_SET(*this, FIX::UnderlyingSecurityID);
  135. FIELD_SET(*this, FIX::UnderlyingSecurityIDSource);
  136. FIELD_SET(*this, FIX::UnderlyingProduct);
  137. FIELD_SET(*this, FIX::UnderlyingCFICode);
  138. FIELD_SET(*this, FIX::UnderlyingSecurityType);
  139. FIELD_SET(*this, FIX::UnderlyingSecuritySubType);
  140. FIELD_SET(*this, FIX::UnderlyingMaturityMonthYear);
  141. FIELD_SET(*this, FIX::UnderlyingMaturityDate);
  142. FIELD_SET(*this, FIX::UnderlyingMaturityTime);
  143. FIELD_SET(*this, FIX::UnderlyingCouponPaymentDate);
  144. FIELD_SET(*this, FIX::UnderlyingIssueDate);
  145. FIELD_SET(*this, FIX::UnderlyingRepoCollateralSecurityType);
  146. FIELD_SET(*this, FIX::UnderlyingRepurchaseTerm);
  147. FIELD_SET(*this, FIX::UnderlyingRepurchaseRate);
  148. FIELD_SET(*this, FIX::UnderlyingFactor);
  149. FIELD_SET(*this, FIX::UnderlyingCreditRating);
  150. FIELD_SET(*this, FIX::UnderlyingInstrRegistry);
  151. FIELD_SET(*this, FIX::UnderlyingCountryOfIssue);
  152. FIELD_SET(*this, FIX::UnderlyingStateOrProvinceOfIssue);
  153. FIELD_SET(*this, FIX::UnderlyingLocaleOfIssue);
  154. FIELD_SET(*this, FIX::UnderlyingRedemptionDate);
  155. FIELD_SET(*this, FIX::UnderlyingStrikePrice);
  156. FIELD_SET(*this, FIX::UnderlyingStrikeCurrency);
  157. FIELD_SET(*this, FIX::UnderlyingOptAttribute);
  158. FIELD_SET(*this, FIX::UnderlyingContractMultiplier);
  159. FIELD_SET(*this, FIX::UnderlyingUnitOfMeasure);
  160. FIELD_SET(*this, FIX::UnderlyingUnitOfMeasureQty);
  161. FIELD_SET(*this, FIX::UnderlyingPriceUnitOfMeasure);
  162. FIELD_SET(*this, FIX::UnderlyingPriceUnitOfMeasureQty);
  163. FIELD_SET(*this, FIX::UnderlyingTimeUnit);
  164. FIELD_SET(*this, FIX::UnderlyingExerciseStyle);
  165. FIELD_SET(*this, FIX::UnderlyingCouponRate);
  166. FIELD_SET(*this, FIX::UnderlyingSecurityExchange);
  167. FIELD_SET(*this, FIX::UnderlyingIssuer);
  168. FIELD_SET(*this, FIX::EncodedUnderlyingIssuerLen);
  169. FIELD_SET(*this, FIX::EncodedUnderlyingIssuer);
  170. FIELD_SET(*this, FIX::UnderlyingSecurityDesc);
  171. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDescLen);
  172. FIELD_SET(*this, FIX::EncodedUnderlyingSecurityDesc);
  173. FIELD_SET(*this, FIX::UnderlyingCPProgram);
  174. FIELD_SET(*this, FIX::UnderlyingCPRegType);
  175. FIELD_SET(*this, FIX::UnderlyingAllocationPercent);
  176. FIELD_SET(*this, FIX::UnderlyingCurrency);
  177. FIELD_SET(*this, FIX::UnderlyingQty);
  178. FIELD_SET(*this, FIX::UnderlyingSettlementType);
  179. FIELD_SET(*this, FIX::UnderlyingCashAmount);
  180. FIELD_SET(*this, FIX::UnderlyingCashType);
  181. FIELD_SET(*this, FIX::UnderlyingPx);
  182. FIELD_SET(*this, FIX::UnderlyingDirtyPrice);
  183. FIELD_SET(*this, FIX::UnderlyingEndPrice);
  184. FIELD_SET(*this, FIX::UnderlyingStartValue);
  185. FIELD_SET(*this, FIX::UnderlyingCurrentValue);
  186. FIELD_SET(*this, FIX::UnderlyingEndValue);
  187. FIELD_SET(*this, FIX::UnderlyingAdjustedQuantity);
  188. FIELD_SET(*this, FIX::UnderlyingFXRate);
  189. FIELD_SET(*this, FIX::UnderlyingFXRateCalc);
  190. FIELD_SET(*this, FIX::UnderlyingCapValue);
  191. FIELD_SET(*this, FIX::UnderlyingSettlMethod);
  192. FIELD_SET(*this, FIX::UnderlyingPutOrCall);
  193. };
  194. FIELD_SET(*this, FIX::PrevClosePx);
  195. FIELD_SET(*this, FIX::QuoteRequestType);
  196. FIELD_SET(*this, FIX::QuoteType);
  197. FIELD_SET(*this, FIX::TradingSessionID);
  198. FIELD_SET(*this, FIX::TradingSessionSubID);
  199. FIELD_SET(*this, FIX::TradeOriginationDate);
  200. FIELD_SET(*this, FIX::Side);
  201. FIELD_SET(*this, FIX::QtyType);
  202. FIELD_SET(*this, FIX::OrderQty);
  203. FIELD_SET(*this, FIX::CashOrderQty);
  204. FIELD_SET(*this, FIX::OrderPercent);
  205. FIELD_SET(*this, FIX::RoundingDirection);
  206. FIELD_SET(*this, FIX::RoundingModulus);
  207. FIELD_SET(*this, FIX::SettlType);
  208. FIELD_SET(*this, FIX::SettlDate);
  209. FIELD_SET(*this, FIX::SettlDate2);
  210. FIELD_SET(*this, FIX::OrderQty2);
  211. FIELD_SET(*this, FIX::Currency);
  212. FIELD_SET(*this, FIX::NoStipulations);
  213. class NoStipulations: public FIX::Group
  214. {
  215. public:
  216. NoStipulations() : FIX::Group(232,233,FIX::message_order(233,234,0)) {}
  217. FIELD_SET(*this, FIX::StipulationType);
  218. FIELD_SET(*this, FIX::StipulationValue);
  219. };
  220. FIELD_SET(*this, FIX::Account);
  221. FIELD_SET(*this, FIX::AcctIDSource);
  222. FIELD_SET(*this, FIX::AccountType);
  223. FIELD_SET(*this, FIX::NoLegs);
  224. class NoLegs: public FIX::Group
  225. {
  226. public:
  227. NoLegs() : FIX::Group(555,600,FIX::message_order(600,601,602,603,607,608,609,764,610,611,1212,248,249,250,251,252,253,257,599,596,597,598,254,612,942,613,614,999,1224,1421,1422,1001,1420,615,616,617,618,619,620,621,622,623,624,556,740,739,955,956,1358,1017,687,685,690,587,588,683,539,676,677,678,679,680,654,0)) {}
  228. FIELD_SET(*this, FIX::LegSymbol);
  229. FIELD_SET(*this, FIX::LegSymbolSfx);
  230. FIELD_SET(*this, FIX::LegSecurityID);
  231. FIELD_SET(*this, FIX::LegSecurityIDSource);
  232. FIELD_SET(*this, FIX::LegProduct);
  233. FIELD_SET(*this, FIX::LegCFICode);
  234. FIELD_SET(*this, FIX::LegSecurityType);
  235. FIELD_SET(*this, FIX::LegSecuritySubType);
  236. FIELD_SET(*this, FIX::LegMaturityMonthYear);
  237. FIELD_SET(*this, FIX::LegMaturityDate);
  238. FIELD_SET(*this, FIX::LegMaturityTime);
  239. FIELD_SET(*this, FIX::LegCouponPaymentDate);
  240. FIELD_SET(*this, FIX::LegIssueDate);
  241. FIELD_SET(*this, FIX::LegRepoCollateralSecurityType);
  242. FIELD_SET(*this, FIX::LegRepurchaseTerm);
  243. FIELD_SET(*this, FIX::LegRepurchaseRate);
  244. FIELD_SET(*this, FIX::LegFactor);
  245. FIELD_SET(*this, FIX::LegCreditRating);
  246. FIELD_SET(*this, FIX::LegInstrRegistry);
  247. FIELD_SET(*this, FIX::LegCountryOfIssue);
  248. FIELD_SET(*this, FIX::LegStateOrProvinceOfIssue);
  249. FIELD_SET(*this, FIX::LegLocaleOfIssue);
  250. FIELD_SET(*this, FIX::LegRedemptionDate);
  251. FIELD_SET(*this, FIX::LegStrikePrice);
  252. FIELD_SET(*this, FIX::LegStrikeCurrency);
  253. FIELD_SET(*this, FIX::LegOptAttribute);
  254. FIELD_SET(*this, FIX::LegContractMultiplier);
  255. FIELD_SET(*this, FIX::LegUnitOfMeasure);
  256. FIELD_SET(*this, FIX::LegUnitOfMeasureQty);
  257. FIELD_SET(*this, FIX::LegPriceUnitOfMeasure);
  258. FIELD_SET(*this, FIX::LegPriceUnitOfMeasureQty);
  259. FIELD_SET(*this, FIX::LegTimeUnit);
  260. FIELD_SET(*this, FIX::LegExerciseStyle);
  261. FIELD_SET(*this, FIX::LegCouponRate);
  262. FIELD_SET(*this, FIX::LegSecurityExchange);
  263. FIELD_SET(*this, FIX::LegIssuer);
  264. FIELD_SET(*this, FIX::EncodedLegIssuerLen);
  265. FIELD_SET(*this, FIX::EncodedLegIssuer);
  266. FIELD_SET(*this, FIX::LegSecurityDesc);
  267. FIELD_SET(*this, FIX::EncodedLegSecurityDescLen);
  268. FIELD_SET(*this, FIX::EncodedLegSecurityDesc);
  269. FIELD_SET(*this, FIX::LegRatioQty);
  270. FIELD_SET(*this, FIX::LegSide);
  271. FIELD_SET(*this, FIX::LegCurrency);
  272. FIELD_SET(*this, FIX::LegPool);
  273. FIELD_SET(*this, FIX::LegDatedDate);
  274. FIELD_SET(*this, FIX::LegContractSettlMonth);
  275. FIELD_SET(*this, FIX::LegInterestAccrualDate);
  276. FIELD_SET(*this, FIX::LegPutOrCall);
  277. FIELD_SET(*this, FIX::LegOptionRatio);
  278. FIELD_SET(*this, FIX::LegQty);
  279. FIELD_SET(*this, FIX::LegOrderQty);
  280. FIELD_SET(*this, FIX::LegSwapType);
  281. FIELD_SET(*this, FIX::LegSettlType);
  282. FIELD_SET(*this, FIX::LegSettlDate);
  283. FIELD_SET(*this, FIX::NoLegStipulations);
  284. class NoLegStipulations: public FIX::Group
  285. {
  286. public:
  287. NoLegStipulations() : FIX::Group(683,688,FIX::message_order(688,689,0)) {}
  288. FIELD_SET(*this, FIX::LegStipulationType);
  289. FIELD_SET(*this, FIX::LegStipulationValue);
  290. };
  291. FIELD_SET(*this, FIX::NoNestedPartyIDs);
  292. class NoNestedPartyIDs: public FIX::Group
  293. {
  294. public:
  295. NoNestedPartyIDs() : FIX::Group(539,524,FIX::message_order(524,525,538,804,0)) {}
  296. FIELD_SET(*this, FIX::NestedPartyID);
  297. FIELD_SET(*this, FIX::NestedPartyIDSource);
  298. FIELD_SET(*this, FIX::NestedPartyRole);
  299. FIELD_SET(*this, FIX::NoNestedPartySubIDs);
  300. class NoNestedPartySubIDs: public FIX::Group
  301. {
  302. public:
  303. NoNestedPartySubIDs() : FIX::Group(804,545,FIX::message_order(545,805,0)) {}
  304. FIELD_SET(*this, FIX::NestedPartySubID);
  305. FIELD_SET(*this, FIX::NestedPartySubIDType);
  306. };
  307. };
  308. FIELD_SET(*this, FIX::LegBenchmarkCurveCurrency);
  309. FIELD_SET(*this, FIX::LegBenchmarkCurveName);
  310. FIELD_SET(*this, FIX::LegBenchmarkCurvePoint);
  311. FIELD_SET(*this, FIX::LegBenchmarkPrice);
  312. FIELD_SET(*this, FIX::LegBenchmarkPriceType);
  313. FIELD_SET(*this, FIX::LegRefID);
  314. };
  315. FIELD_SET(*this, FIX::NoQuoteQualifiers);
  316. class NoQuoteQualifiers: public FIX::Group
  317. {
  318. public:
  319. NoQuoteQualifiers() : FIX::Group(735,695,FIX::message_order(695,0)) {}
  320. FIELD_SET(*this, FIX::QuoteQualifier);
  321. };
  322. FIELD_SET(*this, FIX::QuotePriceType);
  323. FIELD_SET(*this, FIX::OrdType);
  324. FIELD_SET(*this, FIX::ExpireTime);
  325. FIELD_SET(*this, FIX::TransactTime);
  326. FIELD_SET(*this, FIX::Spread);
  327. FIELD_SET(*this, FIX::BenchmarkCurveCurrency);
  328. FIELD_SET(*this, FIX::BenchmarkCurveName);
  329. FIELD_SET(*this, FIX::BenchmarkCurvePoint);
  330. FIELD_SET(*this, FIX::BenchmarkPrice);
  331. FIELD_SET(*this, FIX::BenchmarkPriceType);
  332. FIELD_SET(*this, FIX::BenchmarkSecurityID);
  333. FIELD_SET(*this, FIX::BenchmarkSecurityIDSource);
  334. FIELD_SET(*this, FIX::PriceType);
  335. FIELD_SET(*this, FIX::Price);
  336. FIELD_SET(*this, FIX::Price2);
  337. FIELD_SET(*this, FIX::YieldType);
  338. FIELD_SET(*this, FIX::Yield);
  339. FIELD_SET(*this, FIX::YieldCalcDate);
  340. FIELD_SET(*this, FIX::YieldRedemptionDate);
  341. FIELD_SET(*this, FIX::YieldRedemptionPrice);
  342. FIELD_SET(*this, FIX::YieldRedemptionPriceType);
  343. FIELD_SET(*this, FIX::NoPartyIDs);
  344. class NoPartyIDs: public FIX::Group
  345. {
  346. public:
  347. NoPartyIDs() : FIX::Group(453,448,FIX::message_order(448,447,452,802,0)) {}
  348. FIELD_SET(*this, FIX::PartyID);
  349. FIELD_SET(*this, FIX::PartyIDSource);
  350. FIELD_SET(*this, FIX::PartyRole);
  351. FIELD_SET(*this, FIX::NoPartySubIDs);
  352. class NoPartySubIDs: public FIX::Group
  353. {
  354. public:
  355. NoPartySubIDs() : FIX::Group(802,523,FIX::message_order(523,803,0)) {}
  356. FIELD_SET(*this, FIX::PartySubID);
  357. FIELD_SET(*this, FIX::PartySubIDType);
  358. };
  359. };
  360. };
  361. FIELD_SET(*this, FIX::Text);
  362. FIELD_SET(*this, FIX::EncodedTextLen);
  363. FIELD_SET(*this, FIX::EncodedText);
  364. };
  365. }
  366. #endif