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