Méthode | Description | |
---|---|---|
AddFavorites ( IEnumerable |
Adds one or more items to the user’s list of Favorite items. It mirrors To the following Smartsheet REST API method: POST /favorites If called with a single Favorite object, and that favorite already exists, error code 1129 will be returned. If called with an array of Favorite objects, any objects specified in the array that are already marked as favorites will be ignored and omitted from the response.
|
|
FavoriteResourcesImpl ( |
Constructor. Exceptions: - IllegalArgumentException : if any argument is null
|
|
ListFavorites ( |
Gets a list of all of the user’s Favorite items. It mirrors To the following Smartsheet REST API method: GET /favorites
|
|
RemoveFavorites ( ObjectType type, IList |
Removes one or multiple objects from the user’s list of Favorite items. objectIds must not be null or empty. It mirrors To the following Smartsheet REST API methods:
|
public AddFavorites ( IEnumerable |
||
favorites | IEnumerable |
list of favorite objects |
Résultat | IList |
public FavoriteResourcesImpl ( |
||
smartsheet | the Smartsheet | |
Résultat | System |
public ListFavorites ( |
||
paging | the pagination | |
Résultat | PaginatedResult |
public RemoveFavorites ( ObjectType type, IList |
||
type | ObjectType | the object type to remove |
objectIds | IList |
(required): a comma-separated list of object IDs representing the items to remove from Favorites |
Résultat | void |