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