import type * as Square from "../index"; /** * Defines the fields that are included in the response body of * a request to the `CreateCustomerCard` endpoint. * * Either `errors` or `card` is present in a given response (never both). */ export interface CreateCustomerCardResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The created card on file. */ card?: Square.Card; }