import type * as Square from "../../../../index"; /** * @example * { * locationId: "location_id", * location: { * businessHours: { * periods: [{ * dayOfWeek: "FRI", * startLocalTime: "07:00", * endLocalTime: "18:00" * }, { * dayOfWeek: "SAT", * startLocalTime: "07:00", * endLocalTime: "18:00" * }, { * dayOfWeek: "SUN", * startLocalTime: "09:00", * endLocalTime: "15:00" * }] * }, * description: "Midtown Atlanta store - Open weekends" * } * } */ export interface UpdateLocationRequest { /** The ID of the location to update. */ locationId: string; /** The `Location` object with only the fields to update. */ location?: Square.Location; }