import type * as Square from "../index"; /** * The response object returned by the [RetrieveMerchant](api-endpoint:Merchants-RetrieveMerchant) endpoint. */ export interface GetMerchantResponse { /** Information on errors encountered during the request. */ errors?: Square.Error_[]; /** The requested `Merchant` object. */ merchant?: Square.Merchant; }