using System; using System.Xml; /********************************************************************************************** * Copyright (c) 2001-2018 Liquid Technologies Limited. All rights reserved. * See www.liquid-technologies.com for product details. * * Please see products End User License Agreement for distribution permissions. * * WARNING: THIS FILE IS GENERATED * Changes made outside of ##HAND_CODED_BLOCK_START blocks will be overwritten * * Generation : by Liquid XML Data Binder 16.0.2.8114 * Using Schema: D:\Development2018\Liquid\Tools\DataBindingSamples\Samples\SimpleHierarchy\Schema\SimpleHierarchy.xsd **********************************************************************************************/ namespace SimpleHierarchyLib { /// <summary> /// This class represents the ComplexType Vouchers /// </summary> [LiquidTechnologies.Runtime.Net45.XmlObjectInfo(LiquidTechnologies.Runtime.Net45.XmlObjectBase.XmlElementGroupType.Sequence, LiquidTechnologies.Runtime.Net45.XmlObjectBase.XmlElementType.Element, "Vouchers", "", true, false, LiquidTechnologies.Runtime.Net45.Conversions.ConversionType.type_none, null, false)] public partial class Vouchers : SimpleHierarchyLib.XmlCommonBase { #region Constructors /// <summary> /// Constructor for Vouchers /// </summary> /// <remarks> /// The class is created with all the mandatory fields populated with the /// default data. /// All Collection object are created. /// However any 1-n relationships (these are represented as collections) are /// empty. To comply with the schema these must be populated before the xml /// obtained from ToXml is valid against the schema D:\Development2018\Liquid\Tools\DataBindingSamples\Samples\SimpleHierarchy\Schema\SimpleHierarchy.xsd /// </remarks> public Vouchers() { _elementName = "Vouchers"; Init(); } public Vouchers(string elementName) { _elementName = elementName; Init(); } #endregion #region Initialization methods for the class /// <summary> /// Initializes the class /// </summary> /// <remarks> /// This creates all the mandatory fields (populated with the default data) /// All Collection object are created. /// However any 1-n relationships (these are represented as collections) are /// empty. To comply with the schema these must be populated before the xml /// obtained from ToXml is valid against the schema D:\Development2018\Liquid\Tools\DataBindingSamples\Samples\SimpleHierarchy\Schema\SimpleHierarchy.xsd. /// </remarks> protected override void Init() { SimpleHierarchyLib.Registration.iRegistrationIndicator = 0; // causes registration to take place m_VoucherNo = 0; m_VoucherValue = 0; // ##HAND_CODED_BLOCK_START ID="Additional Inits"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS // Add Additional initialization code here... // ##HAND_CODED_BLOCK_END ID="Additional Inits"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS } #endregion #region ICloneable Interface /// <summary> /// Allows the class to be copied /// </summary> /// <remarks> /// Performs a 'deep copy' of all the data in the class (and its children) /// </remarks> public override object Clone() { SimpleHierarchyLib.Vouchers newObject = new SimpleHierarchyLib.Vouchers(_elementName); newObject.m_VoucherNo = m_VoucherNo; newObject.m_VoucherValue = m_VoucherValue; // ##HAND_CODED_BLOCK_START ID="Additional clone"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS // Add Additional clone code here... // ##HAND_CODED_BLOCK_END ID="Additional clone"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS return newObject; } #endregion #region Member variables protected override string TargetNamespace { get { return ""; } } #region Attribute - VoucherNo /// <summary> /// Represents a mandatory Attribute in the XML document /// </summary> /// <remarks> /// This property is represented as an Attribute in the XML. /// It is mandatory and therefore must be populated within the XML. /// It is defaulted to 0. /// </remarks> [LiquidTechnologies.Runtime.Net45.AttributeInfoPrimitive("VoucherNo", "", LiquidTechnologies.Runtime.Net45.Conversions.ConversionType.type_ui8, null, LiquidTechnologies.Runtime.Net45.WhitespaceUtils.WhitespaceRule.Collapse, null, "", -1, -1, "", "", "", "", -1, -1, -1)] public ulong VoucherNo { get { return m_VoucherNo; } set { m_VoucherNo = value; } } protected ulong m_VoucherNo; #endregion #region Attribute - VoucherValue /// <summary> /// Represents a mandatory Attribute in the XML document /// </summary> /// <remarks> /// This property is represented as an Attribute in the XML. /// It is mandatory and therefore must be populated within the XML. /// It is defaulted to 0. /// </remarks> [LiquidTechnologies.Runtime.Net45.AttributeInfoPrimitive("VoucherValue", "", LiquidTechnologies.Runtime.Net45.Conversions.ConversionType.type_ui8, null, LiquidTechnologies.Runtime.Net45.WhitespaceUtils.WhitespaceRule.Collapse, null, "", -1, -1, "", "", "", "", -1, -1, -1)] public ulong VoucherValue { get { return m_VoucherValue; } set { m_VoucherValue = value; } } protected ulong m_VoucherValue; #endregion #region Attribute - Namespace public override string Namespace { get { return ""; } } #endregion #region Attribute - GetBase public override LiquidTechnologies.Runtime.Net45.XmlObjectBase GetBase() { return this; } #endregion #endregion // ##HAND_CODED_BLOCK_START ID="Additional Methods"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS // Add Additional Methods and members here... // ##HAND_CODED_BLOCK_END ID="Additional Methods"## DO NOT MODIFY ANYTHING OUTSIDE OF THESE TAGS } }