import type * as Square from "../index"; /** * Represents details about an `ADJUST_INCREMENT` [gift card activity type](entity:GiftCardActivityType). */ export interface GiftCardActivityAdjustIncrement { /** The amount added to the gift card balance. This value is a positive integer. */ amountMoney: Square.Money; /** * The reason the gift card balance was adjusted. * See [Reason](#type-reason) for possible values */ reason: Square.GiftCardActivityAdjustIncrementReason; }