import type * as Square from "../index"; /** * The response object returned by the [UpdateLocation](api-endpoint:Locations-UpdateLocation) endpoint. */ export interface UpdateLocationResponse { /** Information about errors encountered during the request. */ errors?: Square.Error_[]; /** The updated `Location` object. */ location?: Square.Location; }