interface AppScreenshotsInfoQueryValidPageData {
    errorTypeName: undefined;
    offset: number;
    isNextPageAvailable: boolean;
    appScreenshotsInfo: {
        [appScreenshotId: string]: AppScreenshotInfo;
    };
}

Properties

errorTypeName: undefined
offset: number
isNextPageAvailable: boolean
appScreenshotsInfo: {
    [appScreenshotId: string]: AppScreenshotInfo;
}