/*! * @license * Copyright Squiz Australia Pty Ltd. All Rights Reserved. */ /** * Message body for the job start queue. */ export interface JobStartMessage { /** The tenant ID */ tenantId: string; /** The job execution ID to start */ executionId: string; /** The job name */ jobName: string; } /** * Parameters for sending a job start message. */ export interface SendJobStartMessageParams { tenantId: string; executionId: string; jobName: string; /** Delay in seconds before the message becomes visible (0-900, max 15 minutes) */ delaySeconds?: number; }