export interface SetPurchaseAttributes {
    transactionDate: string;
    quantity: number;
    currency: string;
    productIdentifier: string;
    price: number;
}
