Interface TemporalRollbackPlanRequest

Request to author a rollback plan.

interface TemporalRollbackPlanRequest {
    changeSetId?: string;
    featureIds?: readonly FeatureId[];
    layerId?: string | number;
    reason?: string;
    releaseOperationId?: string;
    sourceId: string;
    targetCheckpointId: string;
    targetScope: TemporalRollbackScope;
}

Properties

changeSetId?: string

Required for change_set scope.

featureIds?: readonly FeatureId[]

Required for feature / selection scopes.

layerId?: string | number

Required for layer scope.

reason?: string
releaseOperationId?: string

Required for release scope.

sourceId: string
targetCheckpointId: string