
com.mangopay.core.APIs.RegulatoryApi Maven / Gradle / Ivy
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