google-wallet
Version:
Google wallet library for Node.js
20 lines (19 loc) • 675 B
TypeScript
import { Money } from "./Money.js";
export type LoyaltyPointsBalance = {
/**
* The string form of a balance. Only one of these subtypes (string, int, double, money) should be populated.
*/
string?: string;
/**
* The integer form of a balance. Only one of these subtypes (string, int, double, money) should be populated.
*/
int?: number;
/**
* The double form of a balance. Only one of these subtypes (string, int, double, money) should be populated.
*/
double?: number;
/**
* The money form of a balance. Only one of these subtypes (string, int, double, money) should be populated.
*/
money?: Money;
};