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