import type * as Square from "../index"; export interface DestinationDetailsCardRefundDetails { /** The card's non-confidential details. */ card?: Square.Card; /** * The method used to enter the card's details for the refund. The method can be * `KEYED`, `SWIPED`, `EMV`, `ON_FILE`, or `CONTACTLESS`. */ entryMethod?: string | null; /** The authorization code provided by the issuer when a refund is approved. */ authResultCode?: string | null; }