Filter the flywheel iterations based on creation time.

interface FlywheelIterationFilter {
    CreationTimeAfter?: Date;
    CreationTimeBefore?: Date;
}

Properties

CreationTimeAfter?: Date

Filter the flywheel iterations to include iterations created after the specified time.

CreationTimeBefore?: Date

Filter the flywheel iterations to include iterations created before the specified time.