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

com.mangopay.entities.RecurringPaymentExtended Maven / Gradle / Ivy

The newest version!
package com.mangopay.entities;

import com.google.gson.annotations.SerializedName;

import java.lang.reflect.Type;
import java.util.Map;

public class RecurringPaymentExtended extends RecurringPayment {

    @SerializedName("CurrentState")
    private CurrentState currentState;

    public CurrentState getCurrentState() {
        return currentState;
    }

    @Override
    public Map getSubObjects() {
        Map result = super.getSubObjects();

        result.put("CurrentState", CurrentState.class);

        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy