@payburner/payburner-payid-client
Version:
Client library for PayID
12 lines (11 loc) • 649 B
TypeScript
import { Address } from "../interfaces/Address";
import { CryptoAddressDetails } from "../interfaces/CryptoAddressDetails";
import { AchAddressDetails } from "../interfaces/AchAddressDetails";
import { AddressDetailsType } from "../interfaces/AddressDetailsType";
export declare class ResolvedAddress implements Address {
constructor(addressDetails: CryptoAddressDetails | AchAddressDetails, addressDetailsType: AddressDetailsType, network: string, environment?: string);
addressDetailsType: AddressDetailsType;
addressDetails: CryptoAddressDetails | AchAddressDetails;
environment?: string;
paymentNetwork: string;
}