Type Alias ListFunctions

type ListFunctions = {
    getBookmarkList(): Promise<BookmarkListItem[]>;
    getBookmarkListObject(): Promise<BookmarkListItem[]>;
    getDimensionList(): Promise<DimensionListItem[]>;
    getDimensionListObject(): Promise<GenericListObject<DimensionListItem>>;
    getDynamicAppViewList(): Promise<DynamicAppViewListItem[]>;
    getDynamicAppViewObject(): Promise<
        GenericListObject<DynamicAppViewListItem>,
    >;
    getFieldList(): Promise<NxFieldDescription[]>;
    getFieldListObject(): Promise<FieldListObject>;
    getMasterObjectList(): Promise<MasterObjectListItem[]>;
    getMasterObjectListObject(): Promise<
        GenericListObject<MasterObjectListItem>,
    >;
    getMeasureList(): Promise<MeasureListItem[]>;
    getMeasureListObject(): Promise<GenericListObject<MeasureListItem>>;
    getODAGAppLinkList(): Promise<ODAGAppLinkListItem[]>;
    getODAGAppLinkListObject(): Promise<GenericListObject<ODAGAppLinkListItem>>;
    getOnTheFlyListObject(): Promise<GenericListObject<NxFieldDescription>>;
    getOnTheFlyWithHiddenListObject(): Promise<
        GenericListObject<NxFieldDescription>,
    >;
    getSheetList(): Promise<SheetListItem[]>;
    getSheetListObject(): Promise<GenericListObject<SheetListItem>>;
    getStoryList(): Promise<StoryListItem[]>;
    getStoryListObject(): Promise<GenericListObject<StoryListItem>>;
    getVariableList(): Promise<VariableListItem[]>;
    getVariableListObject(): Promise<GenericListObject<VariableListItem>>;
}
Index

Methods