UNPKG

@payburner/payburner-payid-client

Version:
10 lines (9 loc) 377 B
import { AddressDetailsType } from "./AddressDetailsType"; import { CryptoAddressDetails } from "./CryptoAddressDetails"; import { AchAddressDetails } from "./AchAddressDetails"; export interface Address { paymentNetwork: string; environment?: string; addressDetailsType: AddressDetailsType; addressDetails: CryptoAddressDetails | AchAddressDetails; }