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

com.mangopay.core.APIs.RegulatoryApi Maven / Gradle / Ivy

There is a newer version: 2.42.0
Show newest version
package com.mangopay.core.APIs;

import com.mangopay.core.Pagination;
import com.mangopay.core.Sorting;
import com.mangopay.core.enumerations.CountryIso;
import com.mangopay.entities.CountryAuthorization;

import java.util.List;

public interface RegulatoryApi {
    /**
     * View the restrictions for a specific country
     */
    CountryAuthorization getCountryAuthorizations(CountryIso countryCode) throws Exception;

    /**
     * View the restrictions of all the countries
     */
    List getAllCountriesAuthorizations(Pagination pagination, Sorting sorting) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy