All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.conekta.SpeiPayment Maven / Gradle / Ivy

package io.conekta;

import org.json.JSONObject;

/**
 *
 * @author mauricio
 */
public class SpeiPayment  extends PaymentMethod {

    public String clabe;
    public String tracking_code;
    public String bank;

    public SpeiPayment(JSONObject jsonObject) throws Error {
        super();

        try {
            this.clabe = jsonObject.getString("clabe");
            this.tracking_code = jsonObject.optString("tracking_code", "");
            this.bank = jsonObject.getString("bank");
        } catch (Exception e) {
            throw new Error(e.toString(), null, null, null, null);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy