import type * as Square from "../index"; /** * Represents an additional recipient (other than the merchant) entitled to a portion of the tender. * Support is currently limited to USD, CAD and GBP currencies */ export interface ChargeRequestAdditionalRecipient { /** The location ID for a recipient (other than the merchant) receiving a portion of the tender. */ locationId: string; /** The description of the additional recipient. */ description: string; /** The amount of money distributed to the recipient. */ amountMoney: Square.Money; }