import type * as Square from "../index"; /** * Defines the fields that the [RetrieveLocation](api-endpoint:Locations-RetrieveLocation) * endpoint returns in a response. */ export interface GetLocationResponse { /** Information about errors encountered during the request. */ errors?: Square.Error_[]; /** The requested location. */ location?: Square.Location; }