import type * as Square from "../index"; /** * The response to a request to create a `Shift`. The response contains * the created `Shift` object and might contain a set of `Error` objects if * the request resulted in errors. */ export interface CreateShiftResponse { /** The `Shift` that was created on the request. */ shift?: Square.Shift; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }