import type * as Square from "../../../../index"; /** * @example * { * location: { * name: "Midtown", * address: { * addressLine1: "1234 Peachtree St. NE", * locality: "Atlanta", * administrativeDistrictLevel1: "GA", * postalCode: "30309" * }, * description: "Midtown Atlanta store" * } * } */ export interface CreateLocationRequest { /** * The initial values of the location being created. The `name` field is required and must be unique within a seller account. * All other fields are optional, but any information you care about for the location should be included. * The remaining fields are automatically added based on the data from the [main location](https://developer.squareup.com/docs/locations-api#about-the-main-location). */ location?: Square.Location; }