Examples of MasterCardLineItem


Examples of com.mes.sdk.gateway.Level3.MasterCardLineItem

        .setParameter("invoice_number", "123456")
        .setParameter("client_reference_number", "Java SDK Test")
       
        // Add two line items
        .addLineItem(
          new MasterCardLineItem()
            .itemDescription("Carbon Dioxide")
            .productCode("equipment")
            .quantity(1)
            .unitOfMeasure("EA")
            .altTaxIdentifier("000000000000000")
            .taxRateApplied("5.0")
            .taxTypeApplied("STAT")
            .taxAmount("17.32")
            .discountIndicator(DiscountInd.N)
            .netGrossIndicator(NetGrossInd.N)
            .extendedItemAmount("346.46")
            .debitOrCreditIndicator(DebitCreditInd.D)
            .discountAmount("0.00")
        )
        .addLineItem(
          new MasterCardLineItem()
            .itemDescription("Carbon Monoxide")
            .productCode("equipment")
            .quantity(1)
            .unitOfMeasure("EA")
            .altTaxIdentifier("000000000000000")
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.