public static bool LoadFromFile(string fileName, out CodeDescriptionPair1Char obj)
 {
     Exception exception = null;
     return LoadFromFile(fileName, out obj, out exception);
 }
 public static bool Deserialize(string input, out CodeDescriptionPair1Char obj)
 {
     Exception exception = null;
     return Deserialize(input, out obj, out exception);
 }
 /// <summary>
 /// Deserializes xml markup from file into an CodeDescriptionPair1Char object
 /// </summary>
 /// <param name="fileName">string xml file to load and deserialize</param>
 /// <param name="obj">Output CodeDescriptionPair1Char 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 CodeDescriptionPair1Char obj, out Exception exception)
 {
     exception = null;
     obj = default(CodeDescriptionPair1Char);
     try
     {
         obj = LoadFromFile(fileName);
         return true;
     }
     catch (Exception ex)
     {
         exception = ex;
         return false;
     }
 }
 /// <summary>
 /// Deserializes workflow markup into an CodeDescriptionPair1Char object
 /// </summary>
 /// <param name="input">string workflow markup to deserialize</param>
 /// <param name="obj">Output CodeDescriptionPair1Char 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 CodeDescriptionPair1Char obj, out Exception exception)
 {
     exception = null;
     obj = default(CodeDescriptionPair1Char);
     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>
 /// ShipmentCarrierDocumentsOverrideAWBHeaderRateLine class constructor
 /// </summary>
 public ShipmentCarrierDocumentsOverrideAWBHeaderRateLine()
 {
     _weightUnit = new CodeDescriptionPair1Char();
     _volume = new ShipmentCarrierDocumentsOverrideAWBHeaderRateLineVolume();
     _rateClass = new CodeDescriptionPair1Char();
     _natureAndQtyOfGoodsType = new CodeDescriptionPair1Char();
     _dimensions = new ShipmentCarrierDocumentsOverrideAWBHeaderRateLineDimensions();
     _countryOfOrigin = new Country();
 }
 /// <summary>
 /// ShipmentCarrierDocumentsOverrideAWBHeaderOtherCharges class constructor
 /// </summary>
 public ShipmentCarrierDocumentsOverrideAWBHeaderOtherCharges()
 {
     _prepaidCollect = new CodeDescriptionPair();
     _entitlementDue = new CodeDescriptionPair1Char();
     _chargeCode = new CodeDescriptionPair2Char();
 }
 /// <summary>
 /// CommercialInfoCommercialInvoiceCommercialInvoiceLineHazardousMaterial class constructor
 /// </summary>
 public CommercialInfoCommercialInvoiceCommercialInvoiceLineHazardousMaterial()
 {
     _uNDGCollection = new List<UNDG>();
     _codeType = new CodeDescriptionPair1Char();
 }