AyCode.Core/AyCode.Services/Nav/Ekaer/Models/ManageTradeCardsRequest.cs

56 lines
2.8 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
// This code was generated by XmlSchemaClassGenerator version 3.0.1270.0 using the following command:
// xscgen --namespace http://schemas.nav.gov.hu/EKAER/1.0/ekaermanagement=AyCode.Services.Nav.Ekaer.Models --namespace http://schemas.nav.gov.hu/EKAER/1.0/common=AyCode.Services.Nav.Ekaer.Models.Common --nullable --separateFiles --output C:/Users/Fullepi/Downloads/ekaer/Generated2 C:/Users/Fullepi/Downloads/ekaer/ekaermanagement.xsd
namespace AyCode.Services.Nav.Ekaer.Models
{
/// <summary>
/// <para>POST /manageTradeCards operation! Request element structure</para>
/// </summary>
[System.ComponentModel.DescriptionAttribute("POST /manageTradeCards operation! Request element structure")]
[System.CodeDom.Compiler.GeneratedCodeAttribute("XmlSchemaClassGenerator", "3.0.1270.0")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute("manageTradeCardsRequest", Namespace="http://schemas.nav.gov.hu/EKAER/1.0/ekaermanagement")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlRootAttribute("manageTradeCardsRequest", Namespace="http://schemas.nav.gov.hu/EKAER/1.0/ekaermanagement")]
public partial class ManageTradeCardsRequest : BasicRequestType
{
[System.Xml.Serialization.XmlIgnoreAttribute()]
private System.Collections.ObjectModel.Collection<TradeCardOperationType> _tradeCardOperations;
[System.ComponentModel.DataAnnotations.RequiredAttribute(AllowEmptyStrings=true)]
[System.Xml.Serialization.XmlArrayAttribute("tradeCardOperations")]
[System.Xml.Serialization.XmlArrayItemAttribute("tradeCardOperation", Namespace="http://schemas.nav.gov.hu/EKAER/1.0/ekaermanagement")]
public System.Collections.ObjectModel.Collection<TradeCardOperationType> TradeCardOperations
{
get
{
return _tradeCardOperations;
}
private set
{
_tradeCardOperations = value;
}
}
/// <summary>
/// <para xml:lang="en">Initializes a new instance of the <see cref="ManageTradeCardsRequest" /> class.</para>
/// </summary>
public ManageTradeCardsRequest()
{
this._tradeCardOperations = new System.Collections.ObjectModel.Collection<TradeCardOperationType>();
}
}
}