//------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
// 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
{
[System.CodeDom.Compiler.GeneratedCodeAttribute("XmlSchemaClassGenerator", "3.0.1270.0")]
[System.SerializableAttribute()]
[System.Xml.Serialization.XmlTypeAttribute("TradeCardBasicInfo", Namespace="http://schemas.nav.gov.hu/EKAER/1.0/ekaermanagement")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class TradeCardBasicInfo : IBasicInfoElementsGroup
{
///
/// Bejelentéshez tartozó TCN szám!
/// TCN number. TCN azonsító szám ami egy szállítmányhoz tartozó tételt egyértelműen azonosít!
/// Pattern: [A-Z0-9]{2,20}.
///
[System.ComponentModel.DescriptionAttribute("Bejelentéshez tartozó TCN szám!")]
[System.ComponentModel.DataAnnotations.RegularExpressionAttribute("[A-Z0-9]{2,20}")]
[System.ComponentModel.DataAnnotations.RequiredAttribute(AllowEmptyStrings=true)]
[System.Xml.Serialization.XmlElementAttribute("tcn")]
public string Tcn { get; set; }
///
/// Adószám, a bejelentéskor, server állítja be!
/// Pattern: [0-9A-Z\-]{1,15}.
///
[System.ComponentModel.DescriptionAttribute("Adószám, a bejelentéskor, server állítja be!")]
[System.ComponentModel.DataAnnotations.RegularExpressionAttribute("[0-9A-Z\\-]{1,15}")]
[System.Xml.Serialization.XmlElementAttribute("VATNumber")]
public string VatNumber { get; set; }
///
/// Adóazonosító jel! Bejelentés rögzítésnél
/// Pattern: [0-9A-Z\-]{1,15}.
///
[System.ComponentModel.DescriptionAttribute("Adóazonosító jel! Bejelentés rögzítésnél")]
[System.ComponentModel.DataAnnotations.RegularExpressionAttribute("[0-9A-Z\\-]{1,15}")]
[System.Xml.Serialization.XmlElementAttribute("taxIdentifier")]
public string TaxIdentifier { get; set; }
///
/// Bejelentési lap státusza
///
[System.ComponentModel.DescriptionAttribute("Bejelentési lap státusza")]
[System.ComponentModel.DataAnnotations.RequiredAttribute(AllowEmptyStrings=true)]
[System.Xml.Serialization.XmlElementAttribute("status")]
public AyCode.Services.Nav.Ekaer.Models.Common.TradeCardStatusType Status { get; set; }
///
/// Teljes tömeg KG-ban. Out paraméter
///
[System.ComponentModel.DescriptionAttribute("Teljes tömeg KG-ban. Out paraméter")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Xml.Serialization.XmlElementAttribute("totalWeight")]
public decimal TotalWeightValue { get; set; }
///
/// Gets or sets a value indicating whether the TotalWeight property is specified.
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public bool TotalWeightValueSpecified { get; set; }
///
/// Teljes tömeg KG-ban. Out paraméter
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
public System.Nullable TotalWeight
{
get
{
if (this.TotalWeightValueSpecified)
{
return this.TotalWeightValue;
}
else
{
return null;
}
}
set
{
this.TotalWeightValue = value.GetValueOrDefault();
this.TotalWeightValueSpecified = value.HasValue;
}
}
///
/// Teljes érték HUF-ban. Out paraméter
///
[System.ComponentModel.DescriptionAttribute("Teljes érték HUF-ban. Out paraméter")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Xml.Serialization.XmlElementAttribute("totalValue")]
public decimal TotalValueValue { get; set; }
///
/// Gets or sets a value indicating whether the TotalValue property is specified.
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public bool TotalValueValueSpecified { get; set; }
///
/// Teljes érték HUF-ban. Out paraméter
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
public System.Nullable TotalValue
{
get
{
if (this.TotalValueValueSpecified)
{
return this.TotalValueValue;
}
else
{
return null;
}
}
set
{
this.TotalValueValue = value.GetValueOrDefault();
this.TotalValueValueSpecified = value.HasValue;
}
}
///
/// Teljes zárolási érték HUF-ban, ami az adott bejelentőhöz köthető
///
[System.ComponentModel.DescriptionAttribute("Teljes zárolási érték HUF-ban, ami az adott bejelentőhöz köthető")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Xml.Serialization.XmlElementAttribute("totalAssuranceLocked")]
public decimal TotalAssuranceLockedValue { get; set; }
///
/// Gets or sets a value indicating whether the TotalAssuranceLocked property is specified.
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public bool TotalAssuranceLockedValueSpecified { get; set; }
///
/// Teljes zárolási érték HUF-ban, ami az adott bejelentőhöz köthető
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
public System.Nullable TotalAssuranceLocked
{
get
{
if (this.TotalAssuranceLockedValueSpecified)
{
return this.TotalAssuranceLockedValue;
}
else
{
return null;
}
}
set
{
this.TotalAssuranceLockedValue = value.GetValueOrDefault();
this.TotalAssuranceLockedValueSpecified = value.HasValue;
}
}
///
/// Véglegesítés időpontja. Csak ha véglegesítve van a bejelentő.
///
[System.ComponentModel.DescriptionAttribute("Véglegesítés időpontja. Csak ha véglegesítve van a bejelentő.")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Xml.Serialization.XmlElementAttribute("finalizationTime", DataType="date")]
public System.DateTime FinalizationTimeValue { get; set; }
///
/// Gets or sets a value indicating whether the FinalizationTime property is specified.
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public bool FinalizationTimeValueSpecified { get; set; }
///
/// Véglegesítés időpontja. Csak ha véglegesítve van a bejelentő.
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
public System.Nullable FinalizationTime
{
get
{
if (this.FinalizationTimeValueSpecified)
{
return this.FinalizationTimeValue;
}
else
{
return null;
}
}
set
{
this.FinalizationTimeValue = value.GetValueOrDefault();
this.FinalizationTimeValueSpecified = value.HasValue;
}
}
///
/// Rekord beszúrásának időpontja!
///
[System.ComponentModel.DescriptionAttribute("Rekord beszúrásának időpontja!")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Xml.Serialization.XmlElementAttribute("insDate", DataType="dateTime")]
public System.DateTime InsDateValue { get; set; }
///
/// Gets or sets a value indicating whether the InsDate property is specified.
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public bool InsDateValueSpecified { get; set; }
///
/// Rekord beszúrásának időpontja!
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
public System.Nullable InsDate
{
get
{
if (this.InsDateValueSpecified)
{
return this.InsDateValue;
}
else
{
return null;
}
}
set
{
this.InsDateValue = value.GetValueOrDefault();
this.InsDateValueSpecified = value.HasValue;
}
}
///
/// Az EKAER szám érvényességének kezdete!
///
[System.ComponentModel.DescriptionAttribute("Az EKAER szám érvényességének kezdete!")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Xml.Serialization.XmlElementAttribute("tcnValidityStart", DataType="date")]
public System.DateTime TcnValidityStartValue { get; set; }
///
/// Gets or sets a value indicating whether the TcnValidityStart property is specified.
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public bool TcnValidityStartValueSpecified { get; set; }
///
/// Az EKAER szám érvényességének kezdete!
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
public System.Nullable TcnValidityStart
{
get
{
if (this.TcnValidityStartValueSpecified)
{
return this.TcnValidityStartValue;
}
else
{
return null;
}
}
set
{
this.TcnValidityStartValue = value.GetValueOrDefault();
this.TcnValidityStartValueSpecified = value.HasValue;
}
}
///
/// Az EKAER szám érvényességének vége
///
[System.ComponentModel.DescriptionAttribute("Az EKAER szám érvényességének vége")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Xml.Serialization.XmlElementAttribute("tcnValidityEnd", DataType="date")]
public System.DateTime TcnValidityEndValue { get; set; }
///
/// Gets or sets a value indicating whether the TcnValidityEnd property is specified.
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public bool TcnValidityEndValueSpecified { get; set; }
///
/// Az EKAER szám érvényességének vége
///
[System.Xml.Serialization.XmlIgnoreAttribute()]
public System.Nullable TcnValidityEnd
{
get
{
if (this.TcnValidityEndValueSpecified)
{
return this.TcnValidityEndValue;
}
else
{
return null;
}
}
set
{
this.TcnValidityEndValue = value.GetValueOrDefault();
this.TcnValidityEndValueSpecified = value.HasValue;
}
}
///
/// Létrehozó user! EKAER felhasználó user azonosító.
/// Maximum length: 30.
/// Pattern: [a-zA-Z0-9\-@\.]{6,30}.
///
[System.ComponentModel.DescriptionAttribute("Létrehozó user! EKAER felhasználó user azonosító.")]
[System.ComponentModel.DataAnnotations.MaxLengthAttribute(30)]
[System.ComponentModel.DataAnnotations.RegularExpressionAttribute("[a-zA-Z0-9\\-@\\.]{6,30}")]
[System.Xml.Serialization.XmlElementAttribute("insUser")]
public string InsUser { get; set; }
///
/// Módosítást végző user! EKAER felhasználó user azonosító.
/// Maximum length: 30.
/// Pattern: [a-zA-Z0-9\-@\.]{6,30}.
///
[System.ComponentModel.DescriptionAttribute("Módosítást végző user! EKAER felhasználó user azonosító.")]
[System.ComponentModel.DataAnnotations.MaxLengthAttribute(30)]
[System.ComponentModel.DataAnnotations.RegularExpressionAttribute("[a-zA-Z0-9\\-@\\.]{6,30}")]
[System.Xml.Serialization.XmlElementAttribute("modUser")]
public string ModUser { get; set; }
}
}