pix-utils
Version:
Set of tools to parse, generate and validate payments of Brazil Instant Payment System (Pix)
18 lines (17 loc) • 396 B
TypeScript
export type CreateStaticPixParams = {
merchantName: string;
merchantCity: string;
infoAdicional?: string;
pixKey: string;
pss?: string;
txid?: string;
fss?: string;
transactionAmount: number;
isTransactionUnique?: boolean;
};
export type CreateDynamicPixParams = {
merchantName: string;
merchantCity: string;
url: string;
oneTime?: boolean;
};