import type * as Square from "../index"; /** * Represents details about a `TRANSFER_BALANCE_FROM` [gift card activity type](entity:GiftCardActivityType). */ export interface GiftCardActivityTransferBalanceFrom { /** The ID of the gift card to which the specified amount was transferred. */ transferToGiftCardId: string; /** The amount deducted from the gift card for the transfer. This value is a positive integer. */ amountMoney: Square.Money; }