interface ContainerInspectRequest {
    inspectionOperations: {
        involvedViews?: {
            allVersions?: boolean;
        };
        totalInvolvedViewCount?: {
            allVersions?: boolean;
            includeUnavailableViews?: boolean;
        };
    };
    items: {
        externalId: string;
        space: string;
    }[];
}

Properties

inspectionOperations: {
    involvedViews?: {
        allVersions?: boolean;
    };
    totalInvolvedViewCount?: {
        allVersions?: boolean;
        includeUnavailableViews?: boolean;
    };
}
items: {
    externalId: string;
    space: string;
}[]