/// <summary>
 /// Deserializes xml markup from file into an UnitOfLength object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output UnitOfLength object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool LoadFromFile(string fileName, out UnitOfLength obj, out Exception exception)
 {
     exception = null;
     obj = default(UnitOfLength);
     try
     {
         obj = LoadFromFile(fileName);
         return true;
     }
     catch (Exception ex)
     {
         exception = ex;
         return false;
     }
 }
 public static bool LoadFromFile(string fileName, out UnitOfLength obj)
 {
     Exception exception = null;
     return LoadFromFile(fileName, out obj, out exception);
 }
 public static bool Deserialize(string input, out UnitOfLength obj)
 {
     Exception exception = null;
     return Deserialize(input, out obj, out exception);
 }
 /// <summary>
 /// Deserializes workflow markup into an UnitOfLength object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output UnitOfLength object</param>
 /// <param name="exception">output Exception value if deserialize failed</param>
 /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns>
 public static bool Deserialize(string input, out UnitOfLength obj, out Exception exception)
 {
     exception = null;
     obj = default(UnitOfLength);
     try
     {
         obj = Deserialize(input);
         return true;
     }
     catch (Exception ex)
     {
         exception = ex;
         return false;
     }
 }
 /// <summary>
 /// PackingLine class constructor
 /// </summary>
 public PackingLine()
 {
     _uNDGCollection = new List<UNDG>();
     _packingLineCollection = new List<PackingLine>();
     _packedItemCollection = new List<PackingLinePackedItem>();
     _customizedFieldCollection = new List<CustomizedField>();
     _weightUnit = new UnitOfWeight();
     _volumeUnit = new UnitOfVolume();
     _vehicle = new Vehicle();
     _requiredTemperatureUnit = new CodeDescriptionPair1Char();
     _portMessaging = new PortMessaging();
     _packType = new PackageType();
     _linePriceCurrency = new Currency();
     _lengthUnit = new UnitOfLength();
     _countryOfOrigin = new Country();
     _commodity = new Commodity();
     _billType = new WayBillType();
 }
 /// <summary>
 /// ShipmentContainerCollectionContainer class constructor
 /// </summary>
 public ShipmentContainerCollectionContainer()
 {
     _uNDGCollection = new List<UNDG>();
     _organizationAddressCollection = new List<OrganizationAddress>();
     _customsReferenceCollection = new List<CustomsReference>();
     _customizedFieldCollection = new List<CustomizedField>();
     _additionalServiceCollection = new List<AdditionalService>();
     _addInfoGroupCollection = new List<AddInfoGroup>();
     _addInfoCollection = new List<AddInfo>();
     _weightUnit = new UnitOfWeight();
     _volumeUnit = new UnitOfVolume();
     _messageStatus = new CodeDescriptionPair();
     _lengthUnit = new UnitOfLength();
     _goodsValueCurrency = new Currency();
     _fCL_LCL_AIR = new ContainerMode();
     _customsContainerSize = new CodeDescriptionPair2Char();
     _containerType = new ShipmentContainerCollectionContainerContainerType();
     _containerStatus = new CodeDescriptionPair();
     _containerQuality = new CodeDescriptionPair();
     _commodity = new Commodity();
     _airVentFlowRateUnit = new CodeDescriptionPair();
 }
 /// <summary>
 /// Confirmation class constructor
 /// </summary>
 public Confirmation()
 {
     _distanceUnit = new UnitOfLength();
 }