You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Adding an item property is somehow equivalent to adding a column to the table of items. The items may be characterized by various properties of different types.
512
+
* Adding an item property is somewhat equivalent to adding a column to the table of items. The items may be characterized by various properties of different types.
* Deletes the group of the given `groupId` from the database.
850
-
* Deleting a group will only delete the assignment of items to it, not the items themselves!
851
-
*/
852
-
exportclassDeleteGroupextendsrequests.Request{
853
-
/**
854
-
* @param groupId - ID of the group to be deleted.
855
-
*/
856
-
constructor(
857
-
groupId: string,
858
-
);
859
-
860
-
groupId: string;
861
-
protected__response_type: string;
862
-
863
-
bodyParameters(): {
864
-
};
865
-
866
-
queryParameters(): {
867
-
};
868
-
}
869
-
870
-
/**
871
-
* Gets the list of all the groups currently present in the database.
872
-
*/
873
-
exportclassListGroupsextendsrequests.Request{
874
-
/**
875
-
876
-
*/
877
-
constructor(
878
-
);
879
-
880
-
protected__response_type: Group[];
881
-
882
-
bodyParameters(): {
883
-
};
884
-
885
-
queryParameters(): {
886
-
};
887
-
}
888
-
889
-
/**
890
-
* List all the items present in the given group.
891
-
*/
892
-
exportclassListGroupItemsextendsrequests.Request{
893
-
/**
894
-
* @param groupId - ID of the group whose items are to be listed.
895
-
*/
896
-
constructor(
897
-
groupId: string,
898
-
);
899
-
900
-
groupId: string;
901
-
protected__response_type: GroupItem[];
902
-
903
-
bodyParameters(): {
904
-
};
905
-
906
-
queryParameters(): {
907
-
};
908
-
}
909
-
910
-
/**
911
-
* Inserts an existing item/group into a group of the given `groupId`.
912
-
*/
913
-
exportclassInsertToGroupextendsrequests.Request{
914
-
/**
915
-
* @param groupId - ID of the group to be inserted into.
916
-
* @param itemType - `item` iff the regular item from the catalog is to be inserted, `group` iff group is inserted as the item.
917
-
* @param itemId - ID of the item iff `itemType` is `item`. ID of the group iff `itemType` is `group`.
918
-
* @param optional - Optional parameters given as an object.
919
-
*/
920
-
constructor(
921
-
groupId: string,
922
-
itemType: string,
923
-
itemId: string,
924
-
optional?: {
925
-
/** Indicates that any non-existing entity specified within the request should be created (as if corresponding PUT requests were invoked). This concerns both the `groupId` and the `groupId`. If `cascadeCreate` is set to true, the behavior also depends on the `itemType`. Either items or group may be created if not present in the database. */
* Adding a user property is somehow equivalent to adding a column to the table of users. The users may be characterized by various properties of different types.
955
+
* Adding a user property is somewhat equivalent to adding a column to the table of users. The users may be characterized by various properties of different types.
0 commit comments