//#region src/model/Backfill.d.ts type IBackfill = { start: Date; end: Date; currentDate: Date; paused: boolean; inputs: any; /** * :model/Label>} labels */ "": Array; previousNextExecutionDate: Date; }; /** * @typedef {Object} IBackfill * @property {Date} start * @property {Date} end * @property {Date} currentDate * @property {Boolean} paused * @property {Object.} inputs * @property {Array.} labels * @property {Date} previousNextExecutionDate */ /** * The Backfill model module. * @module model/Backfill * @type {IBackfill} */ declare class Backfill { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, start: any): void; /** * Constructs a Backfill from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/Backfill} obj Optional instance to populate. * @return {module:model/Backfill} The populated Backfill instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to Backfill. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to Backfill. */ static validateJSON(data: any): boolean; /** * Constructs a new Backfill. * @alias module:model/Backfill * @param {Date} start - */ constructor(start: Date); start: Date; end: Date; currentDate: Date; paused: boolean; inputs: any; labels: any; previousNextExecutionDate: Date; } declare namespace Backfill { let RequiredProperties: string[]; } //#endregion export { IBackfill, Backfill as default };