import type * as Square from "../index"; /** * Defines the fields that are included in the response body of * a request to the [RetrieveCard](api-endpoint:Cards-RetrieveCard) endpoint. * * Note: if there are errors processing the request, the card field will not be * present. */ export interface GetCardResponse { /** Information on errors encountered during the request. */ errors?: Square.Error_[]; /** The retrieved card. */ card?: Square.Card; }