12 lines
216 B
TypeScript
12 lines
216 B
TypeScript
export type Pix = {
|
|
pixKey: string;
|
|
merchantCity?: string;
|
|
merchantName?: string;
|
|
value?: number;
|
|
transactionId?: string;
|
|
message?: string;
|
|
cep?: string;
|
|
currency?: number;
|
|
countryCode?: string;
|
|
};
|