@payburner/payburner-payid-client-core
Version:
Models library for Core Payburner
10 lines • 405 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;
}
//# sourceMappingURL=Address.d.ts.map