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