import type * as Square from "../index"; /** * Information about the destination against which the payout was made. */ export interface Destination { /** * Type of the destination such as a bank account or debit card. * See [DestinationType](#type-destinationtype) for possible values */ type?: Square.DestinationType; /** Square issued unique ID (also known as the instrument ID) associated with this destination. */ id?: string; }