import type * as Square from "../index"; /** * Additional details about Square Account payments. */ export interface SquareAccountDetails { /** Unique identifier for the payment source used for this payment. */ paymentSourceToken?: string | null; /** Information about errors encountered during the request. */ errors?: Square.Error_[] | null; }