Advertisement
Guest User

Untitled

a guest
Jun 16th, 2020
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 38.11 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. //     Этот код создан программой.
  4. //     Исполняемая версия:4.0.30319.42000
  5. //
  6. //     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
  7. //     повторной генерации кода.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10.  
  11. using System.Xml.Serialization;
  12.  
  13. //
  14. // Этот исходный код был создан с помощью xsd, версия=4.8.3928.0.
  15. //
  16.  
  17.  
  18. /// <remarks/>
  19. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.8.3928.0")]
  20. [System.SerializableAttribute()]
  21. [System.Diagnostics.DebuggerStepThroughAttribute()]
  22. [System.ComponentModel.DesignerCategoryAttribute("code")]
  23. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  24. [System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
  25. public partial class document {
  26.    
  27.     private documentData[] itemsField;
  28.    
  29.     /// <remarks/>
  30.     [System.Xml.Serialization.XmlElementAttribute("data", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  31.     public documentData[] Items {
  32.         get {
  33.             return this.itemsField;
  34.         }
  35.         set {
  36.             this.itemsField = value;
  37.         }
  38.     }
  39. }
  40.  
  41. /// <remarks/>
  42. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.8.3928.0")]
  43. [System.SerializableAttribute()]
  44. [System.Diagnostics.DebuggerStepThroughAttribute()]
  45. [System.ComponentModel.DesignerCategoryAttribute("code")]
  46. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  47. public partial class documentData {
  48.    
  49.     private documentDataMetadataColumnsColumn[][][] metadataField;
  50.    
  51.     private documentDataRowsRow[][] rowsField;
  52.    
  53.     private string idField;
  54.    
  55.     /// <remarks/>
  56.     [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  57.     [System.Xml.Serialization.XmlArrayItemAttribute("columns", typeof(documentDataMetadataColumnsColumn[]), Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  58.     [System.Xml.Serialization.XmlArrayItemAttribute("column", typeof(documentDataMetadataColumnsColumn), Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false, NestingLevel=1)]
  59.     public documentDataMetadataColumnsColumn[][][] metadata {
  60.         get {
  61.             return this.metadataField;
  62.         }
  63.         set {
  64.             this.metadataField = value;
  65.         }
  66.     }
  67.    
  68.     /// <remarks/>
  69.     [System.Xml.Serialization.XmlArrayAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
  70.     [System.Xml.Serialization.XmlArrayItemAttribute("row", typeof(documentDataRowsRow), Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=false)]
  71.     public documentDataRowsRow[][] rows {
  72.         get {
  73.             return this.rowsField;
  74.         }
  75.         set {
  76.             this.rowsField = value;
  77.         }
  78.     }
  79.    
  80.     /// <remarks/>
  81.     [System.Xml.Serialization.XmlAttributeAttribute()]
  82.     public string id {
  83.         get {
  84.             return this.idField;
  85.         }
  86.         set {
  87.             this.idField = value;
  88.         }
  89.     }
  90. }
  91.  
  92. /// <remarks/>
  93. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.8.3928.0")]
  94. [System.SerializableAttribute()]
  95. [System.Diagnostics.DebuggerStepThroughAttribute()]
  96. [System.ComponentModel.DesignerCategoryAttribute("code")]
  97. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  98. public partial class documentDataMetadataColumnsColumn {
  99.    
  100.     private string nameField;
  101.    
  102.     private string typeField;
  103.    
  104.     private string bytesField;
  105.    
  106.     private string max_sizeField;
  107.    
  108.     /// <remarks/>
  109.     [System.Xml.Serialization.XmlAttributeAttribute()]
  110.     public string name {
  111.         get {
  112.             return this.nameField;
  113.         }
  114.         set {
  115.             this.nameField = value;
  116.         }
  117.     }
  118.    
  119.     /// <remarks/>
  120.     [System.Xml.Serialization.XmlAttributeAttribute()]
  121.     public string type {
  122.         get {
  123.             return this.typeField;
  124.         }
  125.         set {
  126.             this.typeField = value;
  127.         }
  128.     }
  129.    
  130.     /// <remarks/>
  131.     [System.Xml.Serialization.XmlAttributeAttribute()]
  132.     public string bytes {
  133.         get {
  134.             return this.bytesField;
  135.         }
  136.         set {
  137.             this.bytesField = value;
  138.         }
  139.     }
  140.    
  141.     /// <remarks/>
  142.     [System.Xml.Serialization.XmlAttributeAttribute()]
  143.     public string max_size {
  144.         get {
  145.             return this.max_sizeField;
  146.         }
  147.         set {
  148.             this.max_sizeField = value;
  149.         }
  150.     }
  151. }
  152.  
  153. /// <remarks/>
  154. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.8.3928.0")]
  155. [System.SerializableAttribute()]
  156. [System.Diagnostics.DebuggerStepThroughAttribute()]
  157. [System.ComponentModel.DesignerCategoryAttribute("code")]
  158. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
  159. public partial class documentDataRowsRow {
  160.    
  161.     private string sECIDField;
  162.    
  163.     private string bOARDIDField;
  164.    
  165.     private string sHORTNAMEField;
  166.    
  167.     private string pREVWAPRICEField;
  168.    
  169.     private string yIELDATPREVWAPRICEField;
  170.    
  171.     private string cOUPONVALUEField;
  172.    
  173.     private string nEXTCOUPONField;
  174.    
  175.     private string aCCRUEDINTField;
  176.    
  177.     private string pREVPRICEField;
  178.    
  179.     private string lOTSIZEField;
  180.    
  181.     private string fACEVALUEField;
  182.    
  183.     private string bOARDNAMEField;
  184.    
  185.     private string sTATUSField;
  186.    
  187.     private string mATDATEField;
  188.    
  189.     private string dECIMALSField;
  190.    
  191.     private string cOUPONPERIODField;
  192.    
  193.     private string iSSUESIZEField;
  194.    
  195.     private string pREVLEGALCLOSEPRICEField;
  196.    
  197.     private string pREVADMITTEDQUOTEField;
  198.    
  199.     private string pREVDATEField;
  200.    
  201.     private string sECNAMEField;
  202.    
  203.     private string rEMARKSField;
  204.    
  205.     private string mARKETCODEField;
  206.    
  207.     private string iNSTRIDField;
  208.    
  209.     private string sECTORIDField;
  210.    
  211.     private string mINSTEPField;
  212.    
  213.     private string fACEUNITField;
  214.    
  215.     private string bUYBACKPRICEField;
  216.    
  217.     private string bUYBACKDATEField;
  218.    
  219.     private string iSINField;
  220.    
  221.     private string lATNAMEField;
  222.    
  223.     private string rEGNUMBERField;
  224.    
  225.     private string cURRENCYIDField;
  226.    
  227.     private string iSSUESIZEPLACEDField;
  228.    
  229.     private string lISTLEVELField;
  230.    
  231.     private string sECTYPEField;
  232.    
  233.     private string cOUPONPERCENTField;
  234.    
  235.     private string oFFERDATEField;
  236.    
  237.     private string sETTLEDATEField;
  238.    
  239.     private string lOTVALUEField;
  240.    
  241.     private string bIDField;
  242.    
  243.     private string bIDDEPTHField;
  244.    
  245.     private string oFFERField;
  246.    
  247.     private string oFFERDEPTHField;
  248.    
  249.     private string sPREADField;
  250.    
  251.     private string bIDDEPTHTField;
  252.    
  253.     private string oFFERDEPTHTField;
  254.    
  255.     private string oPENField;
  256.    
  257.     private string lOWField;
  258.    
  259.     private string hIGHField;
  260.    
  261.     private string lASTField;
  262.    
  263.     private string lASTCHANGEField;
  264.    
  265.     private string lASTCHANGEPRCNTField;
  266.    
  267.     private string qTYField;
  268.    
  269.     private string vALUEField;
  270.    
  271.     private string yIELDField;
  272.    
  273.     private string vALUE_USDField;
  274.    
  275.     private string wAPRICEField;
  276.    
  277.     private string lASTCNGTOLASTWAPRICEField;
  278.    
  279.     private string wAPTOPREVWAPRICEPRCNTField;
  280.    
  281.     private string wAPTOPREVWAPRICEField;
  282.    
  283.     private string yIELDATWAPRICEField;
  284.    
  285.     private string yIELDTOPREVYIELDField;
  286.    
  287.     private string cLOSEYIELDField;
  288.    
  289.     private string cLOSEPRICEField;
  290.    
  291.     private string mARKETPRICETODAYField;
  292.    
  293.     private string mARKETPRICEField;
  294.    
  295.     private string lASTTOPREVPRICEField;
  296.    
  297.     private string nUMTRADESField;
  298.    
  299.     private string vOLTODAYField;
  300.    
  301.     private string vALTODAYField;
  302.    
  303.     private string vALTODAY_USDField;
  304.    
  305.     private string tRADINGSTATUSField;
  306.    
  307.     private string uPDATETIMEField;
  308.    
  309.     private string dURATIONField;
  310.    
  311.     private string nUMBIDSField;
  312.    
  313.     private string nUMOFFERSField;
  314.    
  315.     private string cHANGEField;
  316.    
  317.     private string tIMEField;
  318.    
  319.     private string hIGHBIDField;
  320.    
  321.     private string lOWOFFERField;
  322.    
  323.     private string pRICEMINUSPREVWAPRICEField;
  324.    
  325.     private string lASTBIDField;
  326.    
  327.     private string lASTOFFERField;
  328.    
  329.     private string lCURRENTPRICEField;
  330.    
  331.     private string lCLOSEPRICEField;
  332.    
  333.     private string mARKETPRICE2Field;
  334.    
  335.     private string aDMITTEDQUOTEField;
  336.    
  337.     private string oPENPERIODPRICEField;
  338.    
  339.     private string sEQNUMField;
  340.    
  341.     private string sYSTIMEField;
  342.    
  343.     private string vALTODAY_RURField;
  344.    
  345.     private string iRICPICLOSEField;
  346.    
  347.     private string bEICLOSEField;
  348.    
  349.     private string cBRCLOSEField;
  350.    
  351.     private string yIELDTOOFFERField;
  352.    
  353.     private string yIELDLASTCOUPONField;
  354.    
  355.     private string data_versionField;
  356.    
  357.     private string seqnumField;
  358.    
  359.     private string pRICEField;
  360.    
  361.     private string yIELDDATEField;
  362.    
  363.     private string zCYCMOMENTField;
  364.    
  365.     private string yIELDDATETYPEField;
  366.    
  367.     private string eFFECTIVEYIELDField;
  368.    
  369.     private string zSPREADBPField;
  370.    
  371.     private string gSPREADBPField;
  372.    
  373.     private string eFFECTIVEYIELDWAPRICEField;
  374.    
  375.     private string dURATIONWAPRICEField;
  376.    
  377.     private string irField;
  378.    
  379.     private string iCPIField;
  380.    
  381.     private string bEIField;
  382.    
  383.     private string cBRField;
  384.    
  385.     private string tRADEMOMENTField;
  386.    
  387.     /// <remarks/>
  388.     [System.Xml.Serialization.XmlAttributeAttribute()]
  389.     public string SECID {
  390.         get {
  391.             return this.sECIDField;
  392.         }
  393.         set {
  394.             this.sECIDField = value;
  395.         }
  396.     }
  397.    
  398.     /// <remarks/>
  399.     [System.Xml.Serialization.XmlAttributeAttribute()]
  400.     public string BOARDID {
  401.         get {
  402.             return this.bOARDIDField;
  403.         }
  404.         set {
  405.             this.bOARDIDField = value;
  406.         }
  407.     }
  408.    
  409.     /// <remarks/>
  410.     [System.Xml.Serialization.XmlAttributeAttribute()]
  411.     public string SHORTNAME {
  412.         get {
  413.             return this.sHORTNAMEField;
  414.         }
  415.         set {
  416.             this.sHORTNAMEField = value;
  417.         }
  418.     }
  419.    
  420.     /// <remarks/>
  421.     [System.Xml.Serialization.XmlAttributeAttribute()]
  422.     public string PREVWAPRICE {
  423.         get {
  424.             return this.pREVWAPRICEField;
  425.         }
  426.         set {
  427.             this.pREVWAPRICEField = value;
  428.         }
  429.     }
  430.    
  431.     /// <remarks/>
  432.     [System.Xml.Serialization.XmlAttributeAttribute()]
  433.     public string YIELDATPREVWAPRICE {
  434.         get {
  435.             return this.yIELDATPREVWAPRICEField;
  436.         }
  437.         set {
  438.             this.yIELDATPREVWAPRICEField = value;
  439.         }
  440.     }
  441.    
  442.     /// <remarks/>
  443.     [System.Xml.Serialization.XmlAttributeAttribute()]
  444.     public string COUPONVALUE {
  445.         get {
  446.             return this.cOUPONVALUEField;
  447.         }
  448.         set {
  449.             this.cOUPONVALUEField = value;
  450.         }
  451.     }
  452.    
  453.     /// <remarks/>
  454.     [System.Xml.Serialization.XmlAttributeAttribute()]
  455.     public string NEXTCOUPON {
  456.         get {
  457.             return this.nEXTCOUPONField;
  458.         }
  459.         set {
  460.             this.nEXTCOUPONField = value;
  461.         }
  462.     }
  463.    
  464.     /// <remarks/>
  465.     [System.Xml.Serialization.XmlAttributeAttribute()]
  466.     public string ACCRUEDINT {
  467.         get {
  468.             return this.aCCRUEDINTField;
  469.         }
  470.         set {
  471.             this.aCCRUEDINTField = value;
  472.         }
  473.     }
  474.    
  475.     /// <remarks/>
  476.     [System.Xml.Serialization.XmlAttributeAttribute()]
  477.     public string PREVPRICE {
  478.         get {
  479.             return this.pREVPRICEField;
  480.         }
  481.         set {
  482.             this.pREVPRICEField = value;
  483.         }
  484.     }
  485.    
  486.     /// <remarks/>
  487.     [System.Xml.Serialization.XmlAttributeAttribute()]
  488.     public string LOTSIZE {
  489.         get {
  490.             return this.lOTSIZEField;
  491.         }
  492.         set {
  493.             this.lOTSIZEField = value;
  494.         }
  495.     }
  496.    
  497.     /// <remarks/>
  498.     [System.Xml.Serialization.XmlAttributeAttribute()]
  499.     public string FACEVALUE {
  500.         get {
  501.             return this.fACEVALUEField;
  502.         }
  503.         set {
  504.             this.fACEVALUEField = value;
  505.         }
  506.     }
  507.    
  508.     /// <remarks/>
  509.     [System.Xml.Serialization.XmlAttributeAttribute()]
  510.     public string BOARDNAME {
  511.         get {
  512.             return this.bOARDNAMEField;
  513.         }
  514.         set {
  515.             this.bOARDNAMEField = value;
  516.         }
  517.     }
  518.    
  519.     /// <remarks/>
  520.     [System.Xml.Serialization.XmlAttributeAttribute()]
  521.     public string STATUS {
  522.         get {
  523.             return this.sTATUSField;
  524.         }
  525.         set {
  526.             this.sTATUSField = value;
  527.         }
  528.     }
  529.    
  530.     /// <remarks/>
  531.     [System.Xml.Serialization.XmlAttributeAttribute()]
  532.     public string MATDATE {
  533.         get {
  534.             return this.mATDATEField;
  535.         }
  536.         set {
  537.             this.mATDATEField = value;
  538.         }
  539.     }
  540.    
  541.     /// <remarks/>
  542.     [System.Xml.Serialization.XmlAttributeAttribute()]
  543.     public string DECIMALS {
  544.         get {
  545.             return this.dECIMALSField;
  546.         }
  547.         set {
  548.             this.dECIMALSField = value;
  549.         }
  550.     }
  551.    
  552.     /// <remarks/>
  553.     [System.Xml.Serialization.XmlAttributeAttribute()]
  554.     public string COUPONPERIOD {
  555.         get {
  556.             return this.cOUPONPERIODField;
  557.         }
  558.         set {
  559.             this.cOUPONPERIODField = value;
  560.         }
  561.     }
  562.    
  563.     /// <remarks/>
  564.     [System.Xml.Serialization.XmlAttributeAttribute()]
  565.     public string ISSUESIZE {
  566.         get {
  567.             return this.iSSUESIZEField;
  568.         }
  569.         set {
  570.             this.iSSUESIZEField = value;
  571.         }
  572.     }
  573.    
  574.     /// <remarks/>
  575.     [System.Xml.Serialization.XmlAttributeAttribute()]
  576.     public string PREVLEGALCLOSEPRICE {
  577.         get {
  578.             return this.pREVLEGALCLOSEPRICEField;
  579.         }
  580.         set {
  581.             this.pREVLEGALCLOSEPRICEField = value;
  582.         }
  583.     }
  584.    
  585.     /// <remarks/>
  586.     [System.Xml.Serialization.XmlAttributeAttribute()]
  587.     public string PREVADMITTEDQUOTE {
  588.         get {
  589.             return this.pREVADMITTEDQUOTEField;
  590.         }
  591.         set {
  592.             this.pREVADMITTEDQUOTEField = value;
  593.         }
  594.     }
  595.    
  596.     /// <remarks/>
  597.     [System.Xml.Serialization.XmlAttributeAttribute()]
  598.     public string PREVDATE {
  599.         get {
  600.             return this.pREVDATEField;
  601.         }
  602.         set {
  603.             this.pREVDATEField = value;
  604.         }
  605.     }
  606.    
  607.     /// <remarks/>
  608.     [System.Xml.Serialization.XmlAttributeAttribute()]
  609.     public string SECNAME {
  610.         get {
  611.             return this.sECNAMEField;
  612.         }
  613.         set {
  614.             this.sECNAMEField = value;
  615.         }
  616.     }
  617.    
  618.     /// <remarks/>
  619.     [System.Xml.Serialization.XmlAttributeAttribute()]
  620.     public string REMARKS {
  621.         get {
  622.             return this.rEMARKSField;
  623.         }
  624.         set {
  625.             this.rEMARKSField = value;
  626.         }
  627.     }
  628.    
  629.     /// <remarks/>
  630.     [System.Xml.Serialization.XmlAttributeAttribute()]
  631.     public string MARKETCODE {
  632.         get {
  633.             return this.mARKETCODEField;
  634.         }
  635.         set {
  636.             this.mARKETCODEField = value;
  637.         }
  638.     }
  639.    
  640.     /// <remarks/>
  641.     [System.Xml.Serialization.XmlAttributeAttribute()]
  642.     public string INSTRID {
  643.         get {
  644.             return this.iNSTRIDField;
  645.         }
  646.         set {
  647.             this.iNSTRIDField = value;
  648.         }
  649.     }
  650.    
  651.     /// <remarks/>
  652.     [System.Xml.Serialization.XmlAttributeAttribute()]
  653.     public string SECTORID {
  654.         get {
  655.             return this.sECTORIDField;
  656.         }
  657.         set {
  658.             this.sECTORIDField = value;
  659.         }
  660.     }
  661.    
  662.     /// <remarks/>
  663.     [System.Xml.Serialization.XmlAttributeAttribute()]
  664.     public string MINSTEP {
  665.         get {
  666.             return this.mINSTEPField;
  667.         }
  668.         set {
  669.             this.mINSTEPField = value;
  670.         }
  671.     }
  672.    
  673.     /// <remarks/>
  674.     [System.Xml.Serialization.XmlAttributeAttribute()]
  675.     public string FACEUNIT {
  676.         get {
  677.             return this.fACEUNITField;
  678.         }
  679.         set {
  680.             this.fACEUNITField = value;
  681.         }
  682.     }
  683.    
  684.     /// <remarks/>
  685.     [System.Xml.Serialization.XmlAttributeAttribute()]
  686.     public string BUYBACKPRICE {
  687.         get {
  688.             return this.bUYBACKPRICEField;
  689.         }
  690.         set {
  691.             this.bUYBACKPRICEField = value;
  692.         }
  693.     }
  694.    
  695.     /// <remarks/>
  696.     [System.Xml.Serialization.XmlAttributeAttribute()]
  697.     public string BUYBACKDATE {
  698.         get {
  699.             return this.bUYBACKDATEField;
  700.         }
  701.         set {
  702.             this.bUYBACKDATEField = value;
  703.         }
  704.     }
  705.    
  706.     /// <remarks/>
  707.     [System.Xml.Serialization.XmlAttributeAttribute()]
  708.     public string ISIN {
  709.         get {
  710.             return this.iSINField;
  711.         }
  712.         set {
  713.             this.iSINField = value;
  714.         }
  715.     }
  716.    
  717.     /// <remarks/>
  718.     [System.Xml.Serialization.XmlAttributeAttribute()]
  719.     public string LATNAME {
  720.         get {
  721.             return this.lATNAMEField;
  722.         }
  723.         set {
  724.             this.lATNAMEField = value;
  725.         }
  726.     }
  727.    
  728.     /// <remarks/>
  729.     [System.Xml.Serialization.XmlAttributeAttribute()]
  730.     public string REGNUMBER {
  731.         get {
  732.             return this.rEGNUMBERField;
  733.         }
  734.         set {
  735.             this.rEGNUMBERField = value;
  736.         }
  737.     }
  738.    
  739.     /// <remarks/>
  740.     [System.Xml.Serialization.XmlAttributeAttribute()]
  741.     public string CURRENCYID {
  742.         get {
  743.             return this.cURRENCYIDField;
  744.         }
  745.         set {
  746.             this.cURRENCYIDField = value;
  747.         }
  748.     }
  749.    
  750.     /// <remarks/>
  751.     [System.Xml.Serialization.XmlAttributeAttribute()]
  752.     public string ISSUESIZEPLACED {
  753.         get {
  754.             return this.iSSUESIZEPLACEDField;
  755.         }
  756.         set {
  757.             this.iSSUESIZEPLACEDField = value;
  758.         }
  759.     }
  760.    
  761.     /// <remarks/>
  762.     [System.Xml.Serialization.XmlAttributeAttribute()]
  763.     public string LISTLEVEL {
  764.         get {
  765.             return this.lISTLEVELField;
  766.         }
  767.         set {
  768.             this.lISTLEVELField = value;
  769.         }
  770.     }
  771.    
  772.     /// <remarks/>
  773.     [System.Xml.Serialization.XmlAttributeAttribute()]
  774.     public string SECTYPE {
  775.         get {
  776.             return this.sECTYPEField;
  777.         }
  778.         set {
  779.             this.sECTYPEField = value;
  780.         }
  781.     }
  782.    
  783.     /// <remarks/>
  784.     [System.Xml.Serialization.XmlAttributeAttribute()]
  785.     public string COUPONPERCENT {
  786.         get {
  787.             return this.cOUPONPERCENTField;
  788.         }
  789.         set {
  790.             this.cOUPONPERCENTField = value;
  791.         }
  792.     }
  793.    
  794.     /// <remarks/>
  795.     [System.Xml.Serialization.XmlAttributeAttribute()]
  796.     public string OFFERDATE {
  797.         get {
  798.             return this.oFFERDATEField;
  799.         }
  800.         set {
  801.             this.oFFERDATEField = value;
  802.         }
  803.     }
  804.    
  805.     /// <remarks/>
  806.     [System.Xml.Serialization.XmlAttributeAttribute()]
  807.     public string SETTLEDATE {
  808.         get {
  809.             return this.sETTLEDATEField;
  810.         }
  811.         set {
  812.             this.sETTLEDATEField = value;
  813.         }
  814.     }
  815.    
  816.     /// <remarks/>
  817.     [System.Xml.Serialization.XmlAttributeAttribute()]
  818.     public string LOTVALUE {
  819.         get {
  820.             return this.lOTVALUEField;
  821.         }
  822.         set {
  823.             this.lOTVALUEField = value;
  824.         }
  825.     }
  826.    
  827.     /// <remarks/>
  828.     [System.Xml.Serialization.XmlAttributeAttribute()]
  829.     public string BID {
  830.         get {
  831.             return this.bIDField;
  832.         }
  833.         set {
  834.             this.bIDField = value;
  835.         }
  836.     }
  837.    
  838.     /// <remarks/>
  839.     [System.Xml.Serialization.XmlAttributeAttribute()]
  840.     public string BIDDEPTH {
  841.         get {
  842.             return this.bIDDEPTHField;
  843.         }
  844.         set {
  845.             this.bIDDEPTHField = value;
  846.         }
  847.     }
  848.    
  849.     /// <remarks/>
  850.     [System.Xml.Serialization.XmlAttributeAttribute()]
  851.     public string OFFER {
  852.         get {
  853.             return this.oFFERField;
  854.         }
  855.         set {
  856.             this.oFFERField = value;
  857.         }
  858.     }
  859.    
  860.     /// <remarks/>
  861.     [System.Xml.Serialization.XmlAttributeAttribute()]
  862.     public string OFFERDEPTH {
  863.         get {
  864.             return this.oFFERDEPTHField;
  865.         }
  866.         set {
  867.             this.oFFERDEPTHField = value;
  868.         }
  869.     }
  870.    
  871.     /// <remarks/>
  872.     [System.Xml.Serialization.XmlAttributeAttribute()]
  873.     public string SPREAD {
  874.         get {
  875.             return this.sPREADField;
  876.         }
  877.         set {
  878.             this.sPREADField = value;
  879.         }
  880.     }
  881.    
  882.     /// <remarks/>
  883.     [System.Xml.Serialization.XmlAttributeAttribute()]
  884.     public string BIDDEPTHT {
  885.         get {
  886.             return this.bIDDEPTHTField;
  887.         }
  888.         set {
  889.             this.bIDDEPTHTField = value;
  890.         }
  891.     }
  892.    
  893.     /// <remarks/>
  894.     [System.Xml.Serialization.XmlAttributeAttribute()]
  895.     public string OFFERDEPTHT {
  896.         get {
  897.             return this.oFFERDEPTHTField;
  898.         }
  899.         set {
  900.             this.oFFERDEPTHTField = value;
  901.         }
  902.     }
  903.    
  904.     /// <remarks/>
  905.     [System.Xml.Serialization.XmlAttributeAttribute()]
  906.     public string OPEN {
  907.         get {
  908.             return this.oPENField;
  909.         }
  910.         set {
  911.             this.oPENField = value;
  912.         }
  913.     }
  914.    
  915.     /// <remarks/>
  916.     [System.Xml.Serialization.XmlAttributeAttribute()]
  917.     public string LOW {
  918.         get {
  919.             return this.lOWField;
  920.         }
  921.         set {
  922.             this.lOWField = value;
  923.         }
  924.     }
  925.    
  926.     /// <remarks/>
  927.     [System.Xml.Serialization.XmlAttributeAttribute()]
  928.     public string HIGH {
  929.         get {
  930.             return this.hIGHField;
  931.         }
  932.         set {
  933.             this.hIGHField = value;
  934.         }
  935.     }
  936.    
  937.     /// <remarks/>
  938.     [System.Xml.Serialization.XmlAttributeAttribute()]
  939.     public string LAST {
  940.         get {
  941.             return this.lASTField;
  942.         }
  943.         set {
  944.             this.lASTField = value;
  945.         }
  946.     }
  947.    
  948.     /// <remarks/>
  949.     [System.Xml.Serialization.XmlAttributeAttribute()]
  950.     public string LASTCHANGE {
  951.         get {
  952.             return this.lASTCHANGEField;
  953.         }
  954.         set {
  955.             this.lASTCHANGEField = value;
  956.         }
  957.     }
  958.    
  959.     /// <remarks/>
  960.     [System.Xml.Serialization.XmlAttributeAttribute()]
  961.     public string LASTCHANGEPRCNT {
  962.         get {
  963.             return this.lASTCHANGEPRCNTField;
  964.         }
  965.         set {
  966.             this.lASTCHANGEPRCNTField = value;
  967.         }
  968.     }
  969.    
  970.     /// <remarks/>
  971.     [System.Xml.Serialization.XmlAttributeAttribute()]
  972.     public string QTY {
  973.         get {
  974.             return this.qTYField;
  975.         }
  976.         set {
  977.             this.qTYField = value;
  978.         }
  979.     }
  980.    
  981.     /// <remarks/>
  982.     [System.Xml.Serialization.XmlAttributeAttribute()]
  983.     public string VALUE {
  984.         get {
  985.             return this.vALUEField;
  986.         }
  987.         set {
  988.             this.vALUEField = value;
  989.         }
  990.     }
  991.    
  992.     /// <remarks/>
  993.     [System.Xml.Serialization.XmlAttributeAttribute()]
  994.     public string YIELD {
  995.         get {
  996.             return this.yIELDField;
  997.         }
  998.         set {
  999.             this.yIELDField = value;
  1000.         }
  1001.     }
  1002.    
  1003.     /// <remarks/>
  1004.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1005.     public string VALUE_USD {
  1006.         get {
  1007.             return this.vALUE_USDField;
  1008.         }
  1009.         set {
  1010.             this.vALUE_USDField = value;
  1011.         }
  1012.     }
  1013.    
  1014.     /// <remarks/>
  1015.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1016.     public string WAPRICE {
  1017.         get {
  1018.             return this.wAPRICEField;
  1019.         }
  1020.         set {
  1021.             this.wAPRICEField = value;
  1022.         }
  1023.     }
  1024.    
  1025.     /// <remarks/>
  1026.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1027.     public string LASTCNGTOLASTWAPRICE {
  1028.         get {
  1029.             return this.lASTCNGTOLASTWAPRICEField;
  1030.         }
  1031.         set {
  1032.             this.lASTCNGTOLASTWAPRICEField = value;
  1033.         }
  1034.     }
  1035.    
  1036.     /// <remarks/>
  1037.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1038.     public string WAPTOPREVWAPRICEPRCNT {
  1039.         get {
  1040.             return this.wAPTOPREVWAPRICEPRCNTField;
  1041.         }
  1042.         set {
  1043.             this.wAPTOPREVWAPRICEPRCNTField = value;
  1044.         }
  1045.     }
  1046.    
  1047.     /// <remarks/>
  1048.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1049.     public string WAPTOPREVWAPRICE {
  1050.         get {
  1051.             return this.wAPTOPREVWAPRICEField;
  1052.         }
  1053.         set {
  1054.             this.wAPTOPREVWAPRICEField = value;
  1055.         }
  1056.     }
  1057.    
  1058.     /// <remarks/>
  1059.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1060.     public string YIELDATWAPRICE {
  1061.         get {
  1062.             return this.yIELDATWAPRICEField;
  1063.         }
  1064.         set {
  1065.             this.yIELDATWAPRICEField = value;
  1066.         }
  1067.     }
  1068.    
  1069.     /// <remarks/>
  1070.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1071.     public string YIELDTOPREVYIELD {
  1072.         get {
  1073.             return this.yIELDTOPREVYIELDField;
  1074.         }
  1075.         set {
  1076.             this.yIELDTOPREVYIELDField = value;
  1077.         }
  1078.     }
  1079.    
  1080.     /// <remarks/>
  1081.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1082.     public string CLOSEYIELD {
  1083.         get {
  1084.             return this.cLOSEYIELDField;
  1085.         }
  1086.         set {
  1087.             this.cLOSEYIELDField = value;
  1088.         }
  1089.     }
  1090.    
  1091.     /// <remarks/>
  1092.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1093.     public string CLOSEPRICE {
  1094.         get {
  1095.             return this.cLOSEPRICEField;
  1096.         }
  1097.         set {
  1098.             this.cLOSEPRICEField = value;
  1099.         }
  1100.     }
  1101.    
  1102.     /// <remarks/>
  1103.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1104.     public string MARKETPRICETODAY {
  1105.         get {
  1106.             return this.mARKETPRICETODAYField;
  1107.         }
  1108.         set {
  1109.             this.mARKETPRICETODAYField = value;
  1110.         }
  1111.     }
  1112.    
  1113.     /// <remarks/>
  1114.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1115.     public string MARKETPRICE {
  1116.         get {
  1117.             return this.mARKETPRICEField;
  1118.         }
  1119.         set {
  1120.             this.mARKETPRICEField = value;
  1121.         }
  1122.     }
  1123.    
  1124.     /// <remarks/>
  1125.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1126.     public string LASTTOPREVPRICE {
  1127.         get {
  1128.             return this.lASTTOPREVPRICEField;
  1129.         }
  1130.         set {
  1131.             this.lASTTOPREVPRICEField = value;
  1132.         }
  1133.     }
  1134.    
  1135.     /// <remarks/>
  1136.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1137.     public string NUMTRADES {
  1138.         get {
  1139.             return this.nUMTRADESField;
  1140.         }
  1141.         set {
  1142.             this.nUMTRADESField = value;
  1143.         }
  1144.     }
  1145.    
  1146.     /// <remarks/>
  1147.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1148.     public string VOLTODAY {
  1149.         get {
  1150.             return this.vOLTODAYField;
  1151.         }
  1152.         set {
  1153.             this.vOLTODAYField = value;
  1154.         }
  1155.     }
  1156.    
  1157.     /// <remarks/>
  1158.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1159.     public string VALTODAY {
  1160.         get {
  1161.             return this.vALTODAYField;
  1162.         }
  1163.         set {
  1164.             this.vALTODAYField = value;
  1165.         }
  1166.     }
  1167.    
  1168.     /// <remarks/>
  1169.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1170.     public string VALTODAY_USD {
  1171.         get {
  1172.             return this.vALTODAY_USDField;
  1173.         }
  1174.         set {
  1175.             this.vALTODAY_USDField = value;
  1176.         }
  1177.     }
  1178.    
  1179.     /// <remarks/>
  1180.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1181.     public string TRADINGSTATUS {
  1182.         get {
  1183.             return this.tRADINGSTATUSField;
  1184.         }
  1185.         set {
  1186.             this.tRADINGSTATUSField = value;
  1187.         }
  1188.     }
  1189.    
  1190.     /// <remarks/>
  1191.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1192.     public string UPDATETIME {
  1193.         get {
  1194.             return this.uPDATETIMEField;
  1195.         }
  1196.         set {
  1197.             this.uPDATETIMEField = value;
  1198.         }
  1199.     }
  1200.    
  1201.     /// <remarks/>
  1202.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1203.     public string DURATION {
  1204.         get {
  1205.             return this.dURATIONField;
  1206.         }
  1207.         set {
  1208.             this.dURATIONField = value;
  1209.         }
  1210.     }
  1211.    
  1212.     /// <remarks/>
  1213.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1214.     public string NUMBIDS {
  1215.         get {
  1216.             return this.nUMBIDSField;
  1217.         }
  1218.         set {
  1219.             this.nUMBIDSField = value;
  1220.         }
  1221.     }
  1222.    
  1223.     /// <remarks/>
  1224.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1225.     public string NUMOFFERS {
  1226.         get {
  1227.             return this.nUMOFFERSField;
  1228.         }
  1229.         set {
  1230.             this.nUMOFFERSField = value;
  1231.         }
  1232.     }
  1233.    
  1234.     /// <remarks/>
  1235.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1236.     public string CHANGE {
  1237.         get {
  1238.             return this.cHANGEField;
  1239.         }
  1240.         set {
  1241.             this.cHANGEField = value;
  1242.         }
  1243.     }
  1244.    
  1245.     /// <remarks/>
  1246.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1247.     public string TIME {
  1248.         get {
  1249.             return this.tIMEField;
  1250.         }
  1251.         set {
  1252.             this.tIMEField = value;
  1253.         }
  1254.     }
  1255.    
  1256.     /// <remarks/>
  1257.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1258.     public string HIGHBID {
  1259.         get {
  1260.             return this.hIGHBIDField;
  1261.         }
  1262.         set {
  1263.             this.hIGHBIDField = value;
  1264.         }
  1265.     }
  1266.    
  1267.     /// <remarks/>
  1268.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1269.     public string LOWOFFER {
  1270.         get {
  1271.             return this.lOWOFFERField;
  1272.         }
  1273.         set {
  1274.             this.lOWOFFERField = value;
  1275.         }
  1276.     }
  1277.    
  1278.     /// <remarks/>
  1279.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1280.     public string PRICEMINUSPREVWAPRICE {
  1281.         get {
  1282.             return this.pRICEMINUSPREVWAPRICEField;
  1283.         }
  1284.         set {
  1285.             this.pRICEMINUSPREVWAPRICEField = value;
  1286.         }
  1287.     }
  1288.    
  1289.     /// <remarks/>
  1290.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1291.     public string LASTBID {
  1292.         get {
  1293.             return this.lASTBIDField;
  1294.         }
  1295.         set {
  1296.             this.lASTBIDField = value;
  1297.         }
  1298.     }
  1299.    
  1300.     /// <remarks/>
  1301.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1302.     public string LASTOFFER {
  1303.         get {
  1304.             return this.lASTOFFERField;
  1305.         }
  1306.         set {
  1307.             this.lASTOFFERField = value;
  1308.         }
  1309.     }
  1310.    
  1311.     /// <remarks/>
  1312.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1313.     public string LCURRENTPRICE {
  1314.         get {
  1315.             return this.lCURRENTPRICEField;
  1316.         }
  1317.         set {
  1318.             this.lCURRENTPRICEField = value;
  1319.         }
  1320.     }
  1321.    
  1322.     /// <remarks/>
  1323.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1324.     public string LCLOSEPRICE {
  1325.         get {
  1326.             return this.lCLOSEPRICEField;
  1327.         }
  1328.         set {
  1329.             this.lCLOSEPRICEField = value;
  1330.         }
  1331.     }
  1332.    
  1333.     /// <remarks/>
  1334.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1335.     public string MARKETPRICE2 {
  1336.         get {
  1337.             return this.mARKETPRICE2Field;
  1338.         }
  1339.         set {
  1340.             this.mARKETPRICE2Field = value;
  1341.         }
  1342.     }
  1343.    
  1344.     /// <remarks/>
  1345.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1346.     public string ADMITTEDQUOTE {
  1347.         get {
  1348.             return this.aDMITTEDQUOTEField;
  1349.         }
  1350.         set {
  1351.             this.aDMITTEDQUOTEField = value;
  1352.         }
  1353.     }
  1354.    
  1355.     /// <remarks/>
  1356.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1357.     public string OPENPERIODPRICE {
  1358.         get {
  1359.             return this.oPENPERIODPRICEField;
  1360.         }
  1361.         set {
  1362.             this.oPENPERIODPRICEField = value;
  1363.         }
  1364.     }
  1365.    
  1366.     /// <remarks/>
  1367.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1368.     public string SEQNUM {
  1369.         get {
  1370.             return this.sEQNUMField;
  1371.         }
  1372.         set {
  1373.             this.sEQNUMField = value;
  1374.         }
  1375.     }
  1376.    
  1377.     /// <remarks/>
  1378.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1379.     public string SYSTIME {
  1380.         get {
  1381.             return this.sYSTIMEField;
  1382.         }
  1383.         set {
  1384.             this.sYSTIMEField = value;
  1385.         }
  1386.     }
  1387.    
  1388.     /// <remarks/>
  1389.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1390.     public string VALTODAY_RUR {
  1391.         get {
  1392.             return this.vALTODAY_RURField;
  1393.         }
  1394.         set {
  1395.             this.vALTODAY_RURField = value;
  1396.         }
  1397.     }
  1398.    
  1399.     /// <remarks/>
  1400.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1401.     public string IRICPICLOSE {
  1402.         get {
  1403.             return this.iRICPICLOSEField;
  1404.         }
  1405.         set {
  1406.             this.iRICPICLOSEField = value;
  1407.         }
  1408.     }
  1409.    
  1410.     /// <remarks/>
  1411.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1412.     public string BEICLOSE {
  1413.         get {
  1414.             return this.bEICLOSEField;
  1415.         }
  1416.         set {
  1417.             this.bEICLOSEField = value;
  1418.         }
  1419.     }
  1420.    
  1421.     /// <remarks/>
  1422.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1423.     public string CBRCLOSE {
  1424.         get {
  1425.             return this.cBRCLOSEField;
  1426.         }
  1427.         set {
  1428.             this.cBRCLOSEField = value;
  1429.         }
  1430.     }
  1431.    
  1432.     /// <remarks/>
  1433.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1434.     public string YIELDTOOFFER {
  1435.         get {
  1436.             return this.yIELDTOOFFERField;
  1437.         }
  1438.         set {
  1439.             this.yIELDTOOFFERField = value;
  1440.         }
  1441.     }
  1442.    
  1443.     /// <remarks/>
  1444.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1445.     public string YIELDLASTCOUPON {
  1446.         get {
  1447.             return this.yIELDLASTCOUPONField;
  1448.         }
  1449.         set {
  1450.             this.yIELDLASTCOUPONField = value;
  1451.         }
  1452.     }
  1453.    
  1454.     /// <remarks/>
  1455.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1456.     public string data_version {
  1457.         get {
  1458.             return this.data_versionField;
  1459.         }
  1460.         set {
  1461.             this.data_versionField = value;
  1462.         }
  1463.     }
  1464.    
  1465.     /// <remarks/>
  1466.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1467.     public string seqnum {
  1468.         get {
  1469.             return this.seqnumField;
  1470.         }
  1471.         set {
  1472.             this.seqnumField = value;
  1473.         }
  1474.     }
  1475.    
  1476.     /// <remarks/>
  1477.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1478.     public string PRICE {
  1479.         get {
  1480.             return this.pRICEField;
  1481.         }
  1482.         set {
  1483.             this.pRICEField = value;
  1484.         }
  1485.     }
  1486.    
  1487.     /// <remarks/>
  1488.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1489.     public string YIELDDATE {
  1490.         get {
  1491.             return this.yIELDDATEField;
  1492.         }
  1493.         set {
  1494.             this.yIELDDATEField = value;
  1495.         }
  1496.     }
  1497.    
  1498.     /// <remarks/>
  1499.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1500.     public string ZCYCMOMENT {
  1501.         get {
  1502.             return this.zCYCMOMENTField;
  1503.         }
  1504.         set {
  1505.             this.zCYCMOMENTField = value;
  1506.         }
  1507.     }
  1508.    
  1509.     /// <remarks/>
  1510.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1511.     public string YIELDDATETYPE {
  1512.         get {
  1513.             return this.yIELDDATETYPEField;
  1514.         }
  1515.         set {
  1516.             this.yIELDDATETYPEField = value;
  1517.         }
  1518.     }
  1519.    
  1520.     /// <remarks/>
  1521.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1522.     public string EFFECTIVEYIELD {
  1523.         get {
  1524.             return this.eFFECTIVEYIELDField;
  1525.         }
  1526.         set {
  1527.             this.eFFECTIVEYIELDField = value;
  1528.         }
  1529.     }
  1530.    
  1531.     /// <remarks/>
  1532.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1533.     public string ZSPREADBP {
  1534.         get {
  1535.             return this.zSPREADBPField;
  1536.         }
  1537.         set {
  1538.             this.zSPREADBPField = value;
  1539.         }
  1540.     }
  1541.    
  1542.     /// <remarks/>
  1543.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1544.     public string GSPREADBP {
  1545.         get {
  1546.             return this.gSPREADBPField;
  1547.         }
  1548.         set {
  1549.             this.gSPREADBPField = value;
  1550.         }
  1551.     }
  1552.    
  1553.     /// <remarks/>
  1554.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1555.     public string EFFECTIVEYIELDWAPRICE {
  1556.         get {
  1557.             return this.eFFECTIVEYIELDWAPRICEField;
  1558.         }
  1559.         set {
  1560.             this.eFFECTIVEYIELDWAPRICEField = value;
  1561.         }
  1562.     }
  1563.    
  1564.     /// <remarks/>
  1565.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1566.     public string DURATIONWAPRICE {
  1567.         get {
  1568.             return this.dURATIONWAPRICEField;
  1569.         }
  1570.         set {
  1571.             this.dURATIONWAPRICEField = value;
  1572.         }
  1573.     }
  1574.    
  1575.     /// <remarks/>
  1576.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1577.     public string IR {
  1578.         get {
  1579.             return this.irField;
  1580.         }
  1581.         set {
  1582.             this.irField = value;
  1583.         }
  1584.     }
  1585.    
  1586.     /// <remarks/>
  1587.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1588.     public string ICPI {
  1589.         get {
  1590.             return this.iCPIField;
  1591.         }
  1592.         set {
  1593.             this.iCPIField = value;
  1594.         }
  1595.     }
  1596.    
  1597.     /// <remarks/>
  1598.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1599.     public string BEI {
  1600.         get {
  1601.             return this.bEIField;
  1602.         }
  1603.         set {
  1604.             this.bEIField = value;
  1605.         }
  1606.     }
  1607.    
  1608.     /// <remarks/>
  1609.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1610.     public string CBR {
  1611.         get {
  1612.             return this.cBRField;
  1613.         }
  1614.         set {
  1615.             this.cBRField = value;
  1616.         }
  1617.     }
  1618.    
  1619.     /// <remarks/>
  1620.     [System.Xml.Serialization.XmlAttributeAttribute()]
  1621.     public string TRADEMOMENT {
  1622.         get {
  1623.             return this.tRADEMOMENTField;
  1624.         }
  1625.         set {
  1626.             this.tRADEMOMENTField = value;
  1627.         }
  1628.     }
  1629. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement