UNPKG

mangopay2-nodejs-sdk

Version:
17 lines (14 loc) 411 B
import { CountryISO } from "../types"; export namespace countryAuthorization { interface AuthorizationData { BlockUserCreation: boolean; BlockBankAccountCreation: boolean; BlockPayout: boolean; } interface CountryAuthorizationData { CountryCode: CountryISO; CountryName: string; Authorization: AuthorizationData; LastUpdate: number; } }