InterfacesnotePayString was previously known as PayID.See also: PayString API Reference.The PayString protocol includes the following interface definitions.PaymentInformation type#interface PaymentInformation { addresses: Address[] payId?: string memo?: string}CopyAddressDetailsType#enum AddressDetailsType { CryptoAddress = 'CryptoAddressDetails' FiatAddress = 'FiatAddressDetails'}CopyCryptoAddressDetails#interface CryptoAddressDetails { address: string tag?: string}CopyFiatAddressDetails#interface FiatAddressDetails { accountNumber: string routingNumber?: string}CopyAddress#interface Address { paymentNetwork: string environment?: string addressDetailsType: AddressDetailsType addressDetails: CryptoAddressDetails | FiatAddressDetails}Copy