/** * Class representing the Edition resource with helper functions. * An Edition is the main way of scheduling content to be published on a specific date. */ export declare class Edition { /** * Unique id of the Edition */ id: string; /** * Date when the edition should begin in ISO 8601 format */ start: string; /** * Date when the edition should end in ISO 8601 format */ end: string; /** * Creates a new Edition instance. * @param data JSON representation of the Edition model */ constructor(data?: any); /** * Date when the edition should begin */ getStartDate(): Date; /** * Date when the edition should end */ getEndDate(): Date; /** * Export to JSON */ toJSON(): any; }