Package com.smartsheet.api
Interface ColumnResources
-
@Deprecated(since="2.0.0", forRemoval=true) public interface ColumnResourcesDeprecated, for removal: This API element is subject to removal in a future version.As of release 2.0. Please useSheetCommentResourcesinsteadThis interface provides methods to access Column resources.
Thread Safety: Implementation of this interface must be thread safe.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voiddeleteColumn(long id, long sheetId)Deprecated, for removal: This API element is subject to removal in a future version.As of release 2.0.ColumnupdateColumn(Column column)Deprecated, for removal: This API element is subject to removal in a future version.As of release 2.0.
-
-
-
Method Detail
-
updateColumn
@Deprecated(since="2.0.0", forRemoval=true) Column updateColumn(Column column)Deprecated, for removal: This API element is subject to removal in a future version.As of release 2.0. Please useSheetCommentResourcesinstead- Parameters:
column- the column to update- Returns:
- the updated Column (note that if there is no such resource, this method will throw ResourceNotFoundException rather than returning null).
-
deleteColumn
@Deprecated(since="2.0.0", forRemoval=true) void deleteColumn(long id, long sheetId)Deprecated, for removal: This API element is subject to removal in a future version.As of release 2.0. Please useSheetCommentResourcesinstead- Parameters:
id- id of the columnsheetId- the sheet id
-
-