interface AppArticlesInfoQueryValidPageData {
    errorTypeName: undefined;
    offset: number;
    isNextPageAvailable: boolean;
    appArticlesInfo: {
        [appArticleId: string]: AppArticleInfo;
    };
}

Properties

errorTypeName: undefined
offset: number
isNextPageAvailable: boolean
appArticlesInfo: {
    [appArticleId: string]: AppArticleInfo;
}