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