import type { ServiceNowConfig } from './service-now-config.js'; /** * Representation of the 'ServiceNowConfigurationStruct' schema. */ export type ServiceNowConfigurationStruct = { /** * @example "destination-name" */ destination: string; serviceNow?: ServiceNowConfig; /** * @example "uuid" */ metadataConfigId?: string; /** * Optional cron expression for scheduling pipeline execution. * Must represent an interval greater than 1 hour. * * @example "0 \*\/20 * * *" */ cronExpression?: string; } & Record; //# sourceMappingURL=service-now-configuration-struct.d.ts.map