Package com.smartsheet.api
Interface ColumnResources
-
@Deprecated(since="2.0.0", forRemoval=true) public interface ColumnResources
Deprecated, for removal: This API element is subject to removal in a future version.As of release 2.0. Please useSheetCommentResources
insteadThis 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 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.Column
updateColumn(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 useSheetCommentResources
instead- 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 useSheetCommentResources
instead- Parameters:
id
- id of the columnsheetId
- the sheet id
-
-