public static void profileTransAmountType(profileTransAmountType argument)
 {
     if (null != argument)
     {
         extendedAmountType(argument.tax);
         extendedAmountType(argument.shipping);
         extendedAmountType(argument.duty);
         if (null != argument.lineItems) { foreach (var value in argument.lineItems) { lineItemType(value); } }
     }
 }
 public static void profileTransAmountType(profileTransAmountType request)
 {
     if (null != request)
     {
         lineItemType(request.lineItems);
     }
 }