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