Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LoyaltyPointsBalance

import type { LoyaltyPointsBalance } from "https://googleapis.deno.dev/v1/walletobjects:v1.ts";
interface LoyaltyPointsBalance {
double?: number;
int?: number;
money?: Money;
string?: string;
}

§Properties

§
double?: number
[src]

The double form of a balance. Only one of these subtypes (string, int, double, money) should be populated.

§
int?: number
[src]

The integer form of a balance. Only one of these subtypes (string, int, double, money) should be populated.

§
money?: Money
[src]

The money form of a balance. Only one of these subtypes (string, int, double, money) should be populated.

§
string?: string
[src]

The string form of a balance. Only one of these subtypes (string, int, double, money) should be populated.