import type * as Square from "../index"; /** * Represents an [UpdateJob](api-endpoint:Team-UpdateJob) response. Either `job` or `errors` * is present in the response. */ export interface UpdateJobResponse { /** The updated job. */ job?: Square.Job; /** The errors that occurred during the request. */ errors?: Square.Error_[]; }