Package in.juspay

Examples of in.juspay.PaymentService.initOrder()


        //InitOrder example calls
        InitOrderRequest request = new InitOrderRequest().withOrderId("" + System.currentTimeMillis())
                .withAmount(100.0)
                .withCustomerId("customer_id").withEmail("customer@shop.in");
        InitOrderResponse initOrderResponse = juspayService.initOrder(request);
        log.info("Init order response:  " + initOrderResponse);


        //AddCard example call
        AddCardRequest addCardRequest = new AddCardRequest().withNameOnCard("Customer Name")
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.