From 6619f3708f52dbf51294a6beefc47e56d1d90acb Mon Sep 17 00:00:00 2001 From: Tim Wells Date: Tue, 20 Aug 2019 11:18:42 -0700 Subject: [PATCH] include format and objectValue in the includes for GetCellHistory #109 --- .../Api/Models/Inclusions/CellInclusion.cs | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/main/Smartsheet/Api/Models/Inclusions/CellInclusion.cs b/main/Smartsheet/Api/Models/Inclusions/CellInclusion.cs index 35d889f82..fdb436683 100644 --- a/main/Smartsheet/Api/Models/Inclusions/CellInclusion.cs +++ b/main/Smartsheet/Api/Models/Inclusions/CellInclusion.cs @@ -32,7 +32,16 @@ public enum CellInclusion /// /// The columnType attribute for a cell. /// - [EnumMember(Value = "columnType")] - COLUMN_TYPE + COLUMN_TYPE, + + /// + /// The format attribute for a cell if the revision also included a format change + /// + FORMAT, + + /// + /// The objectValue attribute for a cell. + /// + OBJECT_VALUE } } \ No newline at end of file