Advertisement
jmawebtech

1ShoppingCart Class

Aug 6th, 2014
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 41.38 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. //     This code was generated by a tool.
  4. //     Runtime Version:4.0.30319.18052
  5. //
  6. //     Changes to this file may cause incorrect behavior and will be lost if
  7. //     the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10.  
  11. using System.Xml.Serialization;
  12.  
  13. //
  14. // This source code was auto-generated by xsd, Version=4.0.30319.17929.
  15. //
  16.  
  17. namespace OneShoppingCart.Core.Models
  18. {
  19.  
  20. /// <remarks/>
  21. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  22. [System.SerializableAttribute()]
  23. [System.Diagnostics.DebuggerStepThroughAttribute()]
  24. [System.ComponentModel.DesignerCategoryAttribute("code")]
  25. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  26. [System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = true)]
  27. public partial class ProductId
  28. {
  29.  
  30.     private string hrefField;
  31.  
  32.     private string valueField;
  33.  
  34.     /// <remarks/>
  35.     [System.Xml.Serialization.XmlAttributeAttribute()]
  36.     public string href
  37.     {
  38.         get
  39.         {
  40.             return this.hrefField;
  41.         }
  42.         set
  43.         {
  44.             this.hrefField = value;
  45.         }
  46.     }
  47.  
  48.     /// <remarks/>
  49.     [System.Xml.Serialization.XmlTextAttribute()]
  50.     public string Value
  51.     {
  52.         get
  53.         {
  54.             return this.valueField;
  55.         }
  56.         set
  57.         {
  58.             this.valueField = value;
  59.         }
  60.     }
  61. }
  62.  
  63. /// <remarks/>
  64. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  65. [System.SerializableAttribute()]
  66. [System.Diagnostics.DebuggerStepThroughAttribute()]
  67. [System.ComponentModel.DesignerCategoryAttribute("code")]
  68. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  69. public partial class Order
  70. {
  71.  
  72.     private string valueField;
  73.  
  74.     /// <remarks/>
  75.     [System.Xml.Serialization.XmlTextAttribute()]
  76.     public string Value
  77.     {
  78.         get
  79.         {
  80.             return this.valueField;
  81.         }
  82.         set
  83.         {
  84.             this.valueField = value;
  85.         }
  86.     }
  87. }
  88.  
  89. /// <remarks/>
  90. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  91. [System.SerializableAttribute()]
  92. [System.Diagnostics.DebuggerStepThroughAttribute()]
  93. [System.ComponentModel.DesignerCategoryAttribute("code")]
  94. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  95. [System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]
  96. public partial class Response
  97. {
  98.  
  99.     private OrderInfo[] orderInfoField;
  100.  
  101.     private OrderShippingProfileInfo[] orderShippingProfileInfoField;
  102.  
  103.     private string successField;
  104.  
  105.     public Order[] Orders { get; set; }
  106.  
  107.     private ClientInfo[] clientInfoField;
  108.  
  109.     private Error[] errorField;
  110.  
  111.     /// <remarks/>
  112.     [System.Xml.Serialization.XmlElementAttribute("ClientInfo", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  113.     public ClientInfo[] ClientInfo
  114.     {
  115.         get
  116.         {
  117.             return this.clientInfoField;
  118.         }
  119.         set
  120.         {
  121.             this.clientInfoField = value;
  122.         }
  123.     }
  124.  
  125.     /// <remarks/>
  126.     [System.Xml.Serialization.XmlElementAttribute("OrderInfo", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  127.     public OrderInfo[] OrderInfo
  128.     {
  129.         get
  130.         {
  131.             return this.orderInfoField;
  132.         }
  133.         set
  134.         {
  135.             this.orderInfoField = value;
  136.         }
  137.     }
  138.  
  139.     /// <remarks/>
  140.     [System.Xml.Serialization.XmlElementAttribute("OrderShippingProfileInfo", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  141.     public OrderShippingProfileInfo[] OrderShippingProfileInfo
  142.     {
  143.         get
  144.         {
  145.             return this.orderShippingProfileInfoField;
  146.         }
  147.         set
  148.         {
  149.             this.orderShippingProfileInfoField = value;
  150.         }
  151.     }
  152.  
  153.     /// <remarks/>
  154.     [System.Xml.Serialization.XmlAttributeAttribute()]
  155.     public string success
  156.     {
  157.         get
  158.         {
  159.             return this.successField;
  160.         }
  161.         set
  162.         {
  163.             this.successField = value;
  164.         }
  165.     }
  166.  
  167.     /// <remarks/>
  168.     [System.Xml.Serialization.XmlElementAttribute("Error", Form = System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable = true)]
  169.     public Error[] Error
  170.     {
  171.         get
  172.         {
  173.             return this.errorField;
  174.         }
  175.         set
  176.         {
  177.             this.errorField = value;
  178.         }
  179.     }
  180. }
  181.  
  182. /// <remarks/>
  183. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  184. [System.SerializableAttribute()]
  185. [System.Diagnostics.DebuggerStepThroughAttribute()]
  186. [System.ComponentModel.DesignerCategoryAttribute("code")]
  187. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  188. public partial class Error
  189. {
  190.  
  191.     private string codeField;
  192.  
  193.     private string valueField;
  194.  
  195.     /// <remarks/>
  196.     [System.Xml.Serialization.XmlAttributeAttribute()]
  197.     public string code
  198.     {
  199.         get
  200.         {
  201.             return this.codeField;
  202.         }
  203.         set
  204.         {
  205.             this.codeField = value;
  206.         }
  207.     }
  208.  
  209.     /// <remarks/>
  210.     [System.Xml.Serialization.XmlTextAttribute()]
  211.     public string Value
  212.     {
  213.         get
  214.         {
  215.             return this.valueField;
  216.         }
  217.         set
  218.         {
  219.             this.valueField = value;
  220.         }
  221.     }
  222. }
  223.  
  224. /// <remarks/>
  225. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  226. [System.SerializableAttribute()]
  227. [System.Diagnostics.DebuggerStepThroughAttribute()]
  228. [System.ComponentModel.DesignerCategoryAttribute("code")]
  229. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  230. public partial class ClientInfo
  231. {
  232.  
  233.     private string idField;
  234.  
  235.     private string merchantIdField;
  236.  
  237.     private string emailField;
  238.  
  239.     private string firstNameField;
  240.  
  241.     private string lastNameField;
  242.  
  243.     private string address1Field;
  244.  
  245.     private string cityField;
  246.  
  247.     private string zipField;
  248.  
  249.     private string stateNameField;
  250.  
  251.     private string countryNameField;
  252.  
  253.     private string phoneField;
  254.  
  255.     /// <remarks/>
  256.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  257.     public string Id
  258.     {
  259.         get
  260.         {
  261.             return this.idField;
  262.         }
  263.         set
  264.         {
  265.             this.idField = value;
  266.         }
  267.     }
  268.  
  269.     /// <remarks/>
  270.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  271.     public string MerchantId
  272.     {
  273.         get
  274.         {
  275.             return this.merchantIdField;
  276.         }
  277.         set
  278.         {
  279.             this.merchantIdField = value;
  280.         }
  281.     }
  282.  
  283.     /// <remarks/>
  284.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  285.     public string Email
  286.     {
  287.         get
  288.         {
  289.             return this.emailField;
  290.         }
  291.         set
  292.         {
  293.             this.emailField = value;
  294.         }
  295.     }
  296.  
  297.     /// <remarks/>
  298.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  299.     public string FirstName
  300.     {
  301.         get
  302.         {
  303.             return this.firstNameField;
  304.         }
  305.         set
  306.         {
  307.             this.firstNameField = value;
  308.         }
  309.     }
  310.  
  311.     /// <remarks/>
  312.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  313.     public string LastName
  314.     {
  315.         get
  316.         {
  317.             return this.lastNameField;
  318.         }
  319.         set
  320.         {
  321.             this.lastNameField = value;
  322.         }
  323.     }
  324.  
  325.     /// <remarks/>
  326.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  327.     public string Address1
  328.     {
  329.         get
  330.         {
  331.             return this.address1Field;
  332.         }
  333.         set
  334.         {
  335.             this.address1Field = value;
  336.         }
  337.     }
  338.  
  339.     /// <remarks/>
  340.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  341.     public string City
  342.     {
  343.         get
  344.         {
  345.             return this.cityField;
  346.         }
  347.         set
  348.         {
  349.             this.cityField = value;
  350.         }
  351.     }
  352.  
  353.     /// <remarks/>
  354.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  355.     public string Zip
  356.     {
  357.         get
  358.         {
  359.             return this.zipField;
  360.         }
  361.         set
  362.         {
  363.             this.zipField = value;
  364.         }
  365.     }
  366.  
  367.     /// <remarks/>
  368.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  369.     public string StateName
  370.     {
  371.         get
  372.         {
  373.             return this.stateNameField;
  374.         }
  375.         set
  376.         {
  377.             this.stateNameField = value;
  378.         }
  379.     }
  380.  
  381.     /// <remarks/>
  382.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  383.     public string CountryName
  384.     {
  385.         get
  386.         {
  387.             return this.countryNameField;
  388.         }
  389.         set
  390.         {
  391.             this.countryNameField = value;
  392.         }
  393.     }
  394.  
  395.     /// <remarks/>
  396.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  397.     public string Phone
  398.     {
  399.         get
  400.         {
  401.             return this.phoneField;
  402.         }
  403.         set
  404.         {
  405.             this.phoneField = value;
  406.         }
  407.     }
  408. }
  409.  
  410. /// <remarks/>
  411. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")]
  412. [System.SerializableAttribute()]
  413. [System.Diagnostics.DebuggerStepThroughAttribute()]
  414. [System.ComponentModel.DesignerCategoryAttribute("code")]
  415. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  416. public partial class OrderInfo
  417. {
  418.  
  419.     private string idField;
  420.  
  421.     private string tokenField;
  422.  
  423.     private string recurringOrderIdField;
  424.  
  425.     private string grandTotalField;
  426.  
  427.     private string orderPaymentTypeField;
  428.  
  429.     private string orderChargeStatusTypeField;
  430.  
  431.     private string orderStatusTypeField;
  432.  
  433.     private string pendingReasonTypeField;
  434.  
  435.     private string isArchivedField;
  436.  
  437.     private string orderDateField;
  438.  
  439.     private string modifiedAtField;
  440.  
  441.     private string modifiedFromIpField;
  442.  
  443.     private string approvalCodeField;
  444.  
  445.     private string adIdField;
  446.  
  447.     private string transactionIdField;
  448.  
  449.     private string orderBundlesField;
  450.  
  451.     private string shippingTaxesField;
  452.  
  453.     private string orderedAtField;
  454.  
  455.     private string billingCyclesChargedField;
  456.  
  457.     private string customFieldsField;
  458.  
  459.     private ClientId[] clientIdField;
  460.  
  461.     private LineItemInfo[] lineItemsField;
  462.  
  463.     private ShippingInfo[] shippingInfoField;
  464.  
  465.     private OrderDiscountInfo[] discountsField;
  466.  
  467.     /// <remarks/>
  468.     [System.Xml.Serialization.XmlArrayAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  469.     [System.Xml.Serialization.XmlArrayItemAttribute("OrderDiscountInfo", typeof(OrderDiscountInfo), Form = System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable = false)]
  470.     public OrderDiscountInfo[] Discounts
  471.     {
  472.         get
  473.         {
  474.             return this.discountsField;
  475.         }
  476.         set
  477.         {
  478.             this.discountsField = value;
  479.         }
  480.     }
  481.  
  482.     /// <remarks/>
  483.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  484.     public string Id
  485.     {
  486.         get
  487.         {
  488.             return this.idField;
  489.         }
  490.         set
  491.         {
  492.             this.idField = value;
  493.         }
  494.     }
  495.  
  496.     /// <remarks/>
  497.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  498.     public string Token
  499.     {
  500.         get
  501.         {
  502.             return this.tokenField;
  503.         }
  504.         set
  505.         {
  506.             this.tokenField = value;
  507.         }
  508.     }
  509.  
  510.     /// <remarks/>
  511.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  512.     public string RecurringOrderId
  513.     {
  514.         get
  515.         {
  516.             return this.recurringOrderIdField;
  517.         }
  518.         set
  519.         {
  520.             this.recurringOrderIdField = value;
  521.         }
  522.     }
  523.  
  524.     /// <remarks/>
  525.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  526.     public string GrandTotal
  527.     {
  528.         get
  529.         {
  530.             return this.grandTotalField;
  531.         }
  532.         set
  533.         {
  534.             this.grandTotalField = value;
  535.         }
  536.     }
  537.  
  538.     /// <remarks/>
  539.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  540.     public string OrderPaymentType
  541.     {
  542.         get
  543.         {
  544.             return this.orderPaymentTypeField;
  545.         }
  546.         set
  547.         {
  548.             this.orderPaymentTypeField = value;
  549.         }
  550.     }
  551.  
  552.     /// <remarks/>
  553.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  554.     public string OrderChargeStatusType
  555.     {
  556.         get
  557.         {
  558.             return this.orderChargeStatusTypeField;
  559.         }
  560.         set
  561.         {
  562.             this.orderChargeStatusTypeField = value;
  563.         }
  564.     }
  565.  
  566.     /// <remarks/>
  567.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  568.     public string OrderStatusType
  569.     {
  570.         get
  571.         {
  572.             return this.orderStatusTypeField;
  573.         }
  574.         set
  575.         {
  576.             this.orderStatusTypeField = value;
  577.         }
  578.     }
  579.  
  580.     /// <remarks/>
  581.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  582.     public string PendingReasonType
  583.     {
  584.         get
  585.         {
  586.             return this.pendingReasonTypeField;
  587.         }
  588.         set
  589.         {
  590.             this.pendingReasonTypeField = value;
  591.         }
  592.     }
  593.  
  594.     /// <remarks/>
  595.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  596.     public string IsArchived
  597.     {
  598.         get
  599.         {
  600.             return this.isArchivedField;
  601.         }
  602.         set
  603.         {
  604.             this.isArchivedField = value;
  605.         }
  606.     }
  607.  
  608.     /// <remarks/>
  609.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  610.     public string OrderDate
  611.     {
  612.         get
  613.         {
  614.             return this.orderDateField;
  615.         }
  616.         set
  617.         {
  618.             this.orderDateField = value;
  619.         }
  620.     }
  621.  
  622.     /// <remarks/>
  623.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  624.     public string ModifiedAt
  625.     {
  626.         get
  627.         {
  628.             return this.modifiedAtField;
  629.         }
  630.         set
  631.         {
  632.             this.modifiedAtField = value;
  633.         }
  634.     }
  635.  
  636.     /// <remarks/>
  637.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  638.     public string ModifiedFromIp
  639.     {
  640.         get
  641.         {
  642.             return this.modifiedFromIpField;
  643.         }
  644.         set
  645.         {
  646.             this.modifiedFromIpField = value;
  647.         }
  648.     }
  649.  
  650.     /// <remarks/>
  651.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  652.     public string ApprovalCode
  653.     {
  654.         get
  655.         {
  656.             return this.approvalCodeField;
  657.         }
  658.         set
  659.         {
  660.             this.approvalCodeField = value;
  661.         }
  662.     }
  663.  
  664.     /// <remarks/>
  665.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  666.     public string AdId
  667.     {
  668.         get
  669.         {
  670.             return this.adIdField;
  671.         }
  672.         set
  673.         {
  674.             this.adIdField = value;
  675.         }
  676.     }
  677.  
  678.     /// <remarks/>
  679.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  680.     public string TransactionId
  681.     {
  682.         get
  683.         {
  684.             return this.transactionIdField;
  685.         }
  686.         set
  687.         {
  688.             this.transactionIdField = value;
  689.         }
  690.     }
  691.  
  692.     /// <remarks/>
  693.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  694.     public string OrderBundles
  695.     {
  696.         get
  697.         {
  698.             return this.orderBundlesField;
  699.         }
  700.         set
  701.         {
  702.             this.orderBundlesField = value;
  703.         }
  704.     }
  705.  
  706.     /// <remarks/>
  707.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  708.     public string ShippingTaxes
  709.     {
  710.         get
  711.         {
  712.             return this.shippingTaxesField;
  713.         }
  714.         set
  715.         {
  716.             this.shippingTaxesField = value;
  717.         }
  718.     }
  719.  
  720.     /// <remarks/>
  721.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  722.     public string OrderedAt
  723.     {
  724.         get
  725.         {
  726.             return this.orderedAtField;
  727.         }
  728.         set
  729.         {
  730.             this.orderedAtField = value;
  731.         }
  732.     }
  733.  
  734.     /// <remarks/>
  735.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  736.     public string BillingCyclesCharged
  737.     {
  738.         get
  739.         {
  740.             return this.billingCyclesChargedField;
  741.         }
  742.         set
  743.         {
  744.             this.billingCyclesChargedField = value;
  745.         }
  746.     }
  747.  
  748.     /// <remarks/>
  749.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  750.     public string CustomFields
  751.     {
  752.         get
  753.         {
  754.             return this.customFieldsField;
  755.         }
  756.         set
  757.         {
  758.             this.customFieldsField = value;
  759.         }
  760.     }
  761.  
  762.     /// <remarks/>
  763.     [System.Xml.Serialization.XmlElementAttribute("ClientId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable = true)]
  764.     public ClientId[] ClientId
  765.     {
  766.         get
  767.         {
  768.             return this.clientIdField;
  769.         }
  770.         set
  771.         {
  772.             this.clientIdField = value;
  773.         }
  774.     }
  775.  
  776.     /// <remarks/>
  777.     [System.Xml.Serialization.XmlArrayAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  778.     [System.Xml.Serialization.XmlArrayItemAttribute("LineItemInfo", typeof(LineItemInfo), Form = System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable = false)]
  779.     public LineItemInfo[] LineItems
  780.     {
  781.         get
  782.         {
  783.             return this.lineItemsField;
  784.         }
  785.         set
  786.         {
  787.             this.lineItemsField = value;
  788.         }
  789.     }
  790.  
  791.     /// <remarks/>
  792.     [System.Xml.Serialization.XmlElementAttribute("ShippingInfo", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  793.     public ShippingInfo[] ShippingInfo
  794.     {
  795.         get
  796.         {
  797.             return this.shippingInfoField;
  798.         }
  799.         set
  800.         {
  801.             this.shippingInfoField = value;
  802.         }
  803.     }
  804.  
  805.     public ClientInfo ClientInfo { get; set; }
  806. }
  807.  
  808. /// <remarks/>
  809. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  810. [System.SerializableAttribute()]
  811. [System.Diagnostics.DebuggerStepThroughAttribute()]
  812. [System.ComponentModel.DesignerCategoryAttribute("code")]
  813. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  814. public partial class ClientId
  815. {
  816.  
  817.     private string hrefField;
  818.  
  819.     private string valueField;
  820.  
  821.     /// <remarks/>
  822.     [System.Xml.Serialization.XmlAttributeAttribute()]
  823.     public string href
  824.     {
  825.         get
  826.         {
  827.             return this.hrefField;
  828.         }
  829.         set
  830.         {
  831.             this.hrefField = value;
  832.         }
  833.     }
  834.  
  835.     /// <remarks/>
  836.     [System.Xml.Serialization.XmlTextAttribute()]
  837.     public string Value
  838.     {
  839.         get
  840.         {
  841.             return this.valueField;
  842.         }
  843.         set
  844.         {
  845.             this.valueField = value;
  846.         }
  847.     }
  848. }
  849.  
  850. /// <remarks/>
  851. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.18020")]
  852. [System.SerializableAttribute()]
  853. [System.Diagnostics.DebuggerStepThroughAttribute()]
  854. [System.ComponentModel.DesignerCategoryAttribute("code")]
  855. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  856. public partial class LineItemInfo
  857. {
  858.  
  859.     private string idField;
  860.  
  861.     private string orderIdField;
  862.  
  863.     private string quantityField;
  864.  
  865.     private string skuField;
  866.  
  867.     private string productNameField;
  868.  
  869.     private string productTypeField;
  870.  
  871.     private string unitPriceField;
  872.  
  873.     private string isRecurringField;
  874.  
  875.     private string isTaxableField;
  876.  
  877.     private string isCommissionableField;
  878.  
  879.     private string createdAtField;
  880.  
  881.     private string modifiedAtField;
  882.  
  883.     private string createdFromIpField;
  884.  
  885.     private string modifiedFromIpField;
  886.  
  887.     private string selectedOptionsField;
  888.  
  889.     private string productTaxesField;
  890.  
  891.     private string lineItemAttributeValuesField;
  892.  
  893.     private ProductId[] productIdField;
  894.  
  895.     //private OrderDiscountInfo[] discountsField;
  896.  
  897.     /// <remarks/>
  898.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  899.     public string Id
  900.     {
  901.         get
  902.         {
  903.             return this.idField;
  904.         }
  905.         set
  906.         {
  907.             this.idField = value;
  908.         }
  909.     }
  910.  
  911.     /// <remarks/>
  912.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  913.     public string OrderId
  914.     {
  915.         get
  916.         {
  917.             return this.orderIdField;
  918.         }
  919.         set
  920.         {
  921.             this.orderIdField = value;
  922.         }
  923.     }
  924.  
  925.     /// <remarks/>
  926.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  927.     public string Quantity
  928.     {
  929.         get
  930.         {
  931.             return this.quantityField;
  932.         }
  933.         set
  934.         {
  935.             this.quantityField = value;
  936.         }
  937.     }
  938.  
  939.     /// <remarks/>
  940.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  941.     public string Sku
  942.     {
  943.         get
  944.         {
  945.             return this.skuField;
  946.         }
  947.         set
  948.         {
  949.             this.skuField = value;
  950.         }
  951.     }
  952.  
  953.     /// <remarks/>
  954.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  955.     public string ProductName
  956.     {
  957.         get
  958.         {
  959.             return this.productNameField;
  960.         }
  961.         set
  962.         {
  963.             this.productNameField = value;
  964.         }
  965.     }
  966.  
  967.     /// <remarks/>
  968.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  969.     public string ProductType
  970.     {
  971.         get
  972.         {
  973.             return this.productTypeField;
  974.         }
  975.         set
  976.         {
  977.             this.productTypeField = value;
  978.         }
  979.     }
  980.  
  981.     /// <remarks/>
  982.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  983.     public string UnitPrice
  984.     {
  985.         get
  986.         {
  987.             return this.unitPriceField;
  988.         }
  989.         set
  990.         {
  991.             this.unitPriceField = value;
  992.         }
  993.     }
  994.  
  995.     /// <remarks/>
  996.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  997.     public string IsRecurring
  998.     {
  999.         get
  1000.         {
  1001.             return this.isRecurringField;
  1002.         }
  1003.         set
  1004.         {
  1005.             this.isRecurringField = value;
  1006.         }
  1007.     }
  1008.  
  1009.     /// <remarks/>
  1010.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1011.     public string IsTaxable
  1012.     {
  1013.         get
  1014.         {
  1015.             return this.isTaxableField;
  1016.         }
  1017.         set
  1018.         {
  1019.             this.isTaxableField = value;
  1020.         }
  1021.     }
  1022.  
  1023.     ///// <remarks/>
  1024.     //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1025.     //public string IsCommissionable
  1026.     //{
  1027.     //    get
  1028.     //    {
  1029.     //        return this.isCommissionableField;
  1030.     //    }
  1031.     //    set
  1032.     //    {
  1033.     //        this.isCommissionableField = value;
  1034.     //    }
  1035.     //}
  1036.  
  1037.     ///// <remarks/>
  1038.     //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1039.     //public string CreatedAt
  1040.     //{
  1041.     //    get
  1042.     //    {
  1043.     //        return this.createdAtField;
  1044.     //    }
  1045.     //    set
  1046.     //    {
  1047.     //        this.createdAtField = value;
  1048.     //    }
  1049.     //}
  1050.  
  1051.     ///// <remarks/>
  1052.     //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1053.     //public string ModifiedAt
  1054.     //{
  1055.     //    get
  1056.     //    {
  1057.     //        return this.modifiedAtField;
  1058.     //    }
  1059.     //    set
  1060.     //    {
  1061.     //        this.modifiedAtField = value;
  1062.     //    }
  1063.     //}
  1064.  
  1065.     ///// <remarks/>
  1066.     //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1067.     //public string CreatedFromIp
  1068.     //{
  1069.     //    get
  1070.     //    {
  1071.     //        return this.createdFromIpField;
  1072.     //    }
  1073.     //    set
  1074.     //    {
  1075.     //        this.createdFromIpField = value;
  1076.     //    }
  1077.     //}
  1078.  
  1079.     ///// <remarks/>
  1080.     //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1081.     //public string ModifiedFromIp
  1082.     //{
  1083.     //    get
  1084.     //    {
  1085.     //        return this.modifiedFromIpField;
  1086.     //    }
  1087.     //    set
  1088.     //    {
  1089.     //        this.modifiedFromIpField = value;
  1090.     //    }
  1091.     //}
  1092.  
  1093.     ///// <remarks/>
  1094.     //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1095.     //public string SelectedOptions
  1096.     //{
  1097.     //    get
  1098.     //    {
  1099.     //        return this.selectedOptionsField;
  1100.     //    }
  1101.     //    set
  1102.     //    {
  1103.     //        this.selectedOptionsField = value;
  1104.     //    }
  1105.     //}
  1106.  
  1107.     /// <remarks/>
  1108.     //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1109.     //public string ProductTaxes
  1110.     //{
  1111.     //    get
  1112.     //    {
  1113.     //        return this.productTaxesField;
  1114.     //    }
  1115.     //    set
  1116.     //    {
  1117.     //        this.productTaxesField = value;
  1118.     //    }
  1119.     //}
  1120.  
  1121.     ///// <remarks/>
  1122.     //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1123.     //public string LineItemAttributeValues
  1124.     //{
  1125.     //    get
  1126.     //    {
  1127.     //        return this.lineItemAttributeValuesField;
  1128.     //    }
  1129.     //    set
  1130.     //    {
  1131.     //        this.lineItemAttributeValuesField = value;
  1132.     //    }
  1133.     //}
  1134.  
  1135.     ///// <remarks/>
  1136.     //[System.Xml.Serialization.XmlElementAttribute("ProductId", Form = System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable = true)]
  1137.     //public ResponseOrderInfoLineItemsLineItemInfoProductId[] ProductId
  1138.     //{
  1139.     //    get
  1140.     //    {
  1141.     //        return this.productIdField;
  1142.     //    }
  1143.     //    set
  1144.     //    {
  1145.     //        this.productIdField = value;
  1146.     //    }
  1147.     //}
  1148.  
  1149.     /// <remarks/>
  1150.     //[System.Xml.Serialization.XmlArrayAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1151.     //[System.Xml.Serialization.XmlArrayItemAttribute("OrderDiscountInfo", typeof(OrderDiscountInfo), Form = System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable = false)]
  1152.     //public OrderDiscountInfo[] Discounts
  1153.     //{
  1154.     //    get
  1155.     //    {
  1156.     //        return this.discountsField;
  1157.     //    }
  1158.     //    set
  1159.     //    {
  1160.     //        this.discountsField = value;
  1161.     //    }
  1162.     //}
  1163. }
  1164.  
  1165. /// <remarks/>
  1166. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  1167. [System.SerializableAttribute()]
  1168. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1169. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1170. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  1171. public partial class ProductTaxInfo
  1172. {
  1173.  
  1174.     private string productTaxIdField;
  1175.  
  1176.     private string merchantTaxIdField;
  1177.  
  1178.     private string taxRateField;
  1179.  
  1180.     private string taxLabelField;
  1181.  
  1182.     private string taxAmountField;
  1183.  
  1184.     private string lineItemIdField;
  1185.  
  1186.     private string taxTypeField;
  1187.  
  1188.     private ProductId[] productIdField;
  1189.  
  1190.     /// <remarks/>
  1191.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1192.     public string ProductTaxId
  1193.     {
  1194.         get
  1195.         {
  1196.             return this.productTaxIdField;
  1197.         }
  1198.         set
  1199.         {
  1200.             this.productTaxIdField = value;
  1201.         }
  1202.     }
  1203.  
  1204.     /// <remarks/>
  1205.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1206.     public string MerchantTaxId
  1207.     {
  1208.         get
  1209.         {
  1210.             return this.merchantTaxIdField;
  1211.         }
  1212.         set
  1213.         {
  1214.             this.merchantTaxIdField = value;
  1215.         }
  1216.     }
  1217.  
  1218.     /// <remarks/>
  1219.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1220.     public string TaxRate
  1221.     {
  1222.         get
  1223.         {
  1224.             return this.taxRateField;
  1225.         }
  1226.         set
  1227.         {
  1228.             this.taxRateField = value;
  1229.         }
  1230.     }
  1231.  
  1232.     /// <remarks/>
  1233.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1234.     public string TaxLabel
  1235.     {
  1236.         get
  1237.         {
  1238.             return this.taxLabelField;
  1239.         }
  1240.         set
  1241.         {
  1242.             this.taxLabelField = value;
  1243.         }
  1244.     }
  1245.  
  1246.     /// <remarks/>
  1247.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1248.     public string TaxAmount
  1249.     {
  1250.         get
  1251.         {
  1252.             return this.taxAmountField;
  1253.         }
  1254.         set
  1255.         {
  1256.             this.taxAmountField = value;
  1257.         }
  1258.     }
  1259.  
  1260.     /// <remarks/>
  1261.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1262.     public string LineItemId
  1263.     {
  1264.         get
  1265.         {
  1266.             return this.lineItemIdField;
  1267.         }
  1268.         set
  1269.         {
  1270.             this.lineItemIdField = value;
  1271.         }
  1272.     }
  1273.  
  1274.     /// <remarks/>
  1275.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1276.     public string TaxType
  1277.     {
  1278.         get
  1279.         {
  1280.             return this.taxTypeField;
  1281.         }
  1282.         set
  1283.         {
  1284.             this.taxTypeField = value;
  1285.         }
  1286.     }
  1287.  
  1288.     /// <remarks/>
  1289.     [System.Xml.Serialization.XmlElementAttribute("ProductId", IsNullable = true)]
  1290.     public ProductId[] ProductId
  1291.     {
  1292.         get
  1293.         {
  1294.             return this.productIdField;
  1295.         }
  1296.         set
  1297.         {
  1298.             this.productIdField = value;
  1299.         }
  1300.     }
  1301. }
  1302.  
  1303. /// <remarks/>
  1304. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  1305. [System.SerializableAttribute()]
  1306. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1307. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1308. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  1309. public partial class OrderDiscountInfo
  1310. {
  1311.  
  1312.     private string idField;
  1313.  
  1314.     private string orderIdField;
  1315.  
  1316.     private string discountTypeField;
  1317.  
  1318.     private string priceAdjustmentTypeField;
  1319.  
  1320.     private string discountCalculationAmountField;
  1321.  
  1322.     private string isExclusiveField;
  1323.  
  1324.     private string syncDiscountTotalField;
  1325.  
  1326.     /// <remarks/>
  1327.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1328.     public string Id
  1329.     {
  1330.         get
  1331.         {
  1332.             return this.idField;
  1333.         }
  1334.         set
  1335.         {
  1336.             this.idField = value;
  1337.         }
  1338.     }
  1339.  
  1340.     /// <remarks/>
  1341.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1342.     public string OrderId
  1343.     {
  1344.         get
  1345.         {
  1346.             return this.orderIdField;
  1347.         }
  1348.         set
  1349.         {
  1350.             this.orderIdField = value;
  1351.         }
  1352.     }
  1353.  
  1354.     /// <remarks/>
  1355.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1356.     public string DiscountType
  1357.     {
  1358.         get
  1359.         {
  1360.             return this.discountTypeField;
  1361.         }
  1362.         set
  1363.         {
  1364.             this.discountTypeField = value;
  1365.         }
  1366.     }
  1367.  
  1368.     /// <remarks/>
  1369.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1370.     public string PriceAdjustmentType
  1371.     {
  1372.         get
  1373.         {
  1374.             return this.priceAdjustmentTypeField;
  1375.         }
  1376.         set
  1377.         {
  1378.             this.priceAdjustmentTypeField = value;
  1379.         }
  1380.     }
  1381.  
  1382.     /// <remarks/>
  1383.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1384.     public string DiscountCalculationAmount
  1385.     {
  1386.         get
  1387.         {
  1388.             return this.discountCalculationAmountField;
  1389.         }
  1390.         set
  1391.         {
  1392.             this.discountCalculationAmountField = value;
  1393.         }
  1394.     }
  1395.  
  1396.     /// <remarks/>
  1397.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1398.     public string IsExclusive
  1399.     {
  1400.         get
  1401.         {
  1402.             return this.isExclusiveField;
  1403.         }
  1404.         set
  1405.         {
  1406.             this.isExclusiveField = value;
  1407.         }
  1408.     }
  1409.  
  1410.     /// <remarks/>
  1411.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1412.     public string SyncDiscountTotal
  1413.     {
  1414.         get
  1415.         {
  1416.             return this.syncDiscountTotalField;
  1417.         }
  1418.         set
  1419.         {
  1420.             this.syncDiscountTotalField = value;
  1421.         }
  1422.     }
  1423. }
  1424.  
  1425. /// <remarks/>
  1426. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  1427. [System.SerializableAttribute()]
  1428. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1429. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1430. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  1431. public partial class ShippingInfo
  1432. {
  1433.  
  1434.     private string idField;
  1435.  
  1436.     private string shippingMethodIdField;
  1437.  
  1438.     private string shipperNameField;
  1439.  
  1440.     private string shippingMethodNameField;
  1441.  
  1442.     private string shippingAmountField;
  1443.  
  1444.     private string trackingNumberField;
  1445.  
  1446.     /// <remarks/>
  1447.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1448.     public string Id
  1449.     {
  1450.         get
  1451.         {
  1452.             return this.idField;
  1453.         }
  1454.         set
  1455.         {
  1456.             this.idField = value;
  1457.         }
  1458.     }
  1459.  
  1460.     /// <remarks/>
  1461.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1462.     public string ShippingMethodId
  1463.     {
  1464.         get
  1465.         {
  1466.             return this.shippingMethodIdField;
  1467.         }
  1468.         set
  1469.         {
  1470.             this.shippingMethodIdField = value;
  1471.         }
  1472.     }
  1473.  
  1474.     /// <remarks/>
  1475.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1476.     public string ShipperName
  1477.     {
  1478.         get
  1479.         {
  1480.             return this.shipperNameField;
  1481.         }
  1482.         set
  1483.         {
  1484.             this.shipperNameField = value;
  1485.         }
  1486.     }
  1487.  
  1488.     /// <remarks/>
  1489.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1490.     public string ShippingMethodName
  1491.     {
  1492.         get
  1493.         {
  1494.             return this.shippingMethodNameField;
  1495.         }
  1496.         set
  1497.         {
  1498.             this.shippingMethodNameField = value;
  1499.         }
  1500.     }
  1501.  
  1502.     /// <remarks/>
  1503.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1504.     public string ShippingAmount
  1505.     {
  1506.         get
  1507.         {
  1508.             return this.shippingAmountField;
  1509.         }
  1510.         set
  1511.         {
  1512.             this.shippingAmountField = value;
  1513.         }
  1514.     }
  1515.  
  1516.     /// <remarks/>
  1517.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1518.     public string TrackingNumber
  1519.     {
  1520.         get
  1521.         {
  1522.             return this.trackingNumberField;
  1523.         }
  1524.         set
  1525.         {
  1526.             this.trackingNumberField = value;
  1527.         }
  1528.     }
  1529. }
  1530.  
  1531. /// <remarks/>
  1532. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  1533. [System.SerializableAttribute()]
  1534. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1535. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1536. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  1537. public partial class TaxInfo
  1538. {
  1539.  
  1540.     private string merchantTaxIdField;
  1541.  
  1542.     private string taxRateField;
  1543.  
  1544.     private string taxLabelField;
  1545.  
  1546.     private string taxAmountField;
  1547.  
  1548.     private string taxTypeField;
  1549.  
  1550.     /// <remarks/>
  1551.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1552.     public string MerchantTaxId
  1553.     {
  1554.         get
  1555.         {
  1556.             return this.merchantTaxIdField;
  1557.         }
  1558.         set
  1559.         {
  1560.             this.merchantTaxIdField = value;
  1561.         }
  1562.     }
  1563.  
  1564.     /// <remarks/>
  1565.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1566.     public string TaxRate
  1567.     {
  1568.         get
  1569.         {
  1570.             return this.taxRateField;
  1571.         }
  1572.         set
  1573.         {
  1574.             this.taxRateField = value;
  1575.         }
  1576.     }
  1577.  
  1578.     /// <remarks/>
  1579.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1580.     public string TaxLabel
  1581.     {
  1582.         get
  1583.         {
  1584.             return this.taxLabelField;
  1585.         }
  1586.         set
  1587.         {
  1588.             this.taxLabelField = value;
  1589.         }
  1590.     }
  1591.  
  1592.     /// <remarks/>
  1593.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1594.     public string TaxAmount
  1595.     {
  1596.         get
  1597.         {
  1598.             return this.taxAmountField;
  1599.         }
  1600.         set
  1601.         {
  1602.             this.taxAmountField = value;
  1603.         }
  1604.     }
  1605.  
  1606.     /// <remarks/>
  1607.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1608.     public string TaxType
  1609.     {
  1610.         get
  1611.         {
  1612.             return this.taxTypeField;
  1613.         }
  1614.         set
  1615.         {
  1616.             this.taxTypeField = value;
  1617.         }
  1618.     }
  1619. }
  1620.  
  1621. /// <remarks/>
  1622. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.17929")]
  1623. [System.SerializableAttribute()]
  1624. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1625. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1626. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true)]
  1627. public partial class OrderShippingProfileInfo
  1628. {
  1629.  
  1630.     private string idField;
  1631.  
  1632.     private string nameField;
  1633.  
  1634.     private string address1Field;
  1635.  
  1636.     private string cityField;
  1637.  
  1638.     private string zipField;
  1639.  
  1640.     private string stateNameField;
  1641.  
  1642.     private string countryNameField;
  1643.  
  1644.     private string isResidentialField;
  1645.  
  1646.     /// <remarks/>
  1647.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1648.     public string Id
  1649.     {
  1650.         get
  1651.         {
  1652.             return this.idField;
  1653.         }
  1654.         set
  1655.         {
  1656.             this.idField = value;
  1657.         }
  1658.     }
  1659.  
  1660.     /// <remarks/>
  1661.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1662.     public string Name
  1663.     {
  1664.         get
  1665.         {
  1666.             return this.nameField;
  1667.         }
  1668.         set
  1669.         {
  1670.             this.nameField = value;
  1671.         }
  1672.     }
  1673.  
  1674.     /// <remarks/>
  1675.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1676.     public string Address1
  1677.     {
  1678.         get
  1679.         {
  1680.             return this.address1Field;
  1681.         }
  1682.         set
  1683.         {
  1684.             this.address1Field = value;
  1685.         }
  1686.     }
  1687.  
  1688.     /// <remarks/>
  1689.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1690.     public string City
  1691.     {
  1692.         get
  1693.         {
  1694.             return this.cityField;
  1695.         }
  1696.         set
  1697.         {
  1698.             this.cityField = value;
  1699.         }
  1700.     }
  1701.  
  1702.     /// <remarks/>
  1703.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1704.     public string Zip
  1705.     {
  1706.         get
  1707.         {
  1708.             return this.zipField;
  1709.         }
  1710.         set
  1711.         {
  1712.             this.zipField = value;
  1713.         }
  1714.     }
  1715.  
  1716.     /// <remarks/>
  1717.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1718.     public string StateName
  1719.     {
  1720.         get
  1721.         {
  1722.             return this.stateNameField;
  1723.         }
  1724.         set
  1725.         {
  1726.             this.stateNameField = value;
  1727.         }
  1728.     }
  1729.  
  1730.     /// <remarks/>
  1731.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1732.     public string CountryName
  1733.     {
  1734.         get
  1735.         {
  1736.             return this.countryNameField;
  1737.         }
  1738.         set
  1739.         {
  1740.             this.countryNameField = value;
  1741.         }
  1742.     }
  1743.  
  1744.     /// <remarks/>
  1745.     [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  1746.     public string IsResidential
  1747.     {
  1748.         get
  1749.         {
  1750.             return this.isResidentialField;
  1751.         }
  1752.         set
  1753.         {
  1754.             this.isResidentialField = value;
  1755.         }
  1756.     }
  1757. }
  1758.  
  1759. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement