import type * as Square from "../index"; /** * The response object returned by the [CreateLocation](api-endpoint:Locations-CreateLocation) endpoint. */ export interface CreateLocationResponse { /** Information about [errors](https://developer.squareup.com/docs/build-basics/handling-errors) encountered during the request. */ errors?: Square.Error_[]; /** The newly created `Location` object. */ location?: Square.Location; }