diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index f226eb6b9..e509806e1 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -29,7 +29,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Smartsheet")] [assembly: AssemblyProduct("Smartsheet_csharp_sdk.Properties")] -[assembly: AssemblyCopyright("Copyright © 2014-2018")] +[assembly: AssemblyCopyright("Copyright © 2014-2018")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: CLSCompliant(true)] diff --git a/documentation/smartsheet-csharp-sdk-docs.shfbproj b/documentation/smartsheet-csharp-sdk-docs.shfbproj index b2bce4eb5..4fa514cc5 100644 --- a/documentation/smartsheet-csharp-sdk-docs.shfbproj +++ b/documentation/smartsheet-csharp-sdk-docs.shfbproj @@ -13,7 +13,7 @@ Documentation Documentation - .NET Framework 4.0 + .NET Framework 4.5.2 .\Website\ smartsheet-csharp-sdk-docs en-US @@ -32,9 +32,9 @@ VS2013 False MemberName - Smartsheet C# SDK Documentation v2.2.1 + Smartsheet C# SDK Documentation v2.3.0 api%40smartsheet.com - &#169%3b 2014-2017. All Rights Reserved Smartsheet.com + &#169%3b 2014-2018. All Rights Reserved Smartsheet.com Smartsheet BelowNamespaces @@ -90,6 +90,7 @@ 1.0.0.0 Smartsheet C# SDK Help Topics + 100 diff --git a/main/Smartsheet/Api/HomeResources.cs b/main/Smartsheet/Api/HomeResources.cs index eefce0915..738822ba8 100644 --- a/main/Smartsheet/Api/HomeResources.cs +++ b/main/Smartsheet/Api/HomeResources.cs @@ -20,7 +20,6 @@ namespace Smartsheet.Api { using Smartsheet.Api.Models; - using Smartsheet.Api.Models.Inclusions; using System.Collections.Generic; using Home = Api.Models.Home; diff --git a/main/Smartsheet/Api/Internal/HomeResourcesImpl.cs b/main/Smartsheet/Api/Internal/HomeResourcesImpl.cs index 9a5b2fdb3..5c1a4162e 100644 --- a/main/Smartsheet/Api/Internal/HomeResourcesImpl.cs +++ b/main/Smartsheet/Api/Internal/HomeResourcesImpl.cs @@ -22,7 +22,6 @@ namespace Smartsheet.Api.Internal using System.Collections.Generic; using Smartsheet.Api.Internal.Util; using Smartsheet.Api.Models; - using Smartsheet.Api.Models.Inclusions; using Home = Api.Models.Home; /// diff --git a/main/Smartsheet/Api/Internal/SearchResourcesImpl.cs b/main/Smartsheet/Api/Internal/SearchResourcesImpl.cs index 8288e6d07..5b4c17622 100644 --- a/main/Smartsheet/Api/Internal/SearchResourcesImpl.cs +++ b/main/Smartsheet/Api/Internal/SearchResourcesImpl.cs @@ -23,7 +23,6 @@ namespace Smartsheet.Api.Internal using System.Text.RegularExpressions; using Api.Models; - using Api.Models.Inclusions; using Smartsheet.Api.Internal.Util; using SearchResult = Api.Models.SearchResult; diff --git a/main/Smartsheet/Api/Models/Inclusions/HomeExclusion.cs b/main/Smartsheet/Api/Models/Inclusions/HomeExclusion.cs index ba455c8f0..839dc40fa 100644 --- a/main/Smartsheet/Api/Models/Inclusions/HomeExclusion.cs +++ b/main/Smartsheet/Api/Models/Inclusions/HomeExclusion.cs @@ -21,8 +21,11 @@ using System.Linq; using System.Text; -namespace Smartsheet.Api.Models.Inclusions +namespace Smartsheet.Api.Models { + /// + /// A comma-separated list of optional elements to not include in the response. + /// public enum HomeExclusion { PERMALINKS diff --git a/main/Smartsheet/Api/Models/Inclusions/SearchInclusion.cs b/main/Smartsheet/Api/Models/Inclusions/SearchInclusion.cs index 1ef293a1b..a59183d91 100644 --- a/main/Smartsheet/Api/Models/Inclusions/SearchInclusion.cs +++ b/main/Smartsheet/Api/Models/Inclusions/SearchInclusion.cs @@ -20,10 +20,16 @@ using Newtonsoft.Json.Converters; using System.Runtime.Serialization; -namespace Smartsheet.Api.Models.Inclusions +namespace Smartsheet.Api.Models { + /// + /// Represents specific elements to include in a response. + /// public enum SearchInclusion { + /// + /// When specified with a value of favoriteFlag, response indicates which returned items are favorites + /// [EnumMember(Value = "favoriteFlag")] FAVORITE_FLAG } diff --git a/main/Smartsheet/Api/SearchResources.cs b/main/Smartsheet/Api/SearchResources.cs index 2248ae8e0..c9ed5f10d 100644 --- a/main/Smartsheet/Api/SearchResources.cs +++ b/main/Smartsheet/Api/SearchResources.cs @@ -19,7 +19,6 @@ namespace Smartsheet.Api { using Api.Models; - using Api.Models.Inclusions; using System; using System.Collections.Generic; using SearchResult = Api.Models.SearchResult;