import type * as Square from "../index"; /** * Represents an additional recipient (other than the merchant) receiving a portion of this tender. */ export interface AdditionalRecipient { /** The location ID for a recipient (other than the merchant) receiving a portion of this tender. */ locationId: string; /** The description of the additional recipient. */ description?: string | null; /** The amount of money distributed to the recipient. */ amountMoney: Square.Money; /** The unique ID for the RETIRED `AdditionalRecipientReceivable` object. This field should be empty for any `AdditionalRecipient` objects created after the retirement. */ receivableId?: string | null; }