@payburner/payburner-payid-client
Version:
Client library for PayID
10 lines (9 loc) • 377 B
TypeScript
import { AddressDetailsType } from "./AddressDetailsType";
import { CryptoAddressDetails } from "./CryptoAddressDetails";
import { AchAddressDetails } from "./AchAddressDetails";
export interface Address {
paymentNetwork: string;
environment?: string;
addressDetailsType: AddressDetailsType;
addressDetails: CryptoAddressDetails | AchAddressDetails;
}