diff --git a/Aspose.Cells.Cloud.SDK.Test/Api/CellsShapesApiTests.cs b/Aspose.Cells.Cloud.SDK.Test/Api/CellsShapesApiTests.cs index e52ffbff..8924df14 100644 --- a/Aspose.Cells.Cloud.SDK.Test/Api/CellsShapesApiTests.cs +++ b/Aspose.Cells.Cloud.SDK.Test/Api/CellsShapesApiTests.cs @@ -138,7 +138,7 @@ public void CellsShapesPutWorksheetShapeTest() int? height = 90; string folder = TEMPFOLDER; UpdateDataFile(instance,folder, name); - var response = instance.CellsShapesPutWorksheetShape(name, sheetName, drawingType, upperLeftRow, upperLeftColumn, top, left, width, height, folder); + var response = instance.CellsShapesPutWorksheetShape(name, sheetName, null,drawingType, upperLeftRow, upperLeftColumn, top, left, width, height, folder); Assert.IsInstanceOf(response, "response is ShapeResponse"); Assert.AreEqual(response.Code, 200); } diff --git a/Aspose.Cells.Cloud.SDK.Test/Api/CellsWorkbookApiTests.cs b/Aspose.Cells.Cloud.SDK.Test/Api/CellsWorkbookApiTests.cs index 89376e4c..154127ae 100644 --- a/Aspose.Cells.Cloud.SDK.Test/Api/CellsWorkbookApiTests.cs +++ b/Aspose.Cells.Cloud.SDK.Test/Api/CellsWorkbookApiTests.cs @@ -516,7 +516,7 @@ public void CellsWorkbookPutWorkbookCreateTest() } - [Ignore("Ignore DropBox")] + //[Ignore("Ignore DropBox")] public void CellsWorkbookPostWorkbooksTextSearchTestForDropBox() { string name = BOOK1; diff --git a/Aspose.Cells.Cloud.SDK.sln b/Aspose.Cells.Cloud.SDK.sln index d288acfa..b9ce12df 100644 --- a/Aspose.Cells.Cloud.SDK.sln +++ b/Aspose.Cells.Cloud.SDK.sln @@ -1,10 +1,15 @@ Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27004.2009 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30128.74 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aspose.Cells.Cloud.SDK", "Aspose.Cells.Cloud.SDK\Aspose.Cells.Cloud.SDK.csproj", "{CCFC6447-7804-4C73-B5BE-6444ACBEF9A3}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Aspose.Cells.Cloud.SDK", "Aspose.Cells.Cloud.SDK\Aspose.Cells.Cloud.SDK.csproj", "{CCFC6447-7804-4C73-B5BE-6444ACBEF9A3}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aspose.Cells.Cloud.SDK.Test", "Aspose.Cells.Cloud.SDK.Test\Aspose.Cells.Cloud.SDK.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Aspose.Cells.Cloud.SDK.Test", "Aspose.Cells.Cloud.SDK.Test\Aspose.Cells.Cloud.SDK.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{146713BF-C18D-47F9-BEEA-8B1C71A834C1}" + ProjectSection(SolutionItems) = preProject + README.md = README.md + EndProjectSection EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Aspose.Cells.Cloud.SDK/Api/CellsApi.cs b/Aspose.Cells.Cloud.SDK/Api/CellsApi.cs index 9017338c..3b890142 100644 --- a/Aspose.Cells.Cloud.SDK/Api/CellsApi.cs +++ b/Aspose.Cells.Cloud.SDK/Api/CellsApi.cs @@ -55,9 +55,9 @@ public interface ICellsApi : IApiAccessor /// (optional, default to 0) /// (optional, default to 0) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterDeleteWorksheetDateFilter (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterDeleteWorksheetDateFilter (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storageName = null); /// /// Removes a date filter. @@ -77,9 +77,9 @@ public interface ICellsApi : IApiAccessor /// (optional, default to 0) /// (optional, default to 0) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterDeleteWorksheetDateFilterWithHttpInfo (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storage = null); + ApiResponse CellsAutoFilterDeleteWorksheetDateFilterWithHttpInfo (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storageName = null); /// /// Delete a filter for a filter column. /// @@ -92,9 +92,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterDeleteWorksheetFilter (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterDeleteWorksheetFilter (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storageName = null); /// /// Delete a filter for a filter column. @@ -108,9 +108,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterDeleteWorksheetFilterWithHttpInfo (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storage = null); + ApiResponse CellsAutoFilterDeleteWorksheetFilterWithHttpInfo (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storageName = null); /// /// Get Auto filter Description /// @@ -121,9 +121,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// AutoFilterResponse - AutoFilterResponse CellsAutoFilterGetWorksheetAutoFilter (string name, string sheetName, string folder = null, string storage = null); + AutoFilterResponse CellsAutoFilterGetWorksheetAutoFilter (string name, string sheetName, string folder = null, string storageName = null); /// /// Get Auto filter Description @@ -135,9 +135,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of AutoFilterResponse - ApiResponse CellsAutoFilterGetWorksheetAutoFilterWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsAutoFilterGetWorksheetAutoFilterWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// /// @@ -148,9 +148,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterPostWorksheetAutoFilterRefresh (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterPostWorksheetAutoFilterRefresh (string name, string sheetName, string folder = null, string storageName = null); /// /// @@ -162,9 +162,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterPostWorksheetAutoFilterRefreshWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsAutoFilterPostWorksheetAutoFilterRefreshWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Match all blank cell in the list. /// @@ -176,9 +176,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterPostWorksheetMatchBlanks (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterPostWorksheetMatchBlanks (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null); /// /// Match all blank cell in the list. @@ -191,9 +191,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterPostWorksheetMatchBlanksWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null); + ApiResponse CellsAutoFilterPostWorksheetMatchBlanksWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null); /// /// Match all not blank cell in the list. /// @@ -205,9 +205,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterPostWorksheetMatchNonBlanks (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterPostWorksheetMatchNonBlanks (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null); /// /// Match all not blank cell in the list. @@ -220,9 +220,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterPostWorksheetMatchNonBlanksWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null); + ApiResponse CellsAutoFilterPostWorksheetMatchNonBlanksWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null); /// /// /// @@ -238,9 +238,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterPutWorksheetColorFilter (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterPutWorksheetColorFilter (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// @@ -257,9 +257,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterPutWorksheetColorFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + ApiResponse CellsAutoFilterPutWorksheetColorFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Filters a list with a custom criteria. /// @@ -279,9 +279,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterPutWorksheetCustomFilter (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterPutWorksheetCustomFilter (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Filters a list with a custom criteria. @@ -302,9 +302,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterPutWorksheetCustomFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + ApiResponse CellsAutoFilterPutWorksheetCustomFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// add date filter in worksheet /// @@ -326,9 +326,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterPutWorksheetDateFilter (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterPutWorksheetDateFilter (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// add date filter in worksheet @@ -351,9 +351,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterPutWorksheetDateFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + ApiResponse CellsAutoFilterPutWorksheetDateFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// /// @@ -369,9 +369,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterPutWorksheetDynamicFilter (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterPutWorksheetDynamicFilter (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// @@ -388,9 +388,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterPutWorksheetDynamicFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + ApiResponse CellsAutoFilterPutWorksheetDynamicFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Adds a filter for a filter column. /// @@ -406,9 +406,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterPutWorksheetFilter (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterPutWorksheetFilter (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Adds a filter for a filter column. @@ -425,9 +425,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterPutWorksheetFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + ApiResponse CellsAutoFilterPutWorksheetFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Filter the top 10 item in the list /// @@ -445,9 +445,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterPutWorksheetFilterTop10 (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterPutWorksheetFilterTop10 (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Filter the top 10 item in the list @@ -466,9 +466,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterPutWorksheetFilterTop10WithHttpInfo (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + ApiResponse CellsAutoFilterPutWorksheetFilterTop10WithHttpInfo (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Adds an icon filter. /// @@ -485,9 +485,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsAutoFilterPutWorksheetIconFilter (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + CellsCloudResponse CellsAutoFilterPutWorksheetIconFilter (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Adds an icon filter. @@ -505,9 +505,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsAutoFilterPutWorksheetIconFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + ApiResponse CellsAutoFilterPutWorksheetIconFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Get autoshape info. /// @@ -520,9 +520,9 @@ public interface ICellsApi : IApiAccessor /// The autoshape number. /// Exported format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// System.IO.Stream - System.IO.Stream CellsAutoshapesGetWorksheetAutoshape (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storage = null); + System.IO.Stream CellsAutoshapesGetWorksheetAutoshape (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storageName = null); /// /// Get autoshape info. @@ -536,9 +536,9 @@ public interface ICellsApi : IApiAccessor /// The autoshape number. /// Exported format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of System.IO.Stream - ApiResponse CellsAutoshapesGetWorksheetAutoshapeWithHttpInfo (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storage = null); + ApiResponse CellsAutoshapesGetWorksheetAutoshapeWithHttpInfo (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storageName = null); /// /// Get worksheet autoshapes info. /// @@ -549,9 +549,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// AutoShapesResponse - AutoShapesResponse CellsAutoshapesGetWorksheetAutoshapes (string name, string sheetName, string folder = null, string storage = null); + AutoShapesResponse CellsAutoshapesGetWorksheetAutoshapes (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet autoshapes info. @@ -563,9 +563,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of AutoShapesResponse - ApiResponse CellsAutoshapesGetWorksheetAutoshapesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsAutoshapesGetWorksheetAutoshapesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get chart area info. /// @@ -577,9 +577,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ChartAreaResponse - ChartAreaResponse CellsChartAreaGetChartArea (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + ChartAreaResponse CellsChartAreaGetChartArea (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart area info. @@ -592,9 +592,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ChartAreaResponse - ApiResponse CellsChartAreaGetChartAreaWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + ApiResponse CellsChartAreaGetChartAreaWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart area border info. /// @@ -606,9 +606,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// LineResponse - LineResponse CellsChartAreaGetChartAreaBorder (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + LineResponse CellsChartAreaGetChartAreaBorder (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart area border info. @@ -621,9 +621,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of LineResponse - ApiResponse CellsChartAreaGetChartAreaBorderWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + ApiResponse CellsChartAreaGetChartAreaBorderWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart area fill format info. /// @@ -635,9 +635,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// FillFormatResponse - FillFormatResponse CellsChartAreaGetChartAreaFillFormat (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + FillFormatResponse CellsChartAreaGetChartAreaFillFormat (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart area fill format info. @@ -650,9 +650,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of FillFormatResponse - ApiResponse CellsChartAreaGetChartAreaFillFormatWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + ApiResponse CellsChartAreaGetChartAreaFillFormatWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Hide legend in chart /// @@ -664,9 +664,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsChartsDeleteWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + CellsCloudResponse CellsChartsDeleteWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Hide legend in chart @@ -679,9 +679,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsChartsDeleteWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + ApiResponse CellsChartsDeleteWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Hide title in chart /// @@ -693,9 +693,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsChartsDeleteWorksheetChartTitle (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + CellsCloudResponse CellsChartsDeleteWorksheetChartTitle (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Hide title in chart @@ -708,9 +708,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsChartsDeleteWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + ApiResponse CellsChartsDeleteWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Clear the charts. /// @@ -721,9 +721,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsChartsDeleteWorksheetClearCharts (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsChartsDeleteWorksheetClearCharts (string name, string sheetName, string folder = null, string storageName = null); /// /// Clear the charts. @@ -735,9 +735,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsChartsDeleteWorksheetClearChartsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsChartsDeleteWorksheetClearChartsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet chart by index. /// @@ -749,9 +749,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ChartsResponse - ChartsResponse CellsChartsDeleteWorksheetDeleteChart (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + ChartsResponse CellsChartsDeleteWorksheetDeleteChart (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Delete worksheet chart by index. @@ -764,9 +764,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ChartsResponse - ApiResponse CellsChartsDeleteWorksheetDeleteChartWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + ApiResponse CellsChartsDeleteWorksheetDeleteChartWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart info. /// @@ -779,9 +779,9 @@ public interface ICellsApi : IApiAccessor /// The chart number. /// The exported file format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// System.IO.Stream - System.IO.Stream CellsChartsGetWorksheetChart (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storage = null); + System.IO.Stream CellsChartsGetWorksheetChart (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storageName = null); /// /// Get chart info. @@ -795,9 +795,9 @@ public interface ICellsApi : IApiAccessor /// The chart number. /// The exported file format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of System.IO.Stream - ApiResponse CellsChartsGetWorksheetChartWithHttpInfo (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storage = null); + ApiResponse CellsChartsGetWorksheetChartWithHttpInfo (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storageName = null); /// /// Get chart legend /// @@ -809,9 +809,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// LegendResponse - LegendResponse CellsChartsGetWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + LegendResponse CellsChartsGetWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart legend @@ -824,9 +824,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of LegendResponse - ApiResponse CellsChartsGetWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + ApiResponse CellsChartsGetWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart title /// @@ -838,9 +838,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TitleResponse - TitleResponse CellsChartsGetWorksheetChartTitle (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + TitleResponse CellsChartsGetWorksheetChartTitle (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart title @@ -853,9 +853,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TitleResponse - ApiResponse CellsChartsGetWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + ApiResponse CellsChartsGetWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get worksheet charts info. /// @@ -866,9 +866,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ChartsResponse - ChartsResponse CellsChartsGetWorksheetCharts (string name, string sheetName, string folder = null, string storage = null); + ChartsResponse CellsChartsGetWorksheetCharts (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet charts info. @@ -880,9 +880,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ChartsResponse - ApiResponse CellsChartsGetWorksheetChartsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsChartsGetWorksheetChartsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update chart propreties /// @@ -895,9 +895,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsChartsPostWorksheetChart (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storage = null); + CellsCloudResponse CellsChartsPostWorksheetChart (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storageName = null); /// /// Update chart propreties @@ -911,9 +911,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsChartsPostWorksheetChartWithHttpInfo (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storage = null); + ApiResponse CellsChartsPostWorksheetChartWithHttpInfo (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storageName = null); /// /// Update chart legend /// @@ -926,9 +926,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// LegendResponse - LegendResponse CellsChartsPostWorksheetChartLegend (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storage = null); + LegendResponse CellsChartsPostWorksheetChartLegend (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storageName = null); /// /// Update chart legend @@ -942,9 +942,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of LegendResponse - ApiResponse CellsChartsPostWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storage = null); + ApiResponse CellsChartsPostWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storageName = null); /// /// Update chart title /// @@ -957,9 +957,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// Chart title (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TitleResponse - TitleResponse CellsChartsPostWorksheetChartTitle (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null); + TitleResponse CellsChartsPostWorksheetChartTitle (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null); /// /// Update chart title @@ -973,9 +973,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// Chart title (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TitleResponse - ApiResponse CellsChartsPostWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null); + ApiResponse CellsChartsPostWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null); /// /// Add new chart to worksheet. /// @@ -996,9 +996,9 @@ public interface ICellsApi : IApiAccessor /// Specifies whether auto update serial name. (optional, default to true) /// Specifies chart title name. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ChartsResponse - ChartsResponse CellsChartsPutWorksheetAddChart (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storage = null); + ChartsResponse CellsChartsPutWorksheetAddChart (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storageName = null); /// /// Add new chart to worksheet. @@ -1020,9 +1020,9 @@ public interface ICellsApi : IApiAccessor /// Specifies whether auto update serial name. (optional, default to true) /// Specifies chart title name. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ChartsResponse - ApiResponse CellsChartsPutWorksheetAddChartWithHttpInfo (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storage = null); + ApiResponse CellsChartsPutWorksheetAddChartWithHttpInfo (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storageName = null); /// /// Show legend in chart /// @@ -1034,9 +1034,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsChartsPutWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + CellsCloudResponse CellsChartsPutWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Show legend in chart @@ -1049,9 +1049,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsChartsPutWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + ApiResponse CellsChartsPutWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Add chart title / Set chart title visible /// @@ -1064,9 +1064,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// Chart title. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TitleResponse - TitleResponse CellsChartsPutWorksheetChartTitle (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null); + TitleResponse CellsChartsPutWorksheetChartTitle (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null); /// /// Add chart title / Set chart title visible @@ -1080,9 +1080,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// Chart title. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TitleResponse - ApiResponse CellsChartsPutWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null); + ApiResponse CellsChartsPutWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null); /// /// Remove conditional formatting /// @@ -1094,9 +1094,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormatting (string name, string sheetName, int? index, string folder = null, string storage = null); + CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormatting (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// Remove conditional formatting @@ -1109,9 +1109,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + ApiResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// Remove cell area from conditional formatting. /// @@ -1126,9 +1126,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattingArea (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattingArea (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Remove cell area from conditional formatting. @@ -1144,9 +1144,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + ApiResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Clear all condition formattings /// @@ -1157,9 +1157,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattings (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattings (string name, string sheetName, string folder = null, string storageName = null); /// /// Clear all condition formattings @@ -1171,9 +1171,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get conditional formatting /// @@ -1185,9 +1185,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ConditionalFormattingResponse - ConditionalFormattingResponse CellsConditionalFormattingsGetWorksheetConditionalFormatting (string name, string sheetName, int? index, string folder = null, string storage = null); + ConditionalFormattingResponse CellsConditionalFormattingsGetWorksheetConditionalFormatting (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// Get conditional formatting @@ -1200,9 +1200,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ConditionalFormattingResponse - ApiResponse CellsConditionalFormattingsGetWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + ApiResponse CellsConditionalFormattingsGetWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// Get conditional formattings /// @@ -1213,9 +1213,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ConditionalFormattingsResponse - ConditionalFormattingsResponse CellsConditionalFormattingsGetWorksheetConditionalFormattings (string name, string sheetName, string folder = null, string storage = null); + ConditionalFormattingsResponse CellsConditionalFormattingsGetWorksheetConditionalFormattings (string name, string sheetName, string folder = null, string storageName = null); /// /// Get conditional formattings @@ -1227,9 +1227,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ConditionalFormattingsResponse - ApiResponse CellsConditionalFormattingsGetWorksheetConditionalFormattingsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsConditionalFormattingsGetWorksheetConditionalFormattingsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Add a condition formatting. /// @@ -1242,9 +1242,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsConditionalFormattingsPutWorksheetConditionalFormatting (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storage = null); + CellsCloudResponse CellsConditionalFormattingsPutWorksheetConditionalFormatting (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storageName = null); /// /// Add a condition formatting. @@ -1258,9 +1258,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsConditionalFormattingsPutWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storage = null); + ApiResponse CellsConditionalFormattingsPutWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storageName = null); /// /// Add a format condition. /// @@ -1277,9 +1277,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatCondition (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null); + CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatCondition (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null); /// /// Add a format condition. @@ -1297,9 +1297,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsConditionalFormattingsPutWorksheetFormatConditionWithHttpInfo (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null); + ApiResponse CellsConditionalFormattingsPutWorksheetFormatConditionWithHttpInfo (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null); /// /// add a cell area for format condition /// @@ -1312,9 +1312,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatConditionArea (string name, string sheetName, int? index, string cellArea, string folder = null, string storage = null); + CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatConditionArea (string name, string sheetName, int? index, string cellArea, string folder = null, string storageName = null); /// /// add a cell area for format condition @@ -1328,9 +1328,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsConditionalFormattingsPutWorksheetFormatConditionAreaWithHttpInfo (string name, string sheetName, int? index, string cellArea, string folder = null, string storage = null); + ApiResponse CellsConditionalFormattingsPutWorksheetFormatConditionAreaWithHttpInfo (string name, string sheetName, int? index, string cellArea, string folder = null, string storageName = null); /// /// Add a condition for format condition. /// @@ -1346,9 +1346,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatConditionCondition (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null); + CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatConditionCondition (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null); /// /// Add a condition for format condition. @@ -1365,9 +1365,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsConditionalFormattingsPutWorksheetFormatConditionConditionWithHttpInfo (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null); + ApiResponse CellsConditionalFormattingsPutWorksheetFormatConditionConditionWithHttpInfo (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null); /// /// Delete worksheet columns. /// @@ -1381,9 +1381,9 @@ public interface ICellsApi : IApiAccessor /// The columns. /// The update reference. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ColumnsResponse - ColumnsResponse CellsDeleteWorksheetColumns (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storage = null); + ColumnsResponse CellsDeleteWorksheetColumns (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storageName = null); /// /// Delete worksheet columns. @@ -1398,9 +1398,9 @@ public interface ICellsApi : IApiAccessor /// The columns. /// The update reference. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ColumnsResponse - ApiResponse CellsDeleteWorksheetColumnsWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storage = null); + ApiResponse CellsDeleteWorksheetColumnsWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storageName = null); /// /// Delete worksheet row. /// @@ -1412,9 +1412,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet bame. /// The row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsDeleteWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + CellsCloudResponse CellsDeleteWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Delete worksheet row. @@ -1427,9 +1427,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet bame. /// The row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsDeleteWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + ApiResponse CellsDeleteWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Delete several worksheet rows. /// @@ -1443,9 +1443,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsDeleteWorksheetRows (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null); + CellsCloudResponse CellsDeleteWorksheetRows (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null); /// /// Delete several worksheet rows. @@ -1460,9 +1460,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsDeleteWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null); + ApiResponse CellsDeleteWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null); /// /// Read cell data by cell's name. /// @@ -1474,9 +1474,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Object - Object CellsGetCellHtmlString (string name, string sheetName, string cellName, string folder = null, string storage = null); + Object CellsGetCellHtmlString (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Read cell data by cell's name. @@ -1489,9 +1489,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of Object - ApiResponse CellsGetCellHtmlStringWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null); + ApiResponse CellsGetCellHtmlStringWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Read cell data by cell's name. /// @@ -1503,9 +1503,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The cell's or method name. (Method name like firstcell, endcell etc.) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Object - Object CellsGetWorksheetCell (string name, string sheetName, string cellOrMethodName, string folder = null, string storage = null); + Object CellsGetWorksheetCell (string name, string sheetName, string cellOrMethodName, string folder = null, string storageName = null); /// /// Read cell data by cell's name. @@ -1518,9 +1518,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The cell's or method name. (Method name like firstcell, endcell etc.) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of Object - ApiResponse CellsGetWorksheetCellWithHttpInfo (string name, string sheetName, string cellOrMethodName, string folder = null, string storage = null); + ApiResponse CellsGetWorksheetCellWithHttpInfo (string name, string sheetName, string cellOrMethodName, string folder = null, string storageName = null); /// /// Read cell's style info. /// @@ -1532,9 +1532,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// Cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// StyleResponse - StyleResponse CellsGetWorksheetCellStyle (string name, string sheetName, string cellName, string folder = null, string storage = null); + StyleResponse CellsGetWorksheetCellStyle (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Read cell's style info. @@ -1547,9 +1547,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// Cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of StyleResponse - ApiResponse CellsGetWorksheetCellStyleWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null); + ApiResponse CellsGetWorksheetCellStyleWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Get cells info. /// @@ -1562,9 +1562,9 @@ public interface ICellsApi : IApiAccessor /// Begginig offset. (optional, default to 0) /// Maximum amount of cells in the response. (optional, default to 0) /// Document's folder name. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsResponse - CellsResponse CellsGetWorksheetCells (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storage = null); + CellsResponse CellsGetWorksheetCells (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storageName = null); /// /// Get cells info. @@ -1578,9 +1578,9 @@ public interface ICellsApi : IApiAccessor /// Begginig offset. (optional, default to 0) /// Maximum amount of cells in the response. (optional, default to 0) /// Document's folder name. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsResponse - ApiResponse CellsGetWorksheetCellsWithHttpInfo (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storage = null); + ApiResponse CellsGetWorksheetCellsWithHttpInfo (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storageName = null); /// /// Read worksheet column data by column's index. /// @@ -1592,9 +1592,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The column index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ColumnResponse - ColumnResponse CellsGetWorksheetColumn (string name, string sheetName, int? columnIndex, string folder = null, string storage = null); + ColumnResponse CellsGetWorksheetColumn (string name, string sheetName, int? columnIndex, string folder = null, string storageName = null); /// /// Read worksheet column data by column's index. @@ -1607,9 +1607,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The column index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ColumnResponse - ApiResponse CellsGetWorksheetColumnWithHttpInfo (string name, string sheetName, int? columnIndex, string folder = null, string storage = null); + ApiResponse CellsGetWorksheetColumnWithHttpInfo (string name, string sheetName, int? columnIndex, string folder = null, string storageName = null); /// /// Read worksheet columns info. /// @@ -1620,9 +1620,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ColumnsResponse - ColumnsResponse CellsGetWorksheetColumns (string name, string sheetName, string folder = null, string storage = null); + ColumnsResponse CellsGetWorksheetColumns (string name, string sheetName, string folder = null, string storageName = null); /// /// Read worksheet columns info. @@ -1634,9 +1634,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ColumnsResponse - ApiResponse CellsGetWorksheetColumnsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsGetWorksheetColumnsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Read worksheet row data by row's index. /// @@ -1648,9 +1648,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The row index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RowResponse - RowResponse CellsGetWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + RowResponse CellsGetWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Read worksheet row data by row's index. @@ -1663,9 +1663,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The row index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RowResponse - ApiResponse CellsGetWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + ApiResponse CellsGetWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Read worksheet rows info. /// @@ -1676,9 +1676,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RowsResponse - RowsResponse CellsGetWorksheetRows (string name, string sheetName, string folder = null, string storage = null); + RowsResponse CellsGetWorksheetRows (string name, string sheetName, string folder = null, string storageName = null); /// /// Read worksheet rows info. @@ -1690,9 +1690,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RowsResponse - ApiResponse CellsGetWorksheetRowsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsGetWorksheetRowsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet hyperlink by index. /// @@ -1704,9 +1704,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsHypelinksDeleteWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null); + CellsCloudResponse CellsHypelinksDeleteWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null); /// /// Delete worksheet hyperlink by index. @@ -1719,9 +1719,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsHypelinksDeleteWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null); + ApiResponse CellsHypelinksDeleteWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null); /// /// Delete all hyperlinks in worksheet. /// @@ -1732,9 +1732,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsHypelinksDeleteWorksheetHyperlinks (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsHypelinksDeleteWorksheetHyperlinks (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete all hyperlinks in worksheet. @@ -1746,9 +1746,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsHypelinksDeleteWorksheetHyperlinksWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsHypelinksDeleteWorksheetHyperlinksWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet hyperlink by index. /// @@ -1760,9 +1760,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// HyperlinkResponse - HyperlinkResponse CellsHypelinksGetWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null); + HyperlinkResponse CellsHypelinksGetWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null); /// /// Get worksheet hyperlink by index. @@ -1775,9 +1775,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HyperlinkResponse - ApiResponse CellsHypelinksGetWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null); + ApiResponse CellsHypelinksGetWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null); /// /// Get worksheet hyperlinks. /// @@ -1788,9 +1788,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// HyperlinksResponse - HyperlinksResponse CellsHypelinksGetWorksheetHyperlinks (string name, string sheetName, string folder = null, string storage = null); + HyperlinksResponse CellsHypelinksGetWorksheetHyperlinks (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet hyperlinks. @@ -1802,9 +1802,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HyperlinksResponse - ApiResponse CellsHypelinksGetWorksheetHyperlinksWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsHypelinksGetWorksheetHyperlinksWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update worksheet hyperlink by index. /// @@ -1817,9 +1817,9 @@ public interface ICellsApi : IApiAccessor /// The hyperlink's index. /// Hyperlink object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// HyperlinkResponse - HyperlinkResponse CellsHypelinksPostWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storage = null); + HyperlinkResponse CellsHypelinksPostWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storageName = null); /// /// Update worksheet hyperlink by index. @@ -1833,9 +1833,9 @@ public interface ICellsApi : IApiAccessor /// The hyperlink's index. /// Hyperlink object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HyperlinkResponse - ApiResponse CellsHypelinksPostWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storage = null); + ApiResponse CellsHypelinksPostWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storageName = null); /// /// Add worksheet hyperlink. /// @@ -1851,9 +1851,9 @@ public interface ICellsApi : IApiAccessor /// /// /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// HyperlinkResponse - HyperlinkResponse CellsHypelinksPutWorksheetHyperlink (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storage = null); + HyperlinkResponse CellsHypelinksPutWorksheetHyperlink (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storageName = null); /// /// Add worksheet hyperlink. @@ -1870,9 +1870,9 @@ public interface ICellsApi : IApiAccessor /// /// /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HyperlinkResponse - ApiResponse CellsHypelinksPutWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storage = null); + ApiResponse CellsHypelinksPutWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storageName = null); /// /// Delete worksheet list object by index /// @@ -1884,9 +1884,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// List object index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsListObjectsDeleteWorksheetListObject (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null); + CellsCloudResponse CellsListObjectsDeleteWorksheetListObject (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null); /// /// Delete worksheet list object by index @@ -1899,9 +1899,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// List object index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsListObjectsDeleteWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null); + ApiResponse CellsListObjectsDeleteWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null); /// /// Delete worksheet list objects /// @@ -1912,9 +1912,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsListObjectsDeleteWorksheetListObjects (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsListObjectsDeleteWorksheetListObjects (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet list objects @@ -1926,9 +1926,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsListObjectsDeleteWorksheetListObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsListObjectsDeleteWorksheetListObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet list object info by index. /// @@ -1940,9 +1940,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// list object index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ListObjectResponse - ListObjectResponse CellsListObjectsGetWorksheetListObject (string name, string sheetName, int? listobjectindex, string folder = null, string storage = null); + ListObjectResponse CellsListObjectsGetWorksheetListObject (string name, string sheetName, int? listobjectindex, string folder = null, string storageName = null); /// /// Get worksheet list object info by index. @@ -1955,9 +1955,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// list object index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ListObjectResponse - ApiResponse CellsListObjectsGetWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listobjectindex, string folder = null, string storage = null); + ApiResponse CellsListObjectsGetWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listobjectindex, string folder = null, string storageName = null); /// /// Get worksheet listobjects info. /// @@ -1968,9 +1968,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ListObjectsResponse - ListObjectsResponse CellsListObjectsGetWorksheetListObjects (string name, string sheetName, string folder = null, string storage = null); + ListObjectsResponse CellsListObjectsGetWorksheetListObjects (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet listobjects info. @@ -1982,9 +1982,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ListObjectsResponse - ApiResponse CellsListObjectsGetWorksheetListObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsListObjectsGetWorksheetListObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update list object /// @@ -1997,9 +1997,9 @@ public interface ICellsApi : IApiAccessor /// list Object index /// listObject dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsListObjectsPostWorksheetListObject (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storage = null); + CellsCloudResponse CellsListObjectsPostWorksheetListObject (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storageName = null); /// /// Update list object @@ -2013,9 +2013,9 @@ public interface ICellsApi : IApiAccessor /// list Object index /// listObject dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsListObjectsPostWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storage = null); + ApiResponse CellsListObjectsPostWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storageName = null); /// /// /// @@ -2027,9 +2027,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsListObjectsPostWorksheetListObjectConvertToRange (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null); + CellsCloudResponse CellsListObjectsPostWorksheetListObjectConvertToRange (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null); /// /// @@ -2042,9 +2042,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsListObjectsPostWorksheetListObjectConvertToRangeWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null); + ApiResponse CellsListObjectsPostWorksheetListObjectConvertToRangeWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null); /// /// /// @@ -2057,9 +2057,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsListObjectsPostWorksheetListObjectSortTable (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storage = null); + CellsCloudResponse CellsListObjectsPostWorksheetListObjectSortTable (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storageName = null); /// /// @@ -2073,9 +2073,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsListObjectsPostWorksheetListObjectSortTableWithHttpInfo (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storage = null); + ApiResponse CellsListObjectsPostWorksheetListObjectSortTableWithHttpInfo (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storageName = null); /// /// /// @@ -2089,9 +2089,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTable (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null); + CellsCloudResponse CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTable (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null); /// /// @@ -2106,9 +2106,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableWithHttpInfo (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null); + ApiResponse CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableWithHttpInfo (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null); /// /// Add a list object into worksheet. /// @@ -2125,9 +2125,9 @@ public interface ICellsApi : IApiAccessor /// Whether the range has headers. (optional, default to true) /// List Object (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ListObjectResponse - ListObjectResponse CellsListObjectsPutWorksheetListObject (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storage = null); + ListObjectResponse CellsListObjectsPutWorksheetListObject (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storageName = null); /// /// Add a list object into worksheet. @@ -2145,9 +2145,9 @@ public interface ICellsApi : IApiAccessor /// Whether the range has headers. (optional, default to true) /// List Object (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ListObjectResponse - ApiResponse CellsListObjectsPutWorksheetListObjectWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storage = null); + ApiResponse CellsListObjectsPutWorksheetListObjectWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storageName = null); /// /// Delete OLE object. /// @@ -2159,9 +2159,9 @@ public interface ICellsApi : IApiAccessor /// The worsheet name. /// Ole object index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsOleObjectsDeleteWorksheetOleObject (string name, string sheetName, int? oleObjectIndex, string folder = null, string storage = null); + CellsCloudResponse CellsOleObjectsDeleteWorksheetOleObject (string name, string sheetName, int? oleObjectIndex, string folder = null, string storageName = null); /// /// Delete OLE object. @@ -2174,9 +2174,9 @@ public interface ICellsApi : IApiAccessor /// The worsheet name. /// Ole object index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsOleObjectsDeleteWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? oleObjectIndex, string folder = null, string storage = null); + ApiResponse CellsOleObjectsDeleteWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? oleObjectIndex, string folder = null, string storageName = null); /// /// Delete all OLE objects. /// @@ -2187,9 +2187,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worsheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsOleObjectsDeleteWorksheetOleObjects (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsOleObjectsDeleteWorksheetOleObjects (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete all OLE objects. @@ -2201,9 +2201,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worsheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsOleObjectsDeleteWorksheetOleObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsOleObjectsDeleteWorksheetOleObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get OLE object info. /// @@ -2216,9 +2216,9 @@ public interface ICellsApi : IApiAccessor /// The object number. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// System.IO.Stream - System.IO.Stream CellsOleObjectsGetWorksheetOleObject (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storage = null); + System.IO.Stream CellsOleObjectsGetWorksheetOleObject (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storageName = null); /// /// Get OLE object info. @@ -2232,9 +2232,9 @@ public interface ICellsApi : IApiAccessor /// The object number. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of System.IO.Stream - ApiResponse CellsOleObjectsGetWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storage = null); + ApiResponse CellsOleObjectsGetWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storageName = null); /// /// Get worksheet OLE objects info. /// @@ -2245,9 +2245,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// OleObjectsResponse - OleObjectsResponse CellsOleObjectsGetWorksheetOleObjects (string name, string sheetName, string folder = null, string storage = null); + OleObjectsResponse CellsOleObjectsGetWorksheetOleObjects (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet OLE objects info. @@ -2259,9 +2259,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of OleObjectsResponse - ApiResponse CellsOleObjectsGetWorksheetOleObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsOleObjectsGetWorksheetOleObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update OLE object. /// @@ -2274,9 +2274,9 @@ public interface ICellsApi : IApiAccessor /// Ole object index /// Ole Object (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsOleObjectsPostUpdateWorksheetOleObject (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storage = null); + CellsCloudResponse CellsOleObjectsPostUpdateWorksheetOleObject (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storageName = null); /// /// Update OLE object. @@ -2290,9 +2290,9 @@ public interface ICellsApi : IApiAccessor /// Ole object index /// Ole Object (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsOleObjectsPostUpdateWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storage = null); + ApiResponse CellsOleObjectsPostUpdateWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storageName = null); /// /// Add OLE object /// @@ -2310,9 +2310,9 @@ public interface ICellsApi : IApiAccessor /// OLE filename (optional) /// Image filename (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// OleObjectResponse - OleObjectResponse CellsOleObjectsPutWorksheetOleObject (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storage = null); + OleObjectResponse CellsOleObjectsPutWorksheetOleObject (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storageName = null); /// /// Add OLE object @@ -2331,9 +2331,9 @@ public interface ICellsApi : IApiAccessor /// OLE filename (optional) /// Image filename (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of OleObjectResponse - ApiResponse CellsOleObjectsPutWorksheetOleObjectWithHttpInfo (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storage = null); + ApiResponse CellsOleObjectsPutWorksheetOleObjectWithHttpInfo (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storageName = null); /// /// /// @@ -2345,9 +2345,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPageBreaksDeleteHorizontalPageBreak (string name, string sheetName, int? index, string folder = null, string storage = null); + CellsCloudResponse CellsPageBreaksDeleteHorizontalPageBreak (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// @@ -2360,9 +2360,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPageBreaksDeleteHorizontalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + ApiResponse CellsPageBreaksDeleteHorizontalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// /// @@ -2374,9 +2374,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPageBreaksDeleteHorizontalPageBreaks (string name, string sheetName, int? row = null, string folder = null, string storage = null); + CellsCloudResponse CellsPageBreaksDeleteHorizontalPageBreaks (string name, string sheetName, int? row = null, string folder = null, string storageName = null); /// /// @@ -2389,9 +2389,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPageBreaksDeleteHorizontalPageBreaksWithHttpInfo (string name, string sheetName, int? row = null, string folder = null, string storage = null); + ApiResponse CellsPageBreaksDeleteHorizontalPageBreaksWithHttpInfo (string name, string sheetName, int? row = null, string folder = null, string storageName = null); /// /// /// @@ -2403,9 +2403,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPageBreaksDeleteVerticalPageBreak (string name, string sheetName, int? index, string folder = null, string storage = null); + CellsCloudResponse CellsPageBreaksDeleteVerticalPageBreak (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// @@ -2418,9 +2418,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPageBreaksDeleteVerticalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + ApiResponse CellsPageBreaksDeleteVerticalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// /// @@ -2432,9 +2432,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPageBreaksDeleteVerticalPageBreaks (string name, string sheetName, int? column = null, string folder = null, string storage = null); + CellsCloudResponse CellsPageBreaksDeleteVerticalPageBreaks (string name, string sheetName, int? column = null, string folder = null, string storageName = null); /// /// @@ -2447,9 +2447,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPageBreaksDeleteVerticalPageBreaksWithHttpInfo (string name, string sheetName, int? column = null, string folder = null, string storage = null); + ApiResponse CellsPageBreaksDeleteVerticalPageBreaksWithHttpInfo (string name, string sheetName, int? column = null, string folder = null, string storageName = null); /// /// /// @@ -2461,9 +2461,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// HorizontalPageBreakResponse - HorizontalPageBreakResponse CellsPageBreaksGetHorizontalPageBreak (string name, string sheetName, int? index, string folder = null, string storage = null); + HorizontalPageBreakResponse CellsPageBreaksGetHorizontalPageBreak (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// @@ -2476,9 +2476,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HorizontalPageBreakResponse - ApiResponse CellsPageBreaksGetHorizontalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + ApiResponse CellsPageBreaksGetHorizontalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// /// @@ -2489,9 +2489,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// HorizontalPageBreaksResponse - HorizontalPageBreaksResponse CellsPageBreaksGetHorizontalPageBreaks (string name, string sheetName, string folder = null, string storage = null); + HorizontalPageBreaksResponse CellsPageBreaksGetHorizontalPageBreaks (string name, string sheetName, string folder = null, string storageName = null); /// /// @@ -2503,9 +2503,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HorizontalPageBreaksResponse - ApiResponse CellsPageBreaksGetHorizontalPageBreaksWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsPageBreaksGetHorizontalPageBreaksWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// /// @@ -2517,9 +2517,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// VerticalPageBreakResponse - VerticalPageBreakResponse CellsPageBreaksGetVerticalPageBreak (string name, string sheetName, int? index, string folder = null, string storage = null); + VerticalPageBreakResponse CellsPageBreaksGetVerticalPageBreak (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// @@ -2532,9 +2532,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of VerticalPageBreakResponse - ApiResponse CellsPageBreaksGetVerticalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + ApiResponse CellsPageBreaksGetVerticalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// /// @@ -2545,9 +2545,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// VerticalPageBreaksResponse - VerticalPageBreaksResponse CellsPageBreaksGetVerticalPageBreaks (string name, string sheetName, string folder = null, string storage = null); + VerticalPageBreaksResponse CellsPageBreaksGetVerticalPageBreaks (string name, string sheetName, string folder = null, string storageName = null); /// /// @@ -2559,9 +2559,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of VerticalPageBreaksResponse - ApiResponse CellsPageBreaksGetVerticalPageBreaksWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsPageBreaksGetVerticalPageBreaksWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// /// @@ -2577,9 +2577,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPageBreaksPutHorizontalPageBreak (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storage = null); + CellsCloudResponse CellsPageBreaksPutHorizontalPageBreak (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storageName = null); /// /// @@ -2596,9 +2596,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPageBreaksPutHorizontalPageBreakWithHttpInfo (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storage = null); + ApiResponse CellsPageBreaksPutHorizontalPageBreakWithHttpInfo (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storageName = null); /// /// /// @@ -2614,9 +2614,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPageBreaksPutVerticalPageBreak (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storage = null); + CellsCloudResponse CellsPageBreaksPutVerticalPageBreak (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storageName = null); /// /// @@ -2633,9 +2633,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPageBreaksPutVerticalPageBreakWithHttpInfo (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storage = null); + ApiResponse CellsPageBreaksPutVerticalPageBreakWithHttpInfo (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storageName = null); /// /// clear header footer /// @@ -2646,9 +2646,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPageSetupDeleteHeaderFooter (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsPageSetupDeleteHeaderFooter (string name, string sheetName, string folder = null, string storageName = null); /// /// clear header footer @@ -2660,9 +2660,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPageSetupDeleteHeaderFooterWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsPageSetupDeleteHeaderFooterWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// get page footer information /// @@ -2673,9 +2673,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// PageSectionsResponse - PageSectionsResponse CellsPageSetupGetFooter (string name, string sheetName, string folder = null, string storage = null); + PageSectionsResponse CellsPageSetupGetFooter (string name, string sheetName, string folder = null, string storageName = null); /// /// get page footer information @@ -2687,9 +2687,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PageSectionsResponse - ApiResponse CellsPageSetupGetFooterWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsPageSetupGetFooterWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// get page header information /// @@ -2700,9 +2700,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// PageSectionsResponse - PageSectionsResponse CellsPageSetupGetHeader (string name, string sheetName, string folder = null, string storage = null); + PageSectionsResponse CellsPageSetupGetHeader (string name, string sheetName, string folder = null, string storageName = null); /// /// get page header information @@ -2714,9 +2714,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PageSectionsResponse - ApiResponse CellsPageSetupGetHeaderWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsPageSetupGetHeaderWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get Page Setup information. /// @@ -2727,9 +2727,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// PageSetupResponse - PageSetupResponse CellsPageSetupGetPageSetup (string name, string sheetName, string folder = null, string storage = null); + PageSetupResponse CellsPageSetupGetPageSetup (string name, string sheetName, string folder = null, string storageName = null); /// /// Get Page Setup information. @@ -2741,9 +2741,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PageSetupResponse - ApiResponse CellsPageSetupGetPageSetupWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsPageSetupGetPageSetupWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// update page footer information /// @@ -2757,9 +2757,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPageSetupPostFooter (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null); + CellsCloudResponse CellsPageSetupPostFooter (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null); /// /// update page footer information @@ -2774,9 +2774,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPageSetupPostFooterWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null); + ApiResponse CellsPageSetupPostFooterWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null); /// /// update page header information /// @@ -2790,9 +2790,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPageSetupPostHeader (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null); + CellsCloudResponse CellsPageSetupPostHeader (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null); /// /// update page header information @@ -2807,9 +2807,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPageSetupPostHeaderWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null); + ApiResponse CellsPageSetupPostHeaderWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null); /// /// Update Page Setup information. /// @@ -2821,9 +2821,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPageSetupPostPageSetup (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storage = null); + CellsCloudResponse CellsPageSetupPostPageSetup (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storageName = null); /// /// Update Page Setup information. @@ -2836,9 +2836,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPageSetupPostPageSetupWithHttpInfo (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storage = null); + ApiResponse CellsPageSetupPostPageSetupWithHttpInfo (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storageName = null); /// /// Delete a picture object in worksheet /// @@ -2850,9 +2850,9 @@ public interface ICellsApi : IApiAccessor /// The worsheet name. /// Picture index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPicturesDeleteWorksheetPicture (string name, string sheetName, int? pictureIndex, string folder = null, string storage = null); + CellsCloudResponse CellsPicturesDeleteWorksheetPicture (string name, string sheetName, int? pictureIndex, string folder = null, string storageName = null); /// /// Delete a picture object in worksheet @@ -2865,9 +2865,9 @@ public interface ICellsApi : IApiAccessor /// The worsheet name. /// Picture index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPicturesDeleteWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, string folder = null, string storage = null); + ApiResponse CellsPicturesDeleteWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, string folder = null, string storageName = null); /// /// Delete all pictures in worksheet. /// @@ -2878,9 +2878,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPicturesDeleteWorksheetPictures (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsPicturesDeleteWorksheetPictures (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete all pictures in worksheet. @@ -2892,9 +2892,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPicturesDeleteWorksheetPicturesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsPicturesDeleteWorksheetPicturesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// GRead worksheet picture by number. /// @@ -2907,9 +2907,9 @@ public interface ICellsApi : IApiAccessor /// The picture index. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// System.IO.Stream - System.IO.Stream CellsPicturesGetWorksheetPicture (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storage = null); + System.IO.Stream CellsPicturesGetWorksheetPicture (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storageName = null); /// /// GRead worksheet picture by number. @@ -2923,9 +2923,9 @@ public interface ICellsApi : IApiAccessor /// The picture index. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of System.IO.Stream - ApiResponse CellsPicturesGetWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storage = null); + ApiResponse CellsPicturesGetWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storageName = null); /// /// Read worksheet pictures. /// @@ -2936,9 +2936,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PicturesResponse - PicturesResponse CellsPicturesGetWorksheetPictures (string name, string sheetName, string folder = null, string storage = null); + PicturesResponse CellsPicturesGetWorksheetPictures (string name, string sheetName, string folder = null, string storageName = null); /// /// Read worksheet pictures. @@ -2950,9 +2950,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PicturesResponse - ApiResponse CellsPicturesGetWorksheetPicturesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsPicturesGetWorksheetPicturesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update worksheet picture by index. /// @@ -2965,9 +2965,9 @@ public interface ICellsApi : IApiAccessor /// The picture's index. /// Picture object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PictureResponse - PictureResponse CellsPicturesPostWorksheetPicture (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storage = null); + PictureResponse CellsPicturesPostWorksheetPicture (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storageName = null); /// /// Update worksheet picture by index. @@ -2981,9 +2981,9 @@ public interface ICellsApi : IApiAccessor /// The picture's index. /// Picture object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PictureResponse - ApiResponse CellsPicturesPostWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storage = null); + ApiResponse CellsPicturesPostWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storageName = null); /// /// Add a new worksheet picture. /// @@ -3000,9 +3000,9 @@ public interface ICellsApi : IApiAccessor /// The image low right column. (optional, default to 0) /// The picture path, if not provided the picture data is inspected in the request body. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PicturesResponse - PicturesResponse CellsPicturesPutWorksheetAddPicture (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storage = null); + PicturesResponse CellsPicturesPutWorksheetAddPicture (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storageName = null); /// /// Add a new worksheet picture. @@ -3020,9 +3020,9 @@ public interface ICellsApi : IApiAccessor /// The image low right column. (optional, default to 0) /// The picture path, if not provided the picture data is inspected in the request body. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PicturesResponse - ApiResponse CellsPicturesPutWorksheetAddPictureWithHttpInfo (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storage = null); + ApiResponse CellsPicturesPutWorksheetAddPictureWithHttpInfo (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storageName = null); /// /// Delete pivot field into into pivot table /// @@ -3036,9 +3036,9 @@ public interface ICellsApi : IApiAccessor /// The fields area type. /// Dto that conrains field indexes (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesDeletePivotTableField (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesDeletePivotTableField (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storageName = null); /// /// Delete pivot field into into pivot table @@ -3053,9 +3053,9 @@ public interface ICellsApi : IApiAccessor /// The fields area type. /// Dto that conrains field indexes (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesDeletePivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storage = null); + ApiResponse CellsPivotTablesDeletePivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storageName = null); /// /// Delete worksheet pivot table by index /// @@ -3067,9 +3067,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTable (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTable (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// Delete worksheet pivot table by index @@ -3082,9 +3082,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesDeleteWorksheetPivotTableWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + ApiResponse CellsPivotTablesDeleteWorksheetPivotTableWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// delete pivot filter for piovt table /// @@ -3098,9 +3098,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// delete pivot filter for piovt table @@ -3115,9 +3115,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesDeleteWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storage = null); + ApiResponse CellsPivotTablesDeleteWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// delete all pivot filters for piovt table /// @@ -3130,9 +3130,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTableFilters (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTableFilters (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// delete all pivot filters for piovt table @@ -3146,9 +3146,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesDeleteWorksheetPivotTableFiltersWithHttpInfo (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storage = null); + ApiResponse CellsPivotTablesDeleteWorksheetPivotTableFiltersWithHttpInfo (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Delete worksheet pivot tables /// @@ -3159,9 +3159,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTables (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTables (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet pivot tables @@ -3173,9 +3173,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesDeleteWorksheetPivotTablesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsPivotTablesDeleteWorksheetPivotTablesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get pivot field into into pivot table /// @@ -3189,9 +3189,9 @@ public interface ICellsApi : IApiAccessor /// The field index in the base fields. /// The fields area type. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PivotFieldResponse - PivotFieldResponse CellsPivotTablesGetPivotTableField (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storage = null); + PivotFieldResponse CellsPivotTablesGetPivotTableField (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storageName = null); /// /// Get pivot field into into pivot table @@ -3206,9 +3206,9 @@ public interface ICellsApi : IApiAccessor /// The field index in the base fields. /// The fields area type. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PivotFieldResponse - ApiResponse CellsPivotTablesGetPivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storage = null); + ApiResponse CellsPivotTablesGetPivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storageName = null); /// /// Get worksheet pivottable info by index. /// @@ -3220,9 +3220,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PivotTableResponse - PivotTableResponse CellsPivotTablesGetWorksheetPivotTable (string name, string sheetName, int? pivottableIndex, string folder = null, string storage = null); + PivotTableResponse CellsPivotTablesGetWorksheetPivotTable (string name, string sheetName, int? pivottableIndex, string folder = null, string storageName = null); /// /// Get worksheet pivottable info by index. @@ -3235,9 +3235,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PivotTableResponse - ApiResponse CellsPivotTablesGetWorksheetPivotTableWithHttpInfo (string name, string sheetName, int? pivottableIndex, string folder = null, string storage = null); + ApiResponse CellsPivotTablesGetWorksheetPivotTableWithHttpInfo (string name, string sheetName, int? pivottableIndex, string folder = null, string storageName = null); /// /// /// @@ -3250,9 +3250,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// PivotFilterResponse - PivotFilterResponse CellsPivotTablesGetWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storage = null); + PivotFilterResponse CellsPivotTablesGetWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storageName = null); /// /// @@ -3266,9 +3266,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PivotFilterResponse - ApiResponse CellsPivotTablesGetWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storage = null); + ApiResponse CellsPivotTablesGetWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storageName = null); /// /// /// @@ -3280,9 +3280,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// PivotFiltersResponse - PivotFiltersResponse CellsPivotTablesGetWorksheetPivotTableFilters (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + PivotFiltersResponse CellsPivotTablesGetWorksheetPivotTableFilters (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// @@ -3295,9 +3295,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PivotFiltersResponse - ApiResponse CellsPivotTablesGetWorksheetPivotTableFiltersWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + ApiResponse CellsPivotTablesGetWorksheetPivotTableFiltersWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// Get worksheet pivottables info. /// @@ -3308,9 +3308,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PivotTablesResponse - PivotTablesResponse CellsPivotTablesGetWorksheetPivotTables (string name, string sheetName, string folder = null, string storage = null); + PivotTablesResponse CellsPivotTablesGetWorksheetPivotTables (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet pivottables info. @@ -3322,9 +3322,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PivotTablesResponse - ApiResponse CellsPivotTablesGetWorksheetPivotTablesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsPivotTablesGetWorksheetPivotTablesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update cell style for pivot table /// @@ -3340,9 +3340,9 @@ public interface ICellsApi : IApiAccessor /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesPostPivotTableCellStyle (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesPostPivotTableCellStyle (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Update cell style for pivot table @@ -3359,9 +3359,9 @@ public interface ICellsApi : IApiAccessor /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesPostPivotTableCellStyleWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null); + ApiResponse CellsPivotTablesPostPivotTableCellStyleWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// /// @@ -3378,9 +3378,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesPostPivotTableFieldHideItem (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesPostPivotTableFieldHideItem (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// @@ -3398,9 +3398,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesPostPivotTableFieldHideItemWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storage = null); + ApiResponse CellsPivotTablesPostPivotTableFieldHideItemWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// /// @@ -3415,9 +3415,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesPostPivotTableFieldMoveTo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesPostPivotTableFieldMoveTo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storageName = null); /// /// @@ -3433,9 +3433,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesPostPivotTableFieldMoveToWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storage = null); + ApiResponse CellsPivotTablesPostPivotTableFieldMoveToWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storageName = null); /// /// Update style for pivot table /// @@ -3449,9 +3449,9 @@ public interface ICellsApi : IApiAccessor /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesPostPivotTableStyle (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesPostPivotTableStyle (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Update style for pivot table @@ -3466,9 +3466,9 @@ public interface ICellsApi : IApiAccessor /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesPostPivotTableStyleWithHttpInfo (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null); + ApiResponse CellsPivotTablesPostPivotTableStyleWithHttpInfo (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Calculates pivottable's data to cells. /// @@ -3480,9 +3480,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesPostWorksheetPivotTableCalculate (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesPostWorksheetPivotTableCalculate (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// Calculates pivottable's data to cells. @@ -3495,9 +3495,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesPostWorksheetPivotTableCalculateWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + ApiResponse CellsPivotTablesPostWorksheetPivotTableCalculateWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// /// @@ -3512,9 +3512,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesPostWorksheetPivotTableMove (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesPostWorksheetPivotTableMove (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storageName = null); /// /// @@ -3530,9 +3530,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesPostWorksheetPivotTableMoveWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storage = null); + ApiResponse CellsPivotTablesPostWorksheetPivotTableMoveWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storageName = null); /// /// Add pivot field into into pivot table /// @@ -3547,9 +3547,9 @@ public interface ICellsApi : IApiAccessor /// Dto that conrains field indexes (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesPutPivotTableField (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesPutPivotTableField (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Add pivot field into into pivot table @@ -3565,9 +3565,9 @@ public interface ICellsApi : IApiAccessor /// Dto that conrains field indexes (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesPutPivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storage = null); + ApiResponse CellsPivotTablesPutPivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Add a pivot table into worksheet. /// @@ -3579,13 +3579,13 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// CreatePivotTableRequest dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The data for the new PivotTable cache. (optional) /// The cell in the upper-left corner of the PivotTable report's destination range. (optional) /// The name of the new PivotTable report. (optional) /// Indicates whether using same data source when another existing pivot table has used this data source. If the property is true, it will save memory. (optional) /// PivotTableResponse - PivotTableResponse CellsPivotTablesPutWorksheetPivotTable (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null); + PivotTableResponse CellsPivotTablesPutWorksheetPivotTable (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null); /// /// Add a pivot table into worksheet. @@ -3598,13 +3598,13 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// CreatePivotTableRequest dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The data for the new PivotTable cache. (optional) /// The cell in the upper-left corner of the PivotTable report's destination range. (optional) /// The name of the new PivotTable report. (optional) /// Indicates whether using same data source when another existing pivot table has used this data source. If the property is true, it will save memory. (optional) /// ApiResponse of PivotTableResponse - ApiResponse CellsPivotTablesPutWorksheetPivotTableWithHttpInfo (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null); + ApiResponse CellsPivotTablesPutWorksheetPivotTableWithHttpInfo (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null); /// /// Add pivot filter for piovt table index /// @@ -3618,9 +3618,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPivotTablesPutWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storage = null); + CellsCloudResponse CellsPivotTablesPutWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Add pivot filter for piovt table index @@ -3635,9 +3635,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPivotTablesPutWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storage = null); + ApiResponse CellsPivotTablesPutWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Cell calculate formula /// @@ -3650,9 +3650,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostCellCalculate (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostCellCalculate (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storageName = null); /// /// Cell calculate formula @@ -3666,9 +3666,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostCellCalculateWithHttpInfo (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storage = null); + ApiResponse CellsPostCellCalculateWithHttpInfo (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storageName = null); /// /// Set cell characters /// @@ -3681,9 +3681,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostCellCharacters (string name, string sheetName, string cellName, List options = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostCellCharacters (string name, string sheetName, string cellName, List options = null, string folder = null, string storageName = null); /// /// Set cell characters @@ -3697,9 +3697,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostCellCharactersWithHttpInfo (string name, string sheetName, string cellName, List options = null, string folder = null, string storage = null); + ApiResponse CellsPostCellCharactersWithHttpInfo (string name, string sheetName, string cellName, List options = null, string folder = null, string storageName = null); /// /// Clear cells contents. /// @@ -3715,9 +3715,9 @@ public interface ICellsApi : IApiAccessor /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostClearContents (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostClearContents (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null); /// /// Clear cells contents. @@ -3734,9 +3734,9 @@ public interface ICellsApi : IApiAccessor /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostClearContentsWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null); + ApiResponse CellsPostClearContentsWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null); /// /// Clear cells contents. /// @@ -3752,9 +3752,9 @@ public interface ICellsApi : IApiAccessor /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostClearFormats (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostClearFormats (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null); /// /// Clear cells contents. @@ -3771,9 +3771,9 @@ public interface ICellsApi : IApiAccessor /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostClearFormatsWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null); + ApiResponse CellsPostClearFormatsWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null); /// /// Set column style /// @@ -3786,9 +3786,9 @@ public interface ICellsApi : IApiAccessor /// The column index. /// Style dto (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostColumnStyle (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostColumnStyle (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storageName = null); /// /// Set column style @@ -3802,9 +3802,9 @@ public interface ICellsApi : IApiAccessor /// The column index. /// Style dto (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostColumnStyleWithHttpInfo (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storage = null); + ApiResponse CellsPostColumnStyleWithHttpInfo (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storageName = null); /// /// Copy cell into cell /// @@ -3820,9 +3820,9 @@ public interface ICellsApi : IApiAccessor /// Source row (optional) /// Source column (optional) /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostCopyCellIntoCell (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostCopyCellIntoCell (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storageName = null); /// /// Copy cell into cell @@ -3839,9 +3839,9 @@ public interface ICellsApi : IApiAccessor /// Source row (optional) /// Source column (optional) /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostCopyCellIntoCellWithHttpInfo (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storage = null); + ApiResponse CellsPostCopyCellIntoCellWithHttpInfo (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storageName = null); /// /// Copy worksheet columns. /// @@ -3856,9 +3856,9 @@ public interface ICellsApi : IApiAccessor /// The copied column number /// The Worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostCopyWorksheetColumns (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostCopyWorksheetColumns (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storageName = null); /// /// Copy worksheet columns. @@ -3874,9 +3874,9 @@ public interface ICellsApi : IApiAccessor /// The copied column number /// The Worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostCopyWorksheetColumnsWithHttpInfo (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storage = null); + ApiResponse CellsPostCopyWorksheetColumnsWithHttpInfo (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storageName = null); /// /// Copy worksheet rows. /// @@ -3891,9 +3891,9 @@ public interface ICellsApi : IApiAccessor /// The copied row number /// worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostCopyWorksheetRows (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostCopyWorksheetRows (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storageName = null); /// /// Copy worksheet rows. @@ -3909,9 +3909,9 @@ public interface ICellsApi : IApiAccessor /// The copied row number /// worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostCopyWorksheetRowsWithHttpInfo (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storage = null); + ApiResponse CellsPostCopyWorksheetRowsWithHttpInfo (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storageName = null); /// /// Group worksheet columns. /// @@ -3925,9 +3925,9 @@ public interface ICellsApi : IApiAccessor /// The last column index to be operated. /// columns visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostGroupWorksheetColumns (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostGroupWorksheetColumns (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null); /// /// Group worksheet columns. @@ -3942,9 +3942,9 @@ public interface ICellsApi : IApiAccessor /// The last column index to be operated. /// columns visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostGroupWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null); + ApiResponse CellsPostGroupWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null); /// /// Group worksheet rows. /// @@ -3958,9 +3958,9 @@ public interface ICellsApi : IApiAccessor /// The last row index to be operated. /// rows visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostGroupWorksheetRows (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostGroupWorksheetRows (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null); /// /// Group worksheet rows. @@ -3975,9 +3975,9 @@ public interface ICellsApi : IApiAccessor /// The last row index to be operated. /// rows visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostGroupWorksheetRowsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null); + ApiResponse CellsPostGroupWorksheetRowsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null); /// /// Hide worksheet columns. /// @@ -3990,9 +3990,9 @@ public interface ICellsApi : IApiAccessor /// The begin column index to be operated. /// Number of columns to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostHideWorksheetColumns (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storage = null); + CellsCloudResponse CellsPostHideWorksheetColumns (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storageName = null); /// /// Hide worksheet columns. @@ -4006,9 +4006,9 @@ public interface ICellsApi : IApiAccessor /// The begin column index to be operated. /// Number of columns to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostHideWorksheetColumnsWithHttpInfo (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storage = null); + ApiResponse CellsPostHideWorksheetColumnsWithHttpInfo (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storageName = null); /// /// Hide worksheet rows. /// @@ -4021,9 +4021,9 @@ public interface ICellsApi : IApiAccessor /// The begin row index to be operated. /// Number of rows to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostHideWorksheetRows (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storage = null); + CellsCloudResponse CellsPostHideWorksheetRows (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storageName = null); /// /// Hide worksheet rows. @@ -4037,9 +4037,9 @@ public interface ICellsApi : IApiAccessor /// The begin row index to be operated. /// Number of rows to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostHideWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storage = null); + ApiResponse CellsPostHideWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storageName = null); /// /// Set row style. /// @@ -4052,9 +4052,9 @@ public interface ICellsApi : IApiAccessor /// The row index. /// Style dto (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostRowStyle (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostRowStyle (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storageName = null); /// /// Set row style. @@ -4068,9 +4068,9 @@ public interface ICellsApi : IApiAccessor /// The row index. /// Style dto (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostRowStyleWithHttpInfo (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storage = null); + ApiResponse CellsPostRowStyleWithHttpInfo (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storageName = null); /// /// Set htmlstring value into cell /// @@ -4083,9 +4083,9 @@ public interface ICellsApi : IApiAccessor /// The cell name. /// /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellResponse - CellResponse CellsPostSetCellHtmlString (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storage = null); + CellResponse CellsPostSetCellHtmlString (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storageName = null); /// /// Set htmlstring value into cell @@ -4099,9 +4099,9 @@ public interface ICellsApi : IApiAccessor /// The cell name. /// /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellResponse - ApiResponse CellsPostSetCellHtmlStringWithHttpInfo (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storage = null); + ApiResponse CellsPostSetCellHtmlStringWithHttpInfo (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storageName = null); /// /// Set cell range value /// @@ -4115,9 +4115,9 @@ public interface ICellsApi : IApiAccessor /// Range value /// Value data type (like \"int\") /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostSetCellRangeValue (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storage = null); + CellsCloudResponse CellsPostSetCellRangeValue (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storageName = null); /// /// Set cell range value @@ -4132,9 +4132,9 @@ public interface ICellsApi : IApiAccessor /// Range value /// Value data type (like \"int\") /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostSetCellRangeValueWithHttpInfo (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storage = null); + ApiResponse CellsPostSetCellRangeValueWithHttpInfo (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storageName = null); /// /// Set worksheet column width. /// @@ -4147,9 +4147,9 @@ public interface ICellsApi : IApiAccessor /// The column index. /// The width. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ColumnResponse - ColumnResponse CellsPostSetWorksheetColumnWidth (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storage = null); + ColumnResponse CellsPostSetWorksheetColumnWidth (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storageName = null); /// /// Set worksheet column width. @@ -4163,9 +4163,9 @@ public interface ICellsApi : IApiAccessor /// The column index. /// The width. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ColumnResponse - ApiResponse CellsPostSetWorksheetColumnWidthWithHttpInfo (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storage = null); + ApiResponse CellsPostSetWorksheetColumnWidthWithHttpInfo (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storageName = null); /// /// Ungroup worksheet columns. /// @@ -4178,9 +4178,9 @@ public interface ICellsApi : IApiAccessor /// The first column index to be operated. /// The last column index to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostUngroupWorksheetColumns (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storage = null); + CellsCloudResponse CellsPostUngroupWorksheetColumns (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storageName = null); /// /// Ungroup worksheet columns. @@ -4194,9 +4194,9 @@ public interface ICellsApi : IApiAccessor /// The first column index to be operated. /// The last column index to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostUngroupWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storage = null); + ApiResponse CellsPostUngroupWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storageName = null); /// /// Ungroup worksheet rows. /// @@ -4210,9 +4210,9 @@ public interface ICellsApi : IApiAccessor /// The last row index to be operated. /// Is all row to be operated (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostUngroupWorksheetRows (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostUngroupWorksheetRows (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storageName = null); /// /// Ungroup worksheet rows. @@ -4227,9 +4227,9 @@ public interface ICellsApi : IApiAccessor /// The last row index to be operated. /// Is all row to be operated (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostUngroupWorksheetRowsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storage = null); + ApiResponse CellsPostUngroupWorksheetRowsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storageName = null); /// /// Unhide worksheet columns. /// @@ -4243,9 +4243,9 @@ public interface ICellsApi : IApiAccessor /// Number of columns to be operated. /// The new column width. (optional, default to 50.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostUnhideWorksheetColumns (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostUnhideWorksheetColumns (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storageName = null); /// /// Unhide worksheet columns. @@ -4260,9 +4260,9 @@ public interface ICellsApi : IApiAccessor /// Number of columns to be operated. /// The new column width. (optional, default to 50.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostUnhideWorksheetColumnsWithHttpInfo (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storage = null); + ApiResponse CellsPostUnhideWorksheetColumnsWithHttpInfo (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storageName = null); /// /// Unhide worksheet rows. /// @@ -4276,9 +4276,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. /// The new row height. (optional, default to 15.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostUnhideWorksheetRows (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostUnhideWorksheetRows (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storageName = null); /// /// Unhide worksheet rows. @@ -4293,9 +4293,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. /// The new row height. (optional, default to 15.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostUnhideWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storage = null); + ApiResponse CellsPostUnhideWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storageName = null); /// /// Update cell's style. /// @@ -4308,9 +4308,9 @@ public interface ICellsApi : IApiAccessor /// The cell name. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// StyleResponse - StyleResponse CellsPostUpdateWorksheetCellStyle (string name, string sheetName, string cellName, Style style = null, string folder = null, string storage = null); + StyleResponse CellsPostUpdateWorksheetCellStyle (string name, string sheetName, string cellName, Style style = null, string folder = null, string storageName = null); /// /// Update cell's style. @@ -4324,9 +4324,9 @@ public interface ICellsApi : IApiAccessor /// The cell name. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of StyleResponse - ApiResponse CellsPostUpdateWorksheetCellStyleWithHttpInfo (string name, string sheetName, string cellName, Style style = null, string folder = null, string storage = null); + ApiResponse CellsPostUpdateWorksheetCellStyleWithHttpInfo (string name, string sheetName, string cellName, Style style = null, string folder = null, string storageName = null); /// /// Update cell's range style. /// @@ -4339,9 +4339,9 @@ public interface ICellsApi : IApiAccessor /// The range. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostUpdateWorksheetRangeStyle (string name, string sheetName, string range, Style style = null, string folder = null, string storage = null); + CellsCloudResponse CellsPostUpdateWorksheetRangeStyle (string name, string sheetName, string range, Style style = null, string folder = null, string storageName = null); /// /// Update cell's range style. @@ -4355,9 +4355,9 @@ public interface ICellsApi : IApiAccessor /// The range. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostUpdateWorksheetRangeStyleWithHttpInfo (string name, string sheetName, string range, Style style = null, string folder = null, string storage = null); + ApiResponse CellsPostUpdateWorksheetRangeStyleWithHttpInfo (string name, string sheetName, string range, Style style = null, string folder = null, string storageName = null); /// /// Update worksheet row. /// @@ -4370,9 +4370,9 @@ public interface ICellsApi : IApiAccessor /// The row index. /// The new row height. (optional, default to 0.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RowResponse - RowResponse CellsPostUpdateWorksheetRow (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storage = null); + RowResponse CellsPostUpdateWorksheetRow (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storageName = null); /// /// Update worksheet row. @@ -4386,9 +4386,9 @@ public interface ICellsApi : IApiAccessor /// The row index. /// The new row height. (optional, default to 0.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RowResponse - ApiResponse CellsPostUpdateWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storage = null); + ApiResponse CellsPostUpdateWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storageName = null); /// /// Set cell value. /// @@ -4403,9 +4403,9 @@ public interface ICellsApi : IApiAccessor /// The value type. (optional) /// Formula for cell (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellResponse - CellResponse CellsPostWorksheetCellSetValue (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storage = null); + CellResponse CellsPostWorksheetCellSetValue (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storageName = null); /// /// Set cell value. @@ -4421,9 +4421,9 @@ public interface ICellsApi : IApiAccessor /// The value type. (optional) /// Formula for cell (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellResponse - ApiResponse CellsPostWorksheetCellSetValueWithHttpInfo (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storage = null); + ApiResponse CellsPostWorksheetCellSetValueWithHttpInfo (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storageName = null); /// /// Merge cells. /// @@ -4438,9 +4438,9 @@ public interface ICellsApi : IApiAccessor /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostWorksheetMerge (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + CellsCloudResponse CellsPostWorksheetMerge (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Merge cells. @@ -4456,9 +4456,9 @@ public interface ICellsApi : IApiAccessor /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostWorksheetMergeWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + ApiResponse CellsPostWorksheetMergeWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Unmerge cells. /// @@ -4473,9 +4473,9 @@ public interface ICellsApi : IApiAccessor /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPostWorksheetUnmerge (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + CellsCloudResponse CellsPostWorksheetUnmerge (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Unmerge cells. @@ -4491,9 +4491,9 @@ public interface ICellsApi : IApiAccessor /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPostWorksheetUnmergeWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + ApiResponse CellsPostWorksheetUnmergeWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Delete all custom document properties and clean built-in ones. /// @@ -4503,9 +4503,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsDocumentPropertiesResponse - CellsDocumentPropertiesResponse CellsPropertiesDeleteDocumentProperties (string name, string folder = null, string storage = null); + CellsDocumentPropertiesResponse CellsPropertiesDeleteDocumentProperties (string name, string folder = null, string storageName = null); /// /// Delete all custom document properties and clean built-in ones. @@ -4516,9 +4516,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsDocumentPropertiesResponse - ApiResponse CellsPropertiesDeleteDocumentPropertiesWithHttpInfo (string name, string folder = null, string storage = null); + ApiResponse CellsPropertiesDeleteDocumentPropertiesWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Delete document property. /// @@ -4529,9 +4529,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsDocumentPropertiesResponse - CellsDocumentPropertiesResponse CellsPropertiesDeleteDocumentProperty (string name, string propertyName, string folder = null, string storage = null); + CellsDocumentPropertiesResponse CellsPropertiesDeleteDocumentProperty (string name, string propertyName, string folder = null, string storageName = null); /// /// Delete document property. @@ -4543,9 +4543,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsDocumentPropertiesResponse - ApiResponse CellsPropertiesDeleteDocumentPropertyWithHttpInfo (string name, string propertyName, string folder = null, string storage = null); + ApiResponse CellsPropertiesDeleteDocumentPropertyWithHttpInfo (string name, string propertyName, string folder = null, string storageName = null); /// /// Read document properties. /// @@ -4555,9 +4555,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsDocumentPropertiesResponse - CellsDocumentPropertiesResponse CellsPropertiesGetDocumentProperties (string name, string folder = null, string storage = null); + CellsDocumentPropertiesResponse CellsPropertiesGetDocumentProperties (string name, string folder = null, string storageName = null); /// /// Read document properties. @@ -4568,9 +4568,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsDocumentPropertiesResponse - ApiResponse CellsPropertiesGetDocumentPropertiesWithHttpInfo (string name, string folder = null, string storage = null); + ApiResponse CellsPropertiesGetDocumentPropertiesWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Read document property by name. /// @@ -4581,9 +4581,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsDocumentPropertyResponse - CellsDocumentPropertyResponse CellsPropertiesGetDocumentProperty (string name, string propertyName, string folder = null, string storage = null); + CellsDocumentPropertyResponse CellsPropertiesGetDocumentProperty (string name, string propertyName, string folder = null, string storageName = null); /// /// Read document property by name. @@ -4595,9 +4595,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsDocumentPropertyResponse - ApiResponse CellsPropertiesGetDocumentPropertyWithHttpInfo (string name, string propertyName, string folder = null, string storage = null); + ApiResponse CellsPropertiesGetDocumentPropertyWithHttpInfo (string name, string propertyName, string folder = null, string storageName = null); /// /// Set/create document property. /// @@ -4609,9 +4609,9 @@ public interface ICellsApi : IApiAccessor /// The property name. /// with new property value. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsDocumentPropertyResponse - CellsDocumentPropertyResponse CellsPropertiesPutDocumentProperty (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storage = null); + CellsDocumentPropertyResponse CellsPropertiesPutDocumentProperty (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storageName = null); /// /// Set/create document property. @@ -4624,9 +4624,9 @@ public interface ICellsApi : IApiAccessor /// The property name. /// with new property value. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsDocumentPropertyResponse - ApiResponse CellsPropertiesPutDocumentPropertyWithHttpInfo (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storage = null); + ApiResponse CellsPropertiesPutDocumentPropertyWithHttpInfo (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storageName = null); /// /// Insert worksheet columns. /// @@ -4640,9 +4640,9 @@ public interface ICellsApi : IApiAccessor /// The columns. /// The update reference. (optional, default to true) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ColumnsResponse - ColumnsResponse CellsPutInsertWorksheetColumns (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storage = null); + ColumnsResponse CellsPutInsertWorksheetColumns (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storageName = null); /// /// Insert worksheet columns. @@ -4657,9 +4657,9 @@ public interface ICellsApi : IApiAccessor /// The columns. /// The update reference. (optional, default to true) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ColumnsResponse - ApiResponse CellsPutInsertWorksheetColumnsWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storage = null); + ApiResponse CellsPutInsertWorksheetColumnsWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storageName = null); /// /// Insert new worksheet row. /// @@ -4671,9 +4671,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The new row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RowResponse - RowResponse CellsPutInsertWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + RowResponse CellsPutInsertWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Insert new worksheet row. @@ -4686,9 +4686,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The new row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RowResponse - ApiResponse CellsPutInsertWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + ApiResponse CellsPutInsertWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Insert several new worksheet rows. /// @@ -4702,9 +4702,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsPutInsertWorksheetRows (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null); + CellsCloudResponse CellsPutInsertWorksheetRows (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null); /// /// Insert several new worksheet rows. @@ -4719,9 +4719,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsPutInsertWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null); + ApiResponse CellsPutInsertWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null); /// /// Get cells list in a range by range name or row column indexes /// @@ -4737,9 +4737,9 @@ public interface ICellsApi : IApiAccessor /// the count of rows in the range (optional) /// the count of columns in the range (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RangeValueResponse - RangeValueResponse CellsRangesGetWorksheetCellsRangeValue (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storage = null); + RangeValueResponse CellsRangesGetWorksheetCellsRangeValue (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storageName = null); /// /// Get cells list in a range by range name or row column indexes @@ -4756,9 +4756,9 @@ public interface ICellsApi : IApiAccessor /// the count of rows in the range (optional) /// the count of columns in the range (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RangeValueResponse - ApiResponse CellsRangesGetWorksheetCellsRangeValueWithHttpInfo (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storage = null); + ApiResponse CellsRangesGetWorksheetCellsRangeValueWithHttpInfo (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storageName = null); /// /// Set column width of range /// @@ -4771,9 +4771,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsRangesPostWorksheetCellsRangeColumnWidth (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null); + CellsCloudResponse CellsRangesPostWorksheetCellsRangeColumnWidth (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null); /// /// Set column width of range @@ -4787,9 +4787,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsRangesPostWorksheetCellsRangeColumnWidthWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null); + ApiResponse CellsRangesPostWorksheetCellsRangeColumnWidthWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null); /// /// Combines a range of cells into a single cell. /// @@ -4801,9 +4801,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsRangesPostWorksheetCellsRangeMerge (string name, string sheetName, Range range = null, string folder = null, string storage = null); + CellsCloudResponse CellsRangesPostWorksheetCellsRangeMerge (string name, string sheetName, Range range = null, string folder = null, string storageName = null); /// /// Combines a range of cells into a single cell. @@ -4816,9 +4816,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsRangesPostWorksheetCellsRangeMergeWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storage = null); + ApiResponse CellsRangesPostWorksheetCellsRangeMergeWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storageName = null); /// /// Move the current range to the dest range. /// @@ -4832,9 +4832,9 @@ public interface ICellsApi : IApiAccessor /// The start column of the dest range. /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsRangesPostWorksheetCellsRangeMoveTo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storage = null); + CellsCloudResponse CellsRangesPostWorksheetCellsRangeMoveTo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storageName = null); /// /// Move the current range to the dest range. @@ -4849,9 +4849,9 @@ public interface ICellsApi : IApiAccessor /// The start column of the dest range. /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsRangesPostWorksheetCellsRangeMoveToWithHttpInfo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storage = null); + ApiResponse CellsRangesPostWorksheetCellsRangeMoveToWithHttpInfo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storageName = null); /// /// Sets outline border around a range of cells. /// @@ -4863,9 +4863,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// Range Set OutlineBorder Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsRangesPostWorksheetCellsRangeOutlineBorder (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storage = null); + CellsCloudResponse CellsRangesPostWorksheetCellsRangeOutlineBorder (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storageName = null); /// /// Sets outline border around a range of cells. @@ -4878,9 +4878,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// Range Set OutlineBorder Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsRangesPostWorksheetCellsRangeOutlineBorderWithHttpInfo (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storage = null); + ApiResponse CellsRangesPostWorksheetCellsRangeOutlineBorderWithHttpInfo (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storageName = null); /// /// set row height of range /// @@ -4893,9 +4893,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsRangesPostWorksheetCellsRangeRowHeight (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null); + CellsCloudResponse CellsRangesPostWorksheetCellsRangeRowHeight (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null); /// /// set row height of range @@ -4909,9 +4909,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsRangesPostWorksheetCellsRangeRowHeightWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null); + ApiResponse CellsRangesPostWorksheetCellsRangeRowHeightWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null); /// /// Sets the style of the range. /// @@ -4923,9 +4923,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// Range Set Style Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsRangesPostWorksheetCellsRangeStyle (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storage = null); + CellsCloudResponse CellsRangesPostWorksheetCellsRangeStyle (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storageName = null); /// /// Sets the style of the range. @@ -4938,9 +4938,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// Range Set Style Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsRangesPostWorksheetCellsRangeStyleWithHttpInfo (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storage = null); + ApiResponse CellsRangesPostWorksheetCellsRangeStyleWithHttpInfo (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storageName = null); /// /// Unmerges merged cells of this range. /// @@ -4952,9 +4952,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsRangesPostWorksheetCellsRangeUnmerge (string name, string sheetName, Range range = null, string folder = null, string storage = null); + CellsCloudResponse CellsRangesPostWorksheetCellsRangeUnmerge (string name, string sheetName, Range range = null, string folder = null, string storageName = null); /// /// Unmerges merged cells of this range. @@ -4967,9 +4967,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsRangesPostWorksheetCellsRangeUnmergeWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storage = null); + ApiResponse CellsRangesPostWorksheetCellsRangeUnmergeWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storageName = null); /// /// Puts a value into the range, if appropriate the value will be converted to other data type and cell's number format will be reset. /// @@ -4984,9 +4984,9 @@ public interface ICellsApi : IApiAccessor /// True: converted to other data type if appropriate. (optional, default to false) /// True: set the number format to cell's style when converting to other data type (optional, default to false) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsRangesPostWorksheetCellsRangeValue (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storage = null); + CellsCloudResponse CellsRangesPostWorksheetCellsRangeValue (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storageName = null); /// /// Puts a value into the range, if appropriate the value will be converted to other data type and cell's number format will be reset. @@ -5002,9 +5002,9 @@ public interface ICellsApi : IApiAccessor /// True: converted to other data type if appropriate. (optional, default to false) /// True: set the number format to cell's style when converting to other data type (optional, default to false) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsRangesPostWorksheetCellsRangeValueWithHttpInfo (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storage = null); + ApiResponse CellsRangesPostWorksheetCellsRangeValueWithHttpInfo (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storageName = null); /// /// copy range in the worksheet /// @@ -5016,9 +5016,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// copydata,copystyle,copyto,copyvalue (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsRangesPostWorksheetCellsRanges (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storage = null); + CellsCloudResponse CellsRangesPostWorksheetCellsRanges (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storageName = null); /// /// copy range in the worksheet @@ -5031,9 +5031,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// copydata,copystyle,copyto,copyvalue (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsRangesPostWorksheetCellsRangesWithHttpInfo (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storage = null); + ApiResponse CellsRangesPostWorksheetCellsRangesWithHttpInfo (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storageName = null); /// /// Convert document and save result to storage. /// @@ -5047,9 +5047,9 @@ public interface ICellsApi : IApiAccessor /// Autofit rows. (optional, default to false) /// Autofit columns. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// SaveResponse - SaveResponse CellsSaveAsPostDocumentSaveAs (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storage = null); + SaveResponse CellsSaveAsPostDocumentSaveAs (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null); /// /// Convert document and save result to storage. @@ -5064,9 +5064,9 @@ public interface ICellsApi : IApiAccessor /// Autofit rows. (optional, default to false) /// Autofit columns. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of SaveResponse - ApiResponse CellsSaveAsPostDocumentSaveAsWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storage = null); + ApiResponse CellsSaveAsPostDocumentSaveAsWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null); /// /// Delete a shape in worksheet /// @@ -5078,9 +5078,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsShapesDeleteWorksheetShape (string name, string sheetName, int? shapeindex, string folder = null, string storage = null); + CellsCloudResponse CellsShapesDeleteWorksheetShape (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null); /// /// Delete a shape in worksheet @@ -5093,9 +5093,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsShapesDeleteWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storage = null); + ApiResponse CellsShapesDeleteWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null); /// /// delete all shapes in worksheet /// @@ -5106,9 +5106,9 @@ public interface ICellsApi : IApiAccessor /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsShapesDeleteWorksheetShapes (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsShapesDeleteWorksheetShapes (string name, string sheetName, string folder = null, string storageName = null); /// /// delete all shapes in worksheet @@ -5120,9 +5120,9 @@ public interface ICellsApi : IApiAccessor /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsShapesDeleteWorksheetShapesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsShapesDeleteWorksheetShapesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet shape /// @@ -5134,9 +5134,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ShapeResponse - ShapeResponse CellsShapesGetWorksheetShape (string name, string sheetName, int? shapeindex, string folder = null, string storage = null); + ShapeResponse CellsShapesGetWorksheetShape (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null); /// /// Get worksheet shape @@ -5149,9 +5149,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ShapeResponse - ApiResponse CellsShapesGetWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storage = null); + ApiResponse CellsShapesGetWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null); /// /// Get worksheet shapes /// @@ -5162,9 +5162,9 @@ public interface ICellsApi : IApiAccessor /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ShapesResponse - ShapesResponse CellsShapesGetWorksheetShapes (string name, string sheetName, string folder = null, string storage = null); + ShapesResponse CellsShapesGetWorksheetShapes (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet shapes @@ -5176,9 +5176,9 @@ public interface ICellsApi : IApiAccessor /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ShapesResponse - ApiResponse CellsShapesGetWorksheetShapesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsShapesGetWorksheetShapesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update a shape in worksheet /// @@ -5191,9 +5191,9 @@ public interface ICellsApi : IApiAccessor /// shape index in worksheet shapes. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsShapesPostWorksheetShape (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storage = null); + CellsCloudResponse CellsShapesPostWorksheetShape (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storageName = null); /// /// Update a shape in worksheet @@ -5207,9 +5207,9 @@ public interface ICellsApi : IApiAccessor /// shape index in worksheet shapes. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsShapesPostWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storage = null); + ApiResponse CellsShapesPostWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storageName = null); /// /// Add shape in worksheet /// @@ -5219,17 +5219,18 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// document name. /// worksheet name. - /// shape object type - /// Upper left row index. - /// Upper left column index. - /// Represents the vertical offset of Spinner from its left row, in unit of pixel. - /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. - /// Represents the height of Spinner, in unit of pixel. - /// Represents the width of Spinner, in unit of pixel. - /// Document's folder. (optional) - /// storage name. (optional) + /// (optional) + /// shape object type (optional) + /// Upper left row index. (optional) + /// Upper left column index. (optional) + /// Represents the vertical offset of Spinner from its left row, in unit of pixel. (optional) + /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. (optional) + /// Represents the height of Spinner, in unit of pixel. (optional) + /// Represents the width of Spinner, in unit of pixel. (optional) + /// Document's folder. (optional) + /// storage name. (optional) /// ShapeResponse - ShapeResponse CellsShapesPutWorksheetShape (string name, string sheetName, string drawingType, int? upperLeftRow, int? upperLeftColumn, int? top, int? left, int? width, int? height, string folder = null, string storage = null); + ShapeResponse CellsShapesPutWorksheetShape (string name, string sheetName, Shape shapeDTO = null, string drawingType = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? top = null, int? left = null, int? width = null, int? height = null, string folder = null, string storageName = null); /// /// Add shape in worksheet @@ -5240,17 +5241,18 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// document name. /// worksheet name. - /// shape object type - /// Upper left row index. - /// Upper left column index. - /// Represents the vertical offset of Spinner from its left row, in unit of pixel. - /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. - /// Represents the height of Spinner, in unit of pixel. - /// Represents the width of Spinner, in unit of pixel. - /// Document's folder. (optional) - /// storage name. (optional) + /// (optional) + /// shape object type (optional) + /// Upper left row index. (optional) + /// Upper left column index. (optional) + /// Represents the vertical offset of Spinner from its left row, in unit of pixel. (optional) + /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. (optional) + /// Represents the height of Spinner, in unit of pixel. (optional) + /// Represents the width of Spinner, in unit of pixel. (optional) + /// Document's folder. (optional) + /// storage name. (optional) /// ApiResponse of ShapeResponse - ApiResponse CellsShapesPutWorksheetShapeWithHttpInfo (string name, string sheetName, string drawingType, int? upperLeftRow, int? upperLeftColumn, int? top, int? left, int? width, int? height, string folder = null, string storage = null); + ApiResponse CellsShapesPutWorksheetShapeWithHttpInfo (string name, string sheetName, Shape shapeDTO = null, string drawingType = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? top = null, int? left = null, int? width = null, int? height = null, string folder = null, string storageName = null); /// /// Run tasks /// @@ -5282,9 +5284,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Encryption settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookDeleteDecryptDocument (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookDeleteDecryptDocument (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null); /// /// Decrypt document. @@ -5296,9 +5298,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Encryption settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookDeleteDecryptDocumentWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null); + ApiResponse CellsWorkbookDeleteDecryptDocumentWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null); /// /// Unprotect document from changes. /// @@ -5308,9 +5310,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookDeleteDocumentUnprotectFromChanges (string name, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookDeleteDocumentUnprotectFromChanges (string name, string folder = null, string storageName = null); /// /// Unprotect document from changes. @@ -5321,9 +5323,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookDeleteDocumentUnprotectFromChangesWithHttpInfo (string name, string folder = null, string storage = null); + ApiResponse CellsWorkbookDeleteDocumentUnprotectFromChangesWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Unprotect document. /// @@ -5334,9 +5336,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Protection settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookDeleteUnprotectDocument (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookDeleteUnprotectDocument (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null); /// /// Unprotect document. @@ -5348,9 +5350,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Protection settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookDeleteUnprotectDocumentWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null); + ApiResponse CellsWorkbookDeleteUnprotectDocumentWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null); /// /// Set worksheet background image. /// @@ -5360,9 +5362,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookDeleteWorkbookBackground (string name, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookDeleteWorkbookBackground (string name, string folder = null, string storageName = null); /// /// Set worksheet background image. @@ -5373,9 +5375,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookDeleteWorkbookBackgroundWithHttpInfo (string name, string folder = null, string storage = null); + ApiResponse CellsWorkbookDeleteWorkbookBackgroundWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Clean workbook's names. /// @@ -5386,9 +5388,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookDeleteWorkbookName (string name, string nameName, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookDeleteWorkbookName (string name, string nameName, string folder = null, string storageName = null); /// /// Clean workbook's names. @@ -5400,9 +5402,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookDeleteWorkbookNameWithHttpInfo (string name, string nameName, string folder = null, string storage = null); + ApiResponse CellsWorkbookDeleteWorkbookNameWithHttpInfo (string name, string nameName, string folder = null, string storageName = null); /// /// Clean workbook's names. /// @@ -5412,9 +5414,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookDeleteWorkbookNames (string name, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookDeleteWorkbookNames (string name, string folder = null, string storageName = null); /// /// Clean workbook's names. @@ -5425,9 +5427,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookDeleteWorkbookNamesWithHttpInfo (string name, string folder = null, string storage = null); + ApiResponse CellsWorkbookDeleteWorkbookNamesWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Read workbook info or export. /// @@ -5441,10 +5443,10 @@ public interface ICellsApi : IApiAccessor /// Set document rows to be autofit. (optional, default to false) /// Only save table data. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The document output folder. (optional) /// System.IO.Stream - System.IO.Stream CellsWorkbookGetWorkbook (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storage = null, string outPath = null); + System.IO.Stream CellsWorkbookGetWorkbook (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storageName = null, string outPath = null); /// /// Read workbook info or export. @@ -5459,10 +5461,10 @@ public interface ICellsApi : IApiAccessor /// Set document rows to be autofit. (optional, default to false) /// Only save table data. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The document output folder. (optional) /// ApiResponse of System.IO.Stream - ApiResponse CellsWorkbookGetWorkbookWithHttpInfo (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storage = null, string outPath = null); + ApiResponse CellsWorkbookGetWorkbookWithHttpInfo (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storageName = null, string outPath = null); /// /// Read workbook default style info. /// @@ -5472,9 +5474,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// StyleResponse - StyleResponse CellsWorkbookGetWorkbookDefaultStyle (string name, string folder = null, string storage = null); + StyleResponse CellsWorkbookGetWorkbookDefaultStyle (string name, string folder = null, string storageName = null); /// /// Read workbook default style info. @@ -5485,9 +5487,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of StyleResponse - ApiResponse CellsWorkbookGetWorkbookDefaultStyleWithHttpInfo (string name, string folder = null, string storage = null); + ApiResponse CellsWorkbookGetWorkbookDefaultStyleWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Read workbook's name. /// @@ -5498,9 +5500,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// NameResponse - NameResponse CellsWorkbookGetWorkbookName (string name, string nameName, string folder = null, string storage = null); + NameResponse CellsWorkbookGetWorkbookName (string name, string nameName, string folder = null, string storageName = null); /// /// Read workbook's name. @@ -5512,9 +5514,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of NameResponse - ApiResponse CellsWorkbookGetWorkbookNameWithHttpInfo (string name, string nameName, string folder = null, string storage = null); + ApiResponse CellsWorkbookGetWorkbookNameWithHttpInfo (string name, string nameName, string folder = null, string storageName = null); /// /// Get workbook's name value. /// @@ -5525,9 +5527,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RangeValueResponse - RangeValueResponse CellsWorkbookGetWorkbookNameValue (string name, string nameName, string folder = null, string storage = null); + RangeValueResponse CellsWorkbookGetWorkbookNameValue (string name, string nameName, string folder = null, string storageName = null); /// /// Get workbook's name value. @@ -5539,9 +5541,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RangeValueResponse - ApiResponse CellsWorkbookGetWorkbookNameValueWithHttpInfo (string name, string nameName, string folder = null, string storage = null); + ApiResponse CellsWorkbookGetWorkbookNameValueWithHttpInfo (string name, string nameName, string folder = null, string storageName = null); /// /// Read workbook's names. /// @@ -5551,9 +5553,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// NamesResponse - NamesResponse CellsWorkbookGetWorkbookNames (string name, string folder = null, string storage = null); + NamesResponse CellsWorkbookGetWorkbookNames (string name, string folder = null, string storageName = null); /// /// Read workbook's names. @@ -5564,9 +5566,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of NamesResponse - ApiResponse CellsWorkbookGetWorkbookNamesWithHttpInfo (string name, string folder = null, string storage = null); + ApiResponse CellsWorkbookGetWorkbookNamesWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Get Workbook Settings DTO /// @@ -5576,9 +5578,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorkbookSettingsResponse - WorkbookSettingsResponse CellsWorkbookGetWorkbookSettings (string name, string folder = null, string storage = null); + WorkbookSettingsResponse CellsWorkbookGetWorkbookSettings (string name, string folder = null, string storageName = null); /// /// Get Workbook Settings DTO @@ -5589,9 +5591,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorkbookSettingsResponse - ApiResponse CellsWorkbookGetWorkbookSettingsWithHttpInfo (string name, string folder = null, string storage = null); + ApiResponse CellsWorkbookGetWorkbookSettingsWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Read workbook's text items. /// @@ -5601,9 +5603,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TextItemsResponse - TextItemsResponse CellsWorkbookGetWorkbookTextItems (string name, string folder = null, string storage = null); + TextItemsResponse CellsWorkbookGetWorkbookTextItems (string name, string folder = null, string storageName = null); /// /// Read workbook's text items. @@ -5614,9 +5616,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TextItemsResponse - ApiResponse CellsWorkbookGetWorkbookTextItemsWithHttpInfo (string name, string folder = null, string storage = null); + ApiResponse CellsWorkbookGetWorkbookTextItemsWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Autofit workbook rows. /// @@ -5630,9 +5632,9 @@ public interface ICellsApi : IApiAccessor /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookPostAutofitWorkbookRows (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookPostAutofitWorkbookRows (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null); /// /// Autofit workbook rows. @@ -5647,9 +5649,9 @@ public interface ICellsApi : IApiAccessor /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookPostAutofitWorkbookRowsWithHttpInfo (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null); + ApiResponse CellsWorkbookPostAutofitWorkbookRowsWithHttpInfo (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null); /// /// Encript document. /// @@ -5660,9 +5662,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Encryption parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookPostEncryptDocument (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookPostEncryptDocument (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null); /// /// Encript document. @@ -5674,9 +5676,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Encryption parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookPostEncryptDocumentWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null); + ApiResponse CellsWorkbookPostEncryptDocumentWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null); /// /// /// @@ -5687,9 +5689,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookPostImportData (string name, ImportOption importData, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookPostImportData (string name, ImportOption importData, string folder = null, string storageName = null); /// /// @@ -5701,9 +5703,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookPostImportDataWithHttpInfo (string name, ImportOption importData, string folder = null, string storage = null); + ApiResponse CellsWorkbookPostImportDataWithHttpInfo (string name, ImportOption importData, string folder = null, string storageName = null); /// /// Protect document. /// @@ -5714,9 +5716,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The protection settings. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookPostProtectDocument (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookPostProtectDocument (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null); /// /// Protect document. @@ -5728,9 +5730,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The protection settings. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookPostProtectDocumentWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null); + ApiResponse CellsWorkbookPostProtectDocumentWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null); /// /// Calculate all formulas in workbook. /// @@ -5742,9 +5744,9 @@ public interface ICellsApi : IApiAccessor /// Calculation Options. (optional) /// ignore Error. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookPostWorkbookCalculateFormula (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookPostWorkbookCalculateFormula (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storageName = null); /// /// Calculate all formulas in workbook. @@ -5757,9 +5759,9 @@ public interface ICellsApi : IApiAccessor /// Calculation Options. (optional) /// ignore Error. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookPostWorkbookCalculateFormulaWithHttpInfo (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storage = null); + ApiResponse CellsWorkbookPostWorkbookCalculateFormulaWithHttpInfo (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storageName = null); /// /// Smart marker processing result. /// @@ -5770,10 +5772,10 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The xml file full path, if empty the data is read from request body. (optional) /// The workbook folder full path. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Path to save result (optional) /// System.IO.Stream - System.IO.Stream CellsWorkbookPostWorkbookGetSmartMarkerResult (string name, string xmlFile = null, string folder = null, string storage = null, string outPath = null); + System.IO.Stream CellsWorkbookPostWorkbookGetSmartMarkerResult (string name, string xmlFile = null, string folder = null, string storageName = null, string outPath = null); /// /// Smart marker processing result. @@ -5785,10 +5787,10 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The xml file full path, if empty the data is read from request body. (optional) /// The workbook folder full path. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Path to save result (optional) /// ApiResponse of System.IO.Stream - ApiResponse CellsWorkbookPostWorkbookGetSmartMarkerResultWithHttpInfo (string name, string xmlFile = null, string folder = null, string storage = null, string outPath = null); + ApiResponse CellsWorkbookPostWorkbookGetSmartMarkerResultWithHttpInfo (string name, string xmlFile = null, string folder = null, string storageName = null, string outPath = null); /// /// Update Workbook setting /// @@ -5799,9 +5801,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Workbook Setting DTO (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookPostWorkbookSettings (string name, WorkbookSettings settings = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookPostWorkbookSettings (string name, WorkbookSettings settings = null, string folder = null, string storageName = null); /// /// Update Workbook setting @@ -5813,9 +5815,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Workbook Setting DTO (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookPostWorkbookSettingsWithHttpInfo (string name, WorkbookSettings settings = null, string folder = null, string storage = null); + ApiResponse CellsWorkbookPostWorkbookSettingsWithHttpInfo (string name, WorkbookSettings settings = null, string folder = null, string storageName = null); /// /// Split workbook. /// @@ -5831,9 +5833,9 @@ public interface ICellsApi : IApiAccessor /// Image vertical resolution. (optional, default to 0) /// The workbook folder. (optional) /// out Folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// SplitResultResponse - SplitResultResponse CellsWorkbookPostWorkbookSplit (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storage = null); + SplitResultResponse CellsWorkbookPostWorkbookSplit (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storageName = null); /// /// Split workbook. @@ -5850,9 +5852,9 @@ public interface ICellsApi : IApiAccessor /// Image vertical resolution. (optional, default to 0) /// The workbook folder. (optional) /// out Folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of SplitResultResponse - ApiResponse CellsWorkbookPostWorkbookSplitWithHttpInfo (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storage = null); + ApiResponse CellsWorkbookPostWorkbookSplitWithHttpInfo (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storageName = null); /// /// Merge workbooks. /// @@ -5863,9 +5865,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The workbook to merge with. /// Source workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorkbookResponse - WorkbookResponse CellsWorkbookPostWorkbooksMerge (string name, string mergeWith, string folder = null, string storage = null); + WorkbookResponse CellsWorkbookPostWorkbooksMerge (string name, string mergeWith, string folder = null, string storageName = null); /// /// Merge workbooks. @@ -5877,9 +5879,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The workbook to merge with. /// Source workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorkbookResponse - ApiResponse CellsWorkbookPostWorkbooksMergeWithHttpInfo (string name, string mergeWith, string folder = null, string storage = null); + ApiResponse CellsWorkbookPostWorkbooksMergeWithHttpInfo (string name, string mergeWith, string folder = null, string storageName = null); /// /// Replace text. /// @@ -5891,9 +5893,9 @@ public interface ICellsApi : IApiAccessor /// The old value. /// The new value. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorkbookReplaceResponse - WorkbookReplaceResponse CellsWorkbookPostWorkbooksTextReplace (string name, string oldValue, string newValue, string folder = null, string storage = null); + WorkbookReplaceResponse CellsWorkbookPostWorkbooksTextReplace (string name, string oldValue, string newValue, string folder = null, string storageName = null); /// /// Replace text. @@ -5906,9 +5908,9 @@ public interface ICellsApi : IApiAccessor /// The old value. /// The new value. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorkbookReplaceResponse - ApiResponse CellsWorkbookPostWorkbooksTextReplaceWithHttpInfo (string name, string oldValue, string newValue, string folder = null, string storage = null); + ApiResponse CellsWorkbookPostWorkbooksTextReplaceWithHttpInfo (string name, string oldValue, string newValue, string folder = null, string storageName = null); /// /// Search text. /// @@ -5919,9 +5921,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Text sample. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TextItemsResponse - TextItemsResponse CellsWorkbookPostWorkbooksTextSearch (string name, string text, string folder = null, string storage = null); + TextItemsResponse CellsWorkbookPostWorkbooksTextSearch (string name, string text, string folder = null, string storageName = null); /// /// Search text. @@ -5933,9 +5935,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Text sample. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TextItemsResponse - ApiResponse CellsWorkbookPostWorkbooksTextSearchWithHttpInfo (string name, string text, string folder = null, string storage = null); + ApiResponse CellsWorkbookPostWorkbooksTextSearchWithHttpInfo (string name, string text, string folder = null, string storageName = null); /// /// Convert workbook from request content to some format. /// @@ -5973,9 +5975,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Modification password. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookPutDocumentProtectFromChanges (string name, PasswordRequest password = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookPutDocumentProtectFromChanges (string name, PasswordRequest password = null, string folder = null, string storageName = null); /// /// Protect document from changes. @@ -5987,9 +5989,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Modification password. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookPutDocumentProtectFromChangesWithHttpInfo (string name, PasswordRequest password = null, string folder = null, string storage = null); + ApiResponse CellsWorkbookPutDocumentProtectFromChangesWithHttpInfo (string name, PasswordRequest password = null, string folder = null, string storageName = null); /// /// Set workbook background image. /// @@ -6000,9 +6002,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookPutWorkbookBackground (string name, byte[] png, string folder = null, string storage = null); + CellsCloudResponse CellsWorkbookPutWorkbookBackground (string name, byte[] png, string folder = null, string storageName = null); /// /// Set workbook background image. @@ -6014,9 +6016,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookPutWorkbookBackgroundWithHttpInfo (string name, byte[] png, string folder = null, string storage = null); + ApiResponse CellsWorkbookPutWorkbookBackgroundWithHttpInfo (string name, byte[] png, string folder = null, string storageName = null); /// /// Create new workbook using deferent methods. /// @@ -6029,9 +6031,9 @@ public interface ICellsApi : IApiAccessor /// Smart marker data file, if the data not provided the request content is checked for the data. (optional) /// write over file. (optional) /// The new document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorkbookResponse - WorkbookResponse CellsWorkbookPutWorkbookCreate (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storage = null); + WorkbookResponse CellsWorkbookPutWorkbookCreate (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storageName = null); /// /// Create new workbook using deferent methods. @@ -6045,9 +6047,9 @@ public interface ICellsApi : IApiAccessor /// Smart marker data file, if the data not provided the request content is checked for the data. (optional) /// write over file. (optional) /// The new document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorkbookResponse - ApiResponse CellsWorkbookPutWorkbookCreateWithHttpInfo (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storage = null); + ApiResponse CellsWorkbookPutWorkbookCreateWithHttpInfo (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storageName = null); /// /// Set workbook background image. /// @@ -6057,10 +6059,10 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// The text water marker request. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorkbookPutWorkbookWaterMarker (string name, string folder = null, string storage = null, TextWaterMarkerRequest textWaterMarkerRequest = null); + CellsCloudResponse CellsWorkbookPutWorkbookWaterMarker (string name, string folder = null, string storageName = null, TextWaterMarkerRequest textWaterMarkerRequest = null); /// /// Set workbook background image. @@ -6071,10 +6073,10 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// The text water marker request. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorkbookPutWorkbookWaterMarkerWithHttpInfo (string name, string folder = null, string storage = null, TextWaterMarkerRequest textWaterMarkerRequest = null); + ApiResponse CellsWorkbookPutWorkbookWaterMarkerWithHttpInfo (string name, string folder = null, string storageName = null, TextWaterMarkerRequest textWaterMarkerRequest = null); /// /// Delete worksheet validation by index. /// @@ -6086,9 +6088,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ValidationResponse - ValidationResponse CellsWorksheetValidationsDeleteWorksheetValidation (string name, string sheetName, int? validationIndex, string folder = null, string storage = null); + ValidationResponse CellsWorksheetValidationsDeleteWorksheetValidation (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null); /// /// Delete worksheet validation by index. @@ -6101,9 +6103,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ValidationResponse - ApiResponse CellsWorksheetValidationsDeleteWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storage = null); + ApiResponse CellsWorksheetValidationsDeleteWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null); /// /// Clear all validation in worksheet. /// @@ -6114,9 +6116,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetValidationsDeleteWorksheetValidations (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetValidationsDeleteWorksheetValidations (string name, string sheetName, string folder = null, string storageName = null); /// /// Clear all validation in worksheet. @@ -6128,9 +6130,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetValidationsDeleteWorksheetValidationsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsWorksheetValidationsDeleteWorksheetValidationsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet validation by index. /// @@ -6142,9 +6144,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ValidationResponse - ValidationResponse CellsWorksheetValidationsGetWorksheetValidation (string name, string sheetName, int? validationIndex, string folder = null, string storage = null); + ValidationResponse CellsWorksheetValidationsGetWorksheetValidation (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null); /// /// Get worksheet validation by index. @@ -6157,9 +6159,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ValidationResponse - ApiResponse CellsWorksheetValidationsGetWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storage = null); + ApiResponse CellsWorksheetValidationsGetWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null); /// /// Get worksheet validations. /// @@ -6170,9 +6172,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ValidationsResponse - ValidationsResponse CellsWorksheetValidationsGetWorksheetValidations (string name, string sheetName, string folder = null, string storage = null); + ValidationsResponse CellsWorksheetValidationsGetWorksheetValidations (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet validations. @@ -6184,9 +6186,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ValidationsResponse - ApiResponse CellsWorksheetValidationsGetWorksheetValidationsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsWorksheetValidationsGetWorksheetValidationsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update worksheet validation by index. /// @@ -6199,9 +6201,9 @@ public interface ICellsApi : IApiAccessor /// The validation index. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ValidationResponse - ValidationResponse CellsWorksheetValidationsPostWorksheetValidation (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storage = null); + ValidationResponse CellsWorksheetValidationsPostWorksheetValidation (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storageName = null); /// /// Update worksheet validation by index. @@ -6215,9 +6217,9 @@ public interface ICellsApi : IApiAccessor /// The validation index. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ValidationResponse - ApiResponse CellsWorksheetValidationsPostWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetValidationsPostWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storageName = null); /// /// Add worksheet validation at index. /// @@ -6230,9 +6232,9 @@ public interface ICellsApi : IApiAccessor /// Specified cells area (optional) /// validation (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ValidationResponse - ValidationResponse CellsWorksheetValidationsPutWorksheetValidation (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storage = null); + ValidationResponse CellsWorksheetValidationsPutWorksheetValidation (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storageName = null); /// /// Add worksheet validation at index. @@ -6246,9 +6248,9 @@ public interface ICellsApi : IApiAccessor /// Specified cells area (optional) /// validation (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ValidationResponse - ApiResponse CellsWorksheetValidationsPutWorksheetValidationWithHttpInfo (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetValidationsPutWorksheetValidationWithHttpInfo (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storageName = null); /// /// Unprotect worksheet. /// @@ -6260,9 +6262,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with protection settings. Only password is used here. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetResponse - WorksheetResponse CellsWorksheetsDeleteUnprotectWorksheet (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null); + WorksheetResponse CellsWorksheetsDeleteUnprotectWorksheet (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null); /// /// Unprotect worksheet. @@ -6275,9 +6277,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with protection settings. Only password is used here. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetResponse - ApiResponse CellsWorksheetsDeleteUnprotectWorksheetWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsDeleteUnprotectWorksheetWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null); /// /// Delete worksheet. /// @@ -6288,9 +6290,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetsResponse - WorksheetsResponse CellsWorksheetsDeleteWorksheet (string name, string sheetName, string folder = null, string storage = null); + WorksheetsResponse CellsWorksheetsDeleteWorksheet (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet. @@ -6302,9 +6304,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetsResponse - ApiResponse CellsWorksheetsDeleteWorksheetWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsWorksheetsDeleteWorksheetWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Set worksheet background image. /// @@ -6315,9 +6317,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsDeleteWorksheetBackground (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsDeleteWorksheetBackground (string name, string sheetName, string folder = null, string storageName = null); /// /// Set worksheet background image. @@ -6329,9 +6331,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsDeleteWorksheetBackgroundWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsWorksheetsDeleteWorksheetBackgroundWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet's cell comment. /// @@ -6343,9 +6345,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsDeleteWorksheetComment (string name, string sheetName, string cellName, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsDeleteWorksheetComment (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Delete worksheet's cell comment. @@ -6358,9 +6360,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsDeleteWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null); + ApiResponse CellsWorksheetsDeleteWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Delete all comments for worksheet. /// @@ -6371,9 +6373,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsDeleteWorksheetComments (string name, string sheetName, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsDeleteWorksheetComments (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete all comments for worksheet. @@ -6385,9 +6387,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsDeleteWorksheetCommentsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsWorksheetsDeleteWorksheetCommentsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Unfreeze panes /// @@ -6402,9 +6404,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsDeleteWorksheetFreezePanes (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsDeleteWorksheetFreezePanes (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null); /// /// Unfreeze panes @@ -6420,9 +6422,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsDeleteWorksheetFreezePanesWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null); + ApiResponse CellsWorksheetsDeleteWorksheetFreezePanesWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null); /// /// Read worksheets ranges info. /// @@ -6432,9 +6434,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RangesResponse - RangesResponse CellsWorksheetsGetNamedRanges (string name, string folder = null, string storage = null); + RangesResponse CellsWorksheetsGetNamedRanges (string name, string folder = null, string storageName = null); /// /// Read worksheets ranges info. @@ -6445,9 +6447,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RangesResponse - ApiResponse CellsWorksheetsGetNamedRangesWithHttpInfo (string name, string folder = null, string storage = null); + ApiResponse CellsWorksheetsGetNamedRangesWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Read worksheet info or export. /// @@ -6463,9 +6465,9 @@ public interface ICellsApi : IApiAccessor /// Exported area. (optional) /// Exported page index. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// System.IO.Stream - System.IO.Stream CellsWorksheetsGetWorksheet (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storage = null); + System.IO.Stream CellsWorksheetsGetWorksheet (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storageName = null); /// /// Read worksheet info or export. @@ -6482,9 +6484,9 @@ public interface ICellsApi : IApiAccessor /// Exported area. (optional) /// Exported page index. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of System.IO.Stream - ApiResponse CellsWorksheetsGetWorksheetWithHttpInfo (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsGetWorksheetWithHttpInfo (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storageName = null); /// /// Calculate formula value. /// @@ -6496,9 +6498,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The formula. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// SingleValueResponse - SingleValueResponse CellsWorksheetsGetWorksheetCalculateFormula (string name, string sheetName, string formula, string folder = null, string storage = null); + SingleValueResponse CellsWorksheetsGetWorksheetCalculateFormula (string name, string sheetName, string formula, string folder = null, string storageName = null); /// /// Calculate formula value. @@ -6511,9 +6513,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The formula. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of SingleValueResponse - ApiResponse CellsWorksheetsGetWorksheetCalculateFormulaWithHttpInfo (string name, string sheetName, string formula, string folder = null, string storage = null); + ApiResponse CellsWorksheetsGetWorksheetCalculateFormulaWithHttpInfo (string name, string sheetName, string formula, string folder = null, string storageName = null); /// /// Get worksheet comment by cell name. /// @@ -6525,9 +6527,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CommentResponse - CommentResponse CellsWorksheetsGetWorksheetComment (string name, string sheetName, string cellName, string folder = null, string storage = null); + CommentResponse CellsWorksheetsGetWorksheetComment (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Get worksheet comment by cell name. @@ -6540,9 +6542,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CommentResponse - ApiResponse CellsWorksheetsGetWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null); + ApiResponse CellsWorksheetsGetWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Get worksheet comments. /// @@ -6553,9 +6555,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CommentsResponse - CommentsResponse CellsWorksheetsGetWorksheetComments (string name, string sheetName, string folder = null, string storage = null); + CommentsResponse CellsWorksheetsGetWorksheetComments (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet comments. @@ -6567,9 +6569,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CommentsResponse - ApiResponse CellsWorksheetsGetWorksheetCommentsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsWorksheetsGetWorksheetCommentsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet merged cell by its index. /// @@ -6581,9 +6583,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// Merged cell index. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// MergedCellResponse - MergedCellResponse CellsWorksheetsGetWorksheetMergedCell (string name, string sheetName, int? mergedCellIndex, string folder = null, string storage = null); + MergedCellResponse CellsWorksheetsGetWorksheetMergedCell (string name, string sheetName, int? mergedCellIndex, string folder = null, string storageName = null); /// /// Get worksheet merged cell by its index. @@ -6596,9 +6598,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// Merged cell index. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of MergedCellResponse - ApiResponse CellsWorksheetsGetWorksheetMergedCellWithHttpInfo (string name, string sheetName, int? mergedCellIndex, string folder = null, string storage = null); + ApiResponse CellsWorksheetsGetWorksheetMergedCellWithHttpInfo (string name, string sheetName, int? mergedCellIndex, string folder = null, string storageName = null); /// /// Get worksheet merged cells. /// @@ -6609,9 +6611,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The workseet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// MergedCellsResponse - MergedCellsResponse CellsWorksheetsGetWorksheetMergedCells (string name, string sheetName, string folder = null, string storage = null); + MergedCellsResponse CellsWorksheetsGetWorksheetMergedCells (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet merged cells. @@ -6623,9 +6625,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The workseet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of MergedCellsResponse - ApiResponse CellsWorksheetsGetWorksheetMergedCellsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsWorksheetsGetWorksheetMergedCellsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet text items. /// @@ -6636,9 +6638,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The workbook's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TextItemsResponse - TextItemsResponse CellsWorksheetsGetWorksheetTextItems (string name, string sheetName, string folder = null, string storage = null); + TextItemsResponse CellsWorksheetsGetWorksheetTextItems (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet text items. @@ -6650,9 +6652,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The workbook's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TextItemsResponse - ApiResponse CellsWorksheetsGetWorksheetTextItemsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + ApiResponse CellsWorksheetsGetWorksheetTextItemsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Read worksheets info. /// @@ -6662,9 +6664,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetsResponse - WorksheetsResponse CellsWorksheetsGetWorksheets (string name, string folder = null, string storage = null); + WorksheetsResponse CellsWorksheetsGetWorksheets (string name, string folder = null, string storageName = null); /// /// Read worksheets info. @@ -6675,9 +6677,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetsResponse - ApiResponse CellsWorksheetsGetWorksheetsWithHttpInfo (string name, string folder = null, string storage = null); + ApiResponse CellsWorksheetsGetWorksheetsWithHttpInfo (string name, string folder = null, string storageName = null); /// /// /// @@ -6693,9 +6695,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsPostAutofitWorksheetColumns (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsPostAutofitWorksheetColumns (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storageName = null); /// /// @@ -6712,9 +6714,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsPostAutofitWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostAutofitWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storageName = null); /// /// /// @@ -6729,9 +6731,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsPostAutofitWorksheetRow (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsPostAutofitWorksheetRow (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storageName = null); /// /// @@ -6747,9 +6749,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsPostAutofitWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostAutofitWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storageName = null); /// /// Autofit worksheet rows. /// @@ -6764,9 +6766,9 @@ public interface ICellsApi : IApiAccessor /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsPostAutofitWorksheetRows (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsPostAutofitWorksheetRows (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null); /// /// Autofit worksheet rows. @@ -6782,9 +6784,9 @@ public interface ICellsApi : IApiAccessor /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsPostAutofitWorksheetRowsWithHttpInfo (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostAutofitWorksheetRowsWithHttpInfo (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null); /// /// /// @@ -6799,9 +6801,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsPostCopyWorksheet (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsPostCopyWorksheet (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storageName = null); /// /// @@ -6817,9 +6819,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsPostCopyWorksheetWithHttpInfo (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostCopyWorksheetWithHttpInfo (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storageName = null); /// /// Move worksheet. /// @@ -6831,9 +6833,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with moving parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetsResponse - WorksheetsResponse CellsWorksheetsPostMoveWorksheet (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storage = null); + WorksheetsResponse CellsWorksheetsPostMoveWorksheet (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storageName = null); /// /// Move worksheet. @@ -6846,9 +6848,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with moving parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetsResponse - ApiResponse CellsWorksheetsPostMoveWorksheetWithHttpInfo (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostMoveWorksheetWithHttpInfo (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storageName = null); /// /// Rename worksheet /// @@ -6860,9 +6862,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsPostRenameWorksheet (string name, string sheetName, string newname, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsPostRenameWorksheet (string name, string sheetName, string newname, string folder = null, string storageName = null); /// /// Rename worksheet @@ -6875,9 +6877,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsPostRenameWorksheetWithHttpInfo (string name, string sheetName, string newname, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostRenameWorksheetWithHttpInfo (string name, string sheetName, string newname, string folder = null, string storageName = null); /// /// Update worksheet property /// @@ -6889,9 +6891,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetResponse - WorksheetResponse CellsWorksheetsPostUpdateWorksheetProperty (string name, string sheetName, Worksheet sheet = null, string folder = null, string storage = null); + WorksheetResponse CellsWorksheetsPostUpdateWorksheetProperty (string name, string sheetName, Worksheet sheet = null, string folder = null, string storageName = null); /// /// Update worksheet property @@ -6904,9 +6906,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetResponse - ApiResponse CellsWorksheetsPostUpdateWorksheetPropertyWithHttpInfo (string name, string sheetName, Worksheet sheet = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostUpdateWorksheetPropertyWithHttpInfo (string name, string sheetName, Worksheet sheet = null, string folder = null, string storageName = null); /// /// /// @@ -6918,9 +6920,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsPostUpdateWorksheetZoom (string name, string sheetName, int? value, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsPostUpdateWorksheetZoom (string name, string sheetName, int? value, string folder = null, string storageName = null); /// /// @@ -6933,9 +6935,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsPostUpdateWorksheetZoomWithHttpInfo (string name, string sheetName, int? value, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostUpdateWorksheetZoomWithHttpInfo (string name, string sheetName, int? value, string folder = null, string storageName = null); /// /// Update worksheet's cell comment. /// @@ -6948,9 +6950,9 @@ public interface ICellsApi : IApiAccessor /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsPostWorksheetComment (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsPostWorksheetComment (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null); /// /// Update worksheet's cell comment. @@ -6964,9 +6966,9 @@ public interface ICellsApi : IApiAccessor /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsPostWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null); /// /// Sort worksheet range. /// @@ -6979,9 +6981,9 @@ public interface ICellsApi : IApiAccessor /// The range to sort. /// with sorting settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsPostWorksheetRangeSort (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsPostWorksheetRangeSort (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storageName = null); /// /// Sort worksheet range. @@ -6995,9 +6997,9 @@ public interface ICellsApi : IApiAccessor /// The range to sort. /// with sorting settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsPostWorksheetRangeSortWithHttpInfo (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostWorksheetRangeSortWithHttpInfo (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storageName = null); /// /// Search text. /// @@ -7009,9 +7011,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Text to search. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TextItemsResponse - TextItemsResponse CellsWorksheetsPostWorksheetTextSearch (string name, string sheetName, string text, string folder = null, string storage = null); + TextItemsResponse CellsWorksheetsPostWorksheetTextSearch (string name, string sheetName, string text, string folder = null, string storageName = null); /// /// Search text. @@ -7024,9 +7026,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Text to search. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TextItemsResponse - ApiResponse CellsWorksheetsPostWorksheetTextSearchWithHttpInfo (string name, string sheetName, string text, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostWorksheetTextSearchWithHttpInfo (string name, string sheetName, string text, string folder = null, string storageName = null); /// /// Replace text. /// @@ -7039,9 +7041,9 @@ public interface ICellsApi : IApiAccessor /// The old text to replace. /// The new text to replace by. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetReplaceResponse - WorksheetReplaceResponse CellsWorksheetsPostWorsheetTextReplace (string name, string sheetName, string oldValue, string newValue, string folder = null, string storage = null); + WorksheetReplaceResponse CellsWorksheetsPostWorsheetTextReplace (string name, string sheetName, string oldValue, string newValue, string folder = null, string storageName = null); /// /// Replace text. @@ -7055,9 +7057,9 @@ public interface ICellsApi : IApiAccessor /// The old text to replace. /// The new text to replace by. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetReplaceResponse - ApiResponse CellsWorksheetsPostWorsheetTextReplaceWithHttpInfo (string name, string sheetName, string oldValue, string newValue, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPostWorsheetTextReplaceWithHttpInfo (string name, string sheetName, string oldValue, string newValue, string folder = null, string storageName = null); /// /// Add new worksheet. /// @@ -7070,9 +7072,9 @@ public interface ICellsApi : IApiAccessor /// The new sheet position. (optional) /// The new sheet type. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetsResponse - WorksheetsResponse CellsWorksheetsPutAddNewWorksheet (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storage = null); + WorksheetsResponse CellsWorksheetsPutAddNewWorksheet (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storageName = null); /// /// Add new worksheet. @@ -7086,9 +7088,9 @@ public interface ICellsApi : IApiAccessor /// The new sheet position. (optional) /// The new sheet type. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetsResponse - ApiResponse CellsWorksheetsPutAddNewWorksheetWithHttpInfo (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPutAddNewWorksheetWithHttpInfo (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storageName = null); /// /// Change worksheet visibility. /// @@ -7100,9 +7102,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// New worksheet visibility value. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetResponse - WorksheetResponse CellsWorksheetsPutChangeVisibilityWorksheet (string name, string sheetName, bool? isVisible, string folder = null, string storage = null); + WorksheetResponse CellsWorksheetsPutChangeVisibilityWorksheet (string name, string sheetName, bool? isVisible, string folder = null, string storageName = null); /// /// Change worksheet visibility. @@ -7115,9 +7117,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// New worksheet visibility value. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetResponse - ApiResponse CellsWorksheetsPutChangeVisibilityWorksheetWithHttpInfo (string name, string sheetName, bool? isVisible, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPutChangeVisibilityWorksheetWithHttpInfo (string name, string sheetName, bool? isVisible, string folder = null, string storageName = null); /// /// Protect worksheet. /// @@ -7129,9 +7131,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with protection settings. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetResponse - WorksheetResponse CellsWorksheetsPutProtectWorksheet (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null); + WorksheetResponse CellsWorksheetsPutProtectWorksheet (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null); /// /// Protect worksheet. @@ -7144,9 +7146,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with protection settings. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetResponse - ApiResponse CellsWorksheetsPutProtectWorksheetWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPutProtectWorksheetWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null); /// /// Set worksheet background image. /// @@ -7158,9 +7160,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsPutWorksheetBackground (string name, string sheetName, byte[] png, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsPutWorksheetBackground (string name, string sheetName, byte[] png, string folder = null, string storageName = null); /// /// Set worksheet background image. @@ -7173,9 +7175,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsPutWorksheetBackgroundWithHttpInfo (string name, string sheetName, byte[] png, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPutWorksheetBackgroundWithHttpInfo (string name, string sheetName, byte[] png, string folder = null, string storageName = null); /// /// Add worksheet's cell comment. /// @@ -7188,9 +7190,9 @@ public interface ICellsApi : IApiAccessor /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CommentResponse - CommentResponse CellsWorksheetsPutWorksheetComment (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null); + CommentResponse CellsWorksheetsPutWorksheetComment (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null); /// /// Add worksheet's cell comment. @@ -7204,9 +7206,9 @@ public interface ICellsApi : IApiAccessor /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CommentResponse - ApiResponse CellsWorksheetsPutWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPutWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null); /// /// Set freeze panes /// @@ -7221,9 +7223,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - CellsCloudResponse CellsWorksheetsPutWorksheetFreezePanes (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null); + CellsCloudResponse CellsWorksheetsPutWorksheetFreezePanes (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null); /// /// Set freeze panes @@ -7239,9 +7241,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - ApiResponse CellsWorksheetsPutWorksheetFreezePanesWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null); + ApiResponse CellsWorksheetsPutWorksheetFreezePanesWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null); /// /// Copy file /// @@ -7635,9 +7637,9 @@ public interface ICellsApi : IApiAccessor /// (optional, default to 0) /// (optional, default to 0) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterDeleteWorksheetDateFilterAsync (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterDeleteWorksheetDateFilterAsync (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storageName = null); /// /// Removes a date filter. @@ -7657,9 +7659,9 @@ public interface ICellsApi : IApiAccessor /// (optional, default to 0) /// (optional, default to 0) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterDeleteWorksheetDateFilterAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterDeleteWorksheetDateFilterAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storageName = null); /// /// Delete a filter for a filter column. /// @@ -7672,9 +7674,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterDeleteWorksheetFilterAsync (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterDeleteWorksheetFilterAsync (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storageName = null); /// /// Delete a filter for a filter column. @@ -7688,9 +7690,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterDeleteWorksheetFilterAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterDeleteWorksheetFilterAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storageName = null); /// /// Get Auto filter Description /// @@ -7701,9 +7703,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of AutoFilterResponse - System.Threading.Tasks.Task CellsAutoFilterGetWorksheetAutoFilterAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterGetWorksheetAutoFilterAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get Auto filter Description @@ -7715,9 +7717,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (AutoFilterResponse) - System.Threading.Tasks.Task> CellsAutoFilterGetWorksheetAutoFilterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterGetWorksheetAutoFilterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// /// @@ -7728,9 +7730,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterPostWorksheetAutoFilterRefreshAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterPostWorksheetAutoFilterRefreshAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// @@ -7742,9 +7744,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetAutoFilterRefreshAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetAutoFilterRefreshAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Match all blank cell in the list. /// @@ -7756,9 +7758,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterPostWorksheetMatchBlanksAsync (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterPostWorksheetMatchBlanksAsync (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null); /// /// Match all blank cell in the list. @@ -7771,9 +7773,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetMatchBlanksAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetMatchBlanksAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null); /// /// Match all not blank cell in the list. /// @@ -7785,9 +7787,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterPostWorksheetMatchNonBlanksAsync (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterPostWorksheetMatchNonBlanksAsync (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null); /// /// Match all not blank cell in the list. @@ -7800,9 +7802,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetMatchNonBlanksAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetMatchNonBlanksAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null); /// /// /// @@ -7818,9 +7820,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterPutWorksheetColorFilterAsync (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterPutWorksheetColorFilterAsync (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// @@ -7837,9 +7839,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetColorFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetColorFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Filters a list with a custom criteria. /// @@ -7859,9 +7861,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterPutWorksheetCustomFilterAsync (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterPutWorksheetCustomFilterAsync (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Filters a list with a custom criteria. @@ -7882,9 +7884,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetCustomFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetCustomFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// add date filter in worksheet /// @@ -7906,9 +7908,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterPutWorksheetDateFilterAsync (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterPutWorksheetDateFilterAsync (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// add date filter in worksheet @@ -7931,9 +7933,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetDateFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetDateFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// /// @@ -7949,9 +7951,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterPutWorksheetDynamicFilterAsync (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterPutWorksheetDynamicFilterAsync (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// @@ -7968,9 +7970,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetDynamicFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetDynamicFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Adds a filter for a filter column. /// @@ -7986,9 +7988,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterPutWorksheetFilterAsync (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterPutWorksheetFilterAsync (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Adds a filter for a filter column. @@ -8005,9 +8007,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Filter the top 10 item in the list /// @@ -8025,9 +8027,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterPutWorksheetFilterTop10Async (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterPutWorksheetFilterTop10Async (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Filter the top 10 item in the list @@ -8046,9 +8048,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetFilterTop10AsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetFilterTop10AsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Adds an icon filter. /// @@ -8065,9 +8067,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsAutoFilterPutWorksheetIconFilterAsync (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoFilterPutWorksheetIconFilterAsync (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Adds an icon filter. @@ -8085,9 +8087,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetIconFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetIconFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null); /// /// Get autoshape info. /// @@ -8100,9 +8102,9 @@ public interface ICellsApi : IApiAccessor /// The autoshape number. /// Exported format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of System.IO.Stream - System.Threading.Tasks.Task CellsAutoshapesGetWorksheetAutoshapeAsync (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoshapesGetWorksheetAutoshapeAsync (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storageName = null); /// /// Get autoshape info. @@ -8116,9 +8118,9 @@ public interface ICellsApi : IApiAccessor /// The autoshape number. /// Exported format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (System.IO.Stream) - System.Threading.Tasks.Task> CellsAutoshapesGetWorksheetAutoshapeAsyncWithHttpInfo (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoshapesGetWorksheetAutoshapeAsyncWithHttpInfo (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storageName = null); /// /// Get worksheet autoshapes info. /// @@ -8129,9 +8131,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of AutoShapesResponse - System.Threading.Tasks.Task CellsAutoshapesGetWorksheetAutoshapesAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsAutoshapesGetWorksheetAutoshapesAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet autoshapes info. @@ -8143,9 +8145,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (AutoShapesResponse) - System.Threading.Tasks.Task> CellsAutoshapesGetWorksheetAutoshapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsAutoshapesGetWorksheetAutoshapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get chart area info. /// @@ -8157,9 +8159,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ChartAreaResponse - System.Threading.Tasks.Task CellsChartAreaGetChartAreaAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartAreaGetChartAreaAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart area info. @@ -8172,9 +8174,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ChartAreaResponse) - System.Threading.Tasks.Task> CellsChartAreaGetChartAreaAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartAreaGetChartAreaAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart area border info. /// @@ -8186,9 +8188,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of LineResponse - System.Threading.Tasks.Task CellsChartAreaGetChartAreaBorderAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartAreaGetChartAreaBorderAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart area border info. @@ -8201,9 +8203,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (LineResponse) - System.Threading.Tasks.Task> CellsChartAreaGetChartAreaBorderAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartAreaGetChartAreaBorderAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart area fill format info. /// @@ -8215,9 +8217,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of FillFormatResponse - System.Threading.Tasks.Task CellsChartAreaGetChartAreaFillFormatAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartAreaGetChartAreaFillFormatAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart area fill format info. @@ -8230,9 +8232,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (FillFormatResponse) - System.Threading.Tasks.Task> CellsChartAreaGetChartAreaFillFormatAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartAreaGetChartAreaFillFormatAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Hide legend in chart /// @@ -8244,9 +8246,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsChartsDeleteWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsDeleteWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Hide legend in chart @@ -8259,9 +8261,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsChartsDeleteWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsDeleteWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Hide title in chart /// @@ -8273,9 +8275,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsChartsDeleteWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsDeleteWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Hide title in chart @@ -8288,9 +8290,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsChartsDeleteWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsDeleteWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Clear the charts. /// @@ -8301,9 +8303,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsChartsDeleteWorksheetClearChartsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsDeleteWorksheetClearChartsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Clear the charts. @@ -8315,9 +8317,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsChartsDeleteWorksheetClearChartsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsDeleteWorksheetClearChartsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet chart by index. /// @@ -8329,9 +8331,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ChartsResponse - System.Threading.Tasks.Task CellsChartsDeleteWorksheetDeleteChartAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsDeleteWorksheetDeleteChartAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Delete worksheet chart by index. @@ -8344,9 +8346,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ChartsResponse) - System.Threading.Tasks.Task> CellsChartsDeleteWorksheetDeleteChartAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsDeleteWorksheetDeleteChartAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart info. /// @@ -8359,9 +8361,9 @@ public interface ICellsApi : IApiAccessor /// The chart number. /// The exported file format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of System.IO.Stream - System.Threading.Tasks.Task CellsChartsGetWorksheetChartAsync (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsGetWorksheetChartAsync (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storageName = null); /// /// Get chart info. @@ -8375,9 +8377,9 @@ public interface ICellsApi : IApiAccessor /// The chart number. /// The exported file format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (System.IO.Stream) - System.Threading.Tasks.Task> CellsChartsGetWorksheetChartAsyncWithHttpInfo (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsGetWorksheetChartAsyncWithHttpInfo (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storageName = null); /// /// Get chart legend /// @@ -8389,9 +8391,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of LegendResponse - System.Threading.Tasks.Task CellsChartsGetWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsGetWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart legend @@ -8404,9 +8406,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (LegendResponse) - System.Threading.Tasks.Task> CellsChartsGetWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsGetWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart title /// @@ -8418,9 +8420,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TitleResponse - System.Threading.Tasks.Task CellsChartsGetWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsGetWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get chart title @@ -8433,9 +8435,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TitleResponse) - System.Threading.Tasks.Task> CellsChartsGetWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsGetWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Get worksheet charts info. /// @@ -8446,9 +8448,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ChartsResponse - System.Threading.Tasks.Task CellsChartsGetWorksheetChartsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsGetWorksheetChartsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet charts info. @@ -8460,9 +8462,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ChartsResponse) - System.Threading.Tasks.Task> CellsChartsGetWorksheetChartsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsGetWorksheetChartsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update chart propreties /// @@ -8475,9 +8477,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsChartsPostWorksheetChartAsync (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsPostWorksheetChartAsync (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storageName = null); /// /// Update chart propreties @@ -8491,9 +8493,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsChartsPostWorksheetChartAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsPostWorksheetChartAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storageName = null); /// /// Update chart legend /// @@ -8506,9 +8508,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of LegendResponse - System.Threading.Tasks.Task CellsChartsPostWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsPostWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storageName = null); /// /// Update chart legend @@ -8522,9 +8524,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (LegendResponse) - System.Threading.Tasks.Task> CellsChartsPostWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsPostWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storageName = null); /// /// Update chart title /// @@ -8537,9 +8539,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// Chart title (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TitleResponse - System.Threading.Tasks.Task CellsChartsPostWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsPostWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null); /// /// Update chart title @@ -8553,9 +8555,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// Chart title (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TitleResponse) - System.Threading.Tasks.Task> CellsChartsPostWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsPostWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null); /// /// Add new chart to worksheet. /// @@ -8576,9 +8578,9 @@ public interface ICellsApi : IApiAccessor /// Specifies whether auto update serial name. (optional, default to true) /// Specifies chart title name. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ChartsResponse - System.Threading.Tasks.Task CellsChartsPutWorksheetAddChartAsync (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsPutWorksheetAddChartAsync (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storageName = null); /// /// Add new chart to worksheet. @@ -8600,9 +8602,9 @@ public interface ICellsApi : IApiAccessor /// Specifies whether auto update serial name. (optional, default to true) /// Specifies chart title name. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ChartsResponse) - System.Threading.Tasks.Task> CellsChartsPutWorksheetAddChartAsyncWithHttpInfo (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsPutWorksheetAddChartAsyncWithHttpInfo (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storageName = null); /// /// Show legend in chart /// @@ -8614,9 +8616,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsChartsPutWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsPutWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Show legend in chart @@ -8629,9 +8631,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsChartsPutWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsPutWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null); /// /// Add chart title / Set chart title visible /// @@ -8644,9 +8646,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// Chart title. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TitleResponse - System.Threading.Tasks.Task CellsChartsPutWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsChartsPutWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null); /// /// Add chart title / Set chart title visible @@ -8660,9 +8662,9 @@ public interface ICellsApi : IApiAccessor /// The chart index. /// Chart title. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TitleResponse) - System.Threading.Tasks.Task> CellsChartsPutWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsChartsPutWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null); /// /// Remove conditional formatting /// @@ -8674,9 +8676,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAsync (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAsync (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// Remove conditional formatting @@ -8689,9 +8691,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// Remove cell area from conditional formatting. /// @@ -8706,9 +8708,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Remove cell area from conditional formatting. @@ -8724,9 +8726,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Clear all condition formattings /// @@ -8737,9 +8739,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Clear all condition formattings @@ -8751,9 +8753,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get conditional formatting /// @@ -8765,9 +8767,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ConditionalFormattingResponse - System.Threading.Tasks.Task CellsConditionalFormattingsGetWorksheetConditionalFormattingAsync (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsConditionalFormattingsGetWorksheetConditionalFormattingAsync (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// Get conditional formatting @@ -8780,9 +8782,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ConditionalFormattingResponse) - System.Threading.Tasks.Task> CellsConditionalFormattingsGetWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsConditionalFormattingsGetWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// Get conditional formattings /// @@ -8793,9 +8795,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ConditionalFormattingsResponse - System.Threading.Tasks.Task CellsConditionalFormattingsGetWorksheetConditionalFormattingsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsConditionalFormattingsGetWorksheetConditionalFormattingsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get conditional formattings @@ -8807,9 +8809,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ConditionalFormattingsResponse) - System.Threading.Tasks.Task> CellsConditionalFormattingsGetWorksheetConditionalFormattingsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsConditionalFormattingsGetWorksheetConditionalFormattingsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Add a condition formatting. /// @@ -8822,9 +8824,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetConditionalFormattingAsync (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetConditionalFormattingAsync (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storageName = null); /// /// Add a condition formatting. @@ -8838,9 +8840,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storageName = null); /// /// Add a format condition. /// @@ -8857,9 +8859,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionAsync (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionAsync (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null); /// /// Add a format condition. @@ -8877,9 +8879,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionAsyncWithHttpInfo (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionAsyncWithHttpInfo (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null); /// /// add a cell area for format condition /// @@ -8892,9 +8894,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionAreaAsync (string name, string sheetName, int? index, string cellArea, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionAreaAsync (string name, string sheetName, int? index, string cellArea, string folder = null, string storageName = null); /// /// add a cell area for format condition @@ -8908,9 +8910,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionAreaAsyncWithHttpInfo (string name, string sheetName, int? index, string cellArea, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionAreaAsyncWithHttpInfo (string name, string sheetName, int? index, string cellArea, string folder = null, string storageName = null); /// /// Add a condition for format condition. /// @@ -8926,9 +8928,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionConditionAsync (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionConditionAsync (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null); /// /// Add a condition for format condition. @@ -8945,9 +8947,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionConditionAsyncWithHttpInfo (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionConditionAsyncWithHttpInfo (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null); /// /// Delete worksheet columns. /// @@ -8961,9 +8963,9 @@ public interface ICellsApi : IApiAccessor /// The columns. /// The update reference. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ColumnsResponse - System.Threading.Tasks.Task CellsDeleteWorksheetColumnsAsync (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsDeleteWorksheetColumnsAsync (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storageName = null); /// /// Delete worksheet columns. @@ -8978,9 +8980,9 @@ public interface ICellsApi : IApiAccessor /// The columns. /// The update reference. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ColumnsResponse) - System.Threading.Tasks.Task> CellsDeleteWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsDeleteWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storageName = null); /// /// Delete worksheet row. /// @@ -8992,9 +8994,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet bame. /// The row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsDeleteWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsDeleteWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Delete worksheet row. @@ -9007,9 +9009,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet bame. /// The row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsDeleteWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsDeleteWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Delete several worksheet rows. /// @@ -9023,9 +9025,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsDeleteWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsDeleteWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null); /// /// Delete several worksheet rows. @@ -9040,9 +9042,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsDeleteWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsDeleteWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null); /// /// Read cell data by cell's name. /// @@ -9054,9 +9056,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of Object - System.Threading.Tasks.Task CellsGetCellHtmlStringAsync (string name, string sheetName, string cellName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsGetCellHtmlStringAsync (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Read cell data by cell's name. @@ -9069,9 +9071,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (Object) - System.Threading.Tasks.Task> CellsGetCellHtmlStringAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsGetCellHtmlStringAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Read cell data by cell's name. /// @@ -9083,9 +9085,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The cell's or method name. (Method name like firstcell, endcell etc.) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of Object - System.Threading.Tasks.Task CellsGetWorksheetCellAsync (string name, string sheetName, string cellOrMethodName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsGetWorksheetCellAsync (string name, string sheetName, string cellOrMethodName, string folder = null, string storageName = null); /// /// Read cell data by cell's name. @@ -9098,9 +9100,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The cell's or method name. (Method name like firstcell, endcell etc.) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (Object) - System.Threading.Tasks.Task> CellsGetWorksheetCellAsyncWithHttpInfo (string name, string sheetName, string cellOrMethodName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsGetWorksheetCellAsyncWithHttpInfo (string name, string sheetName, string cellOrMethodName, string folder = null, string storageName = null); /// /// Read cell's style info. /// @@ -9112,9 +9114,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// Cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of StyleResponse - System.Threading.Tasks.Task CellsGetWorksheetCellStyleAsync (string name, string sheetName, string cellName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsGetWorksheetCellStyleAsync (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Read cell's style info. @@ -9127,9 +9129,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// Cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (StyleResponse) - System.Threading.Tasks.Task> CellsGetWorksheetCellStyleAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsGetWorksheetCellStyleAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Get cells info. /// @@ -9142,9 +9144,9 @@ public interface ICellsApi : IApiAccessor /// Begginig offset. (optional, default to 0) /// Maximum amount of cells in the response. (optional, default to 0) /// Document's folder name. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsResponse - System.Threading.Tasks.Task CellsGetWorksheetCellsAsync (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsGetWorksheetCellsAsync (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storageName = null); /// /// Get cells info. @@ -9158,9 +9160,9 @@ public interface ICellsApi : IApiAccessor /// Begginig offset. (optional, default to 0) /// Maximum amount of cells in the response. (optional, default to 0) /// Document's folder name. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsResponse) - System.Threading.Tasks.Task> CellsGetWorksheetCellsAsyncWithHttpInfo (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsGetWorksheetCellsAsyncWithHttpInfo (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storageName = null); /// /// Read worksheet column data by column's index. /// @@ -9172,9 +9174,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The column index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ColumnResponse - System.Threading.Tasks.Task CellsGetWorksheetColumnAsync (string name, string sheetName, int? columnIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsGetWorksheetColumnAsync (string name, string sheetName, int? columnIndex, string folder = null, string storageName = null); /// /// Read worksheet column data by column's index. @@ -9187,9 +9189,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The column index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ColumnResponse) - System.Threading.Tasks.Task> CellsGetWorksheetColumnAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsGetWorksheetColumnAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, string folder = null, string storageName = null); /// /// Read worksheet columns info. /// @@ -9200,9 +9202,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ColumnsResponse - System.Threading.Tasks.Task CellsGetWorksheetColumnsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsGetWorksheetColumnsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Read worksheet columns info. @@ -9214,9 +9216,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ColumnsResponse) - System.Threading.Tasks.Task> CellsGetWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsGetWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Read worksheet row data by row's index. /// @@ -9228,9 +9230,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The row index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RowResponse - System.Threading.Tasks.Task CellsGetWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsGetWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Read worksheet row data by row's index. @@ -9243,9 +9245,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The row index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RowResponse) - System.Threading.Tasks.Task> CellsGetWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsGetWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Read worksheet rows info. /// @@ -9256,9 +9258,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RowsResponse - System.Threading.Tasks.Task CellsGetWorksheetRowsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsGetWorksheetRowsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Read worksheet rows info. @@ -9270,9 +9272,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RowsResponse) - System.Threading.Tasks.Task> CellsGetWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsGetWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet hyperlink by index. /// @@ -9284,9 +9286,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsHypelinksDeleteWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsHypelinksDeleteWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null); /// /// Delete worksheet hyperlink by index. @@ -9299,9 +9301,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsHypelinksDeleteWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsHypelinksDeleteWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null); /// /// Delete all hyperlinks in worksheet. /// @@ -9312,9 +9314,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsHypelinksDeleteWorksheetHyperlinksAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsHypelinksDeleteWorksheetHyperlinksAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete all hyperlinks in worksheet. @@ -9326,9 +9328,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsHypelinksDeleteWorksheetHyperlinksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsHypelinksDeleteWorksheetHyperlinksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet hyperlink by index. /// @@ -9340,9 +9342,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HyperlinkResponse - System.Threading.Tasks.Task CellsHypelinksGetWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsHypelinksGetWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null); /// /// Get worksheet hyperlink by index. @@ -9355,9 +9357,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HyperlinkResponse) - System.Threading.Tasks.Task> CellsHypelinksGetWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsHypelinksGetWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null); /// /// Get worksheet hyperlinks. /// @@ -9368,9 +9370,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HyperlinksResponse - System.Threading.Tasks.Task CellsHypelinksGetWorksheetHyperlinksAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsHypelinksGetWorksheetHyperlinksAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet hyperlinks. @@ -9382,9 +9384,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HyperlinksResponse) - System.Threading.Tasks.Task> CellsHypelinksGetWorksheetHyperlinksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsHypelinksGetWorksheetHyperlinksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update worksheet hyperlink by index. /// @@ -9397,9 +9399,9 @@ public interface ICellsApi : IApiAccessor /// The hyperlink's index. /// Hyperlink object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HyperlinkResponse - System.Threading.Tasks.Task CellsHypelinksPostWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsHypelinksPostWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storageName = null); /// /// Update worksheet hyperlink by index. @@ -9413,9 +9415,9 @@ public interface ICellsApi : IApiAccessor /// The hyperlink's index. /// Hyperlink object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HyperlinkResponse) - System.Threading.Tasks.Task> CellsHypelinksPostWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsHypelinksPostWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storageName = null); /// /// Add worksheet hyperlink. /// @@ -9431,9 +9433,9 @@ public interface ICellsApi : IApiAccessor /// /// /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HyperlinkResponse - System.Threading.Tasks.Task CellsHypelinksPutWorksheetHyperlinkAsync (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsHypelinksPutWorksheetHyperlinkAsync (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storageName = null); /// /// Add worksheet hyperlink. @@ -9450,9 +9452,9 @@ public interface ICellsApi : IApiAccessor /// /// /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HyperlinkResponse) - System.Threading.Tasks.Task> CellsHypelinksPutWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsHypelinksPutWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storageName = null); /// /// Delete worksheet list object by index /// @@ -9464,9 +9466,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// List object index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsListObjectsDeleteWorksheetListObjectAsync (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsListObjectsDeleteWorksheetListObjectAsync (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null); /// /// Delete worksheet list object by index @@ -9479,9 +9481,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// List object index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsListObjectsDeleteWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsListObjectsDeleteWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null); /// /// Delete worksheet list objects /// @@ -9492,9 +9494,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsListObjectsDeleteWorksheetListObjectsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsListObjectsDeleteWorksheetListObjectsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet list objects @@ -9506,9 +9508,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsListObjectsDeleteWorksheetListObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsListObjectsDeleteWorksheetListObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet list object info by index. /// @@ -9520,9 +9522,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// list object index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ListObjectResponse - System.Threading.Tasks.Task CellsListObjectsGetWorksheetListObjectAsync (string name, string sheetName, int? listobjectindex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsListObjectsGetWorksheetListObjectAsync (string name, string sheetName, int? listobjectindex, string folder = null, string storageName = null); /// /// Get worksheet list object info by index. @@ -9535,9 +9537,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// list object index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ListObjectResponse) - System.Threading.Tasks.Task> CellsListObjectsGetWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listobjectindex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsListObjectsGetWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listobjectindex, string folder = null, string storageName = null); /// /// Get worksheet listobjects info. /// @@ -9548,9 +9550,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ListObjectsResponse - System.Threading.Tasks.Task CellsListObjectsGetWorksheetListObjectsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsListObjectsGetWorksheetListObjectsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet listobjects info. @@ -9562,9 +9564,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ListObjectsResponse) - System.Threading.Tasks.Task> CellsListObjectsGetWorksheetListObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsListObjectsGetWorksheetListObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update list object /// @@ -9577,9 +9579,9 @@ public interface ICellsApi : IApiAccessor /// list Object index /// listObject dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectAsync (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectAsync (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storageName = null); /// /// Update list object @@ -9593,9 +9595,9 @@ public interface ICellsApi : IApiAccessor /// list Object index /// listObject dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storageName = null); /// /// /// @@ -9607,9 +9609,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectConvertToRangeAsync (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectConvertToRangeAsync (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null); /// /// @@ -9622,9 +9624,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectConvertToRangeAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectConvertToRangeAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null); /// /// /// @@ -9637,9 +9639,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectSortTableAsync (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectSortTableAsync (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storageName = null); /// /// @@ -9653,9 +9655,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectSortTableAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectSortTableAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storageName = null); /// /// /// @@ -9669,9 +9671,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableAsync (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableAsync (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null); /// /// @@ -9686,9 +9688,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null); /// /// Add a list object into worksheet. /// @@ -9705,9 +9707,9 @@ public interface ICellsApi : IApiAccessor /// Whether the range has headers. (optional, default to true) /// List Object (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ListObjectResponse - System.Threading.Tasks.Task CellsListObjectsPutWorksheetListObjectAsync (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsListObjectsPutWorksheetListObjectAsync (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storageName = null); /// /// Add a list object into worksheet. @@ -9725,9 +9727,9 @@ public interface ICellsApi : IApiAccessor /// Whether the range has headers. (optional, default to true) /// List Object (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ListObjectResponse) - System.Threading.Tasks.Task> CellsListObjectsPutWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsListObjectsPutWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storageName = null); /// /// Delete OLE object. /// @@ -9739,9 +9741,9 @@ public interface ICellsApi : IApiAccessor /// The worsheet name. /// Ole object index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsOleObjectsDeleteWorksheetOleObjectAsync (string name, string sheetName, int? oleObjectIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsOleObjectsDeleteWorksheetOleObjectAsync (string name, string sheetName, int? oleObjectIndex, string folder = null, string storageName = null); /// /// Delete OLE object. @@ -9754,9 +9756,9 @@ public interface ICellsApi : IApiAccessor /// The worsheet name. /// Ole object index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsOleObjectsDeleteWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? oleObjectIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsOleObjectsDeleteWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? oleObjectIndex, string folder = null, string storageName = null); /// /// Delete all OLE objects. /// @@ -9767,9 +9769,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worsheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsOleObjectsDeleteWorksheetOleObjectsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsOleObjectsDeleteWorksheetOleObjectsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete all OLE objects. @@ -9781,9 +9783,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The worsheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsOleObjectsDeleteWorksheetOleObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsOleObjectsDeleteWorksheetOleObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get OLE object info. /// @@ -9796,9 +9798,9 @@ public interface ICellsApi : IApiAccessor /// The object number. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of System.IO.Stream - System.Threading.Tasks.Task CellsOleObjectsGetWorksheetOleObjectAsync (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsOleObjectsGetWorksheetOleObjectAsync (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storageName = null); /// /// Get OLE object info. @@ -9812,9 +9814,9 @@ public interface ICellsApi : IApiAccessor /// The object number. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (System.IO.Stream) - System.Threading.Tasks.Task> CellsOleObjectsGetWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsOleObjectsGetWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storageName = null); /// /// Get worksheet OLE objects info. /// @@ -9825,9 +9827,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of OleObjectsResponse - System.Threading.Tasks.Task CellsOleObjectsGetWorksheetOleObjectsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsOleObjectsGetWorksheetOleObjectsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet OLE objects info. @@ -9839,9 +9841,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (OleObjectsResponse) - System.Threading.Tasks.Task> CellsOleObjectsGetWorksheetOleObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsOleObjectsGetWorksheetOleObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update OLE object. /// @@ -9854,9 +9856,9 @@ public interface ICellsApi : IApiAccessor /// Ole object index /// Ole Object (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsOleObjectsPostUpdateWorksheetOleObjectAsync (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsOleObjectsPostUpdateWorksheetOleObjectAsync (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storageName = null); /// /// Update OLE object. @@ -9870,9 +9872,9 @@ public interface ICellsApi : IApiAccessor /// Ole object index /// Ole Object (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsOleObjectsPostUpdateWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsOleObjectsPostUpdateWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storageName = null); /// /// Add OLE object /// @@ -9890,9 +9892,9 @@ public interface ICellsApi : IApiAccessor /// OLE filename (optional) /// Image filename (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of OleObjectResponse - System.Threading.Tasks.Task CellsOleObjectsPutWorksheetOleObjectAsync (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsOleObjectsPutWorksheetOleObjectAsync (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storageName = null); /// /// Add OLE object @@ -9911,9 +9913,9 @@ public interface ICellsApi : IApiAccessor /// OLE filename (optional) /// Image filename (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (OleObjectResponse) - System.Threading.Tasks.Task> CellsOleObjectsPutWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsOleObjectsPutWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storageName = null); /// /// /// @@ -9925,9 +9927,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPageBreaksDeleteHorizontalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageBreaksDeleteHorizontalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// @@ -9940,9 +9942,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPageBreaksDeleteHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageBreaksDeleteHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// /// @@ -9954,9 +9956,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPageBreaksDeleteHorizontalPageBreaksAsync (string name, string sheetName, int? row = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageBreaksDeleteHorizontalPageBreaksAsync (string name, string sheetName, int? row = null, string folder = null, string storageName = null); /// /// @@ -9969,9 +9971,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPageBreaksDeleteHorizontalPageBreaksAsyncWithHttpInfo (string name, string sheetName, int? row = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageBreaksDeleteHorizontalPageBreaksAsyncWithHttpInfo (string name, string sheetName, int? row = null, string folder = null, string storageName = null); /// /// /// @@ -9983,9 +9985,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPageBreaksDeleteVerticalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageBreaksDeleteVerticalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// @@ -9998,9 +10000,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPageBreaksDeleteVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageBreaksDeleteVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// /// @@ -10012,9 +10014,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPageBreaksDeleteVerticalPageBreaksAsync (string name, string sheetName, int? column = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageBreaksDeleteVerticalPageBreaksAsync (string name, string sheetName, int? column = null, string folder = null, string storageName = null); /// /// @@ -10027,9 +10029,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPageBreaksDeleteVerticalPageBreaksAsyncWithHttpInfo (string name, string sheetName, int? column = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageBreaksDeleteVerticalPageBreaksAsyncWithHttpInfo (string name, string sheetName, int? column = null, string folder = null, string storageName = null); /// /// /// @@ -10041,9 +10043,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HorizontalPageBreakResponse - System.Threading.Tasks.Task CellsPageBreaksGetHorizontalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageBreaksGetHorizontalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// @@ -10056,9 +10058,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HorizontalPageBreakResponse) - System.Threading.Tasks.Task> CellsPageBreaksGetHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageBreaksGetHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// /// @@ -10069,9 +10071,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HorizontalPageBreaksResponse - System.Threading.Tasks.Task CellsPageBreaksGetHorizontalPageBreaksAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageBreaksGetHorizontalPageBreaksAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// @@ -10083,9 +10085,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HorizontalPageBreaksResponse) - System.Threading.Tasks.Task> CellsPageBreaksGetHorizontalPageBreaksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageBreaksGetHorizontalPageBreaksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// /// @@ -10097,9 +10099,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of VerticalPageBreakResponse - System.Threading.Tasks.Task CellsPageBreaksGetVerticalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageBreaksGetVerticalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// @@ -10112,9 +10114,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (VerticalPageBreakResponse) - System.Threading.Tasks.Task> CellsPageBreaksGetVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageBreaksGetVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null); /// /// /// @@ -10125,9 +10127,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of VerticalPageBreaksResponse - System.Threading.Tasks.Task CellsPageBreaksGetVerticalPageBreaksAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageBreaksGetVerticalPageBreaksAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// @@ -10139,9 +10141,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (VerticalPageBreaksResponse) - System.Threading.Tasks.Task> CellsPageBreaksGetVerticalPageBreaksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageBreaksGetVerticalPageBreaksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// /// @@ -10157,9 +10159,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPageBreaksPutHorizontalPageBreakAsync (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageBreaksPutHorizontalPageBreakAsync (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storageName = null); /// /// @@ -10176,9 +10178,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPageBreaksPutHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageBreaksPutHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storageName = null); /// /// /// @@ -10194,9 +10196,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPageBreaksPutVerticalPageBreakAsync (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageBreaksPutVerticalPageBreakAsync (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storageName = null); /// /// @@ -10213,9 +10215,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPageBreaksPutVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageBreaksPutVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storageName = null); /// /// clear header footer /// @@ -10226,9 +10228,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPageSetupDeleteHeaderFooterAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageSetupDeleteHeaderFooterAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// clear header footer @@ -10240,9 +10242,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPageSetupDeleteHeaderFooterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageSetupDeleteHeaderFooterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// get page footer information /// @@ -10253,9 +10255,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PageSectionsResponse - System.Threading.Tasks.Task CellsPageSetupGetFooterAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageSetupGetFooterAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// get page footer information @@ -10267,9 +10269,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PageSectionsResponse) - System.Threading.Tasks.Task> CellsPageSetupGetFooterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageSetupGetFooterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// get page header information /// @@ -10280,9 +10282,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PageSectionsResponse - System.Threading.Tasks.Task CellsPageSetupGetHeaderAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageSetupGetHeaderAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// get page header information @@ -10294,9 +10296,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PageSectionsResponse) - System.Threading.Tasks.Task> CellsPageSetupGetHeaderAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageSetupGetHeaderAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get Page Setup information. /// @@ -10307,9 +10309,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PageSetupResponse - System.Threading.Tasks.Task CellsPageSetupGetPageSetupAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageSetupGetPageSetupAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get Page Setup information. @@ -10321,9 +10323,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PageSetupResponse) - System.Threading.Tasks.Task> CellsPageSetupGetPageSetupAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageSetupGetPageSetupAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// update page footer information /// @@ -10337,9 +10339,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPageSetupPostFooterAsync (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageSetupPostFooterAsync (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null); /// /// update page footer information @@ -10354,9 +10356,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPageSetupPostFooterAsyncWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageSetupPostFooterAsyncWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null); /// /// update page header information /// @@ -10370,9 +10372,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPageSetupPostHeaderAsync (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageSetupPostHeaderAsync (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null); /// /// update page header information @@ -10387,9 +10389,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPageSetupPostHeaderAsyncWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageSetupPostHeaderAsyncWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null); /// /// Update Page Setup information. /// @@ -10401,9 +10403,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPageSetupPostPageSetupAsync (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPageSetupPostPageSetupAsync (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storageName = null); /// /// Update Page Setup information. @@ -10416,9 +10418,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPageSetupPostPageSetupAsyncWithHttpInfo (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPageSetupPostPageSetupAsyncWithHttpInfo (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storageName = null); /// /// Delete a picture object in worksheet /// @@ -10430,9 +10432,9 @@ public interface ICellsApi : IApiAccessor /// The worsheet name. /// Picture index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPicturesDeleteWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPicturesDeleteWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, string folder = null, string storageName = null); /// /// Delete a picture object in worksheet @@ -10445,9 +10447,9 @@ public interface ICellsApi : IApiAccessor /// The worsheet name. /// Picture index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPicturesDeleteWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPicturesDeleteWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, string folder = null, string storageName = null); /// /// Delete all pictures in worksheet. /// @@ -10458,9 +10460,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPicturesDeleteWorksheetPicturesAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPicturesDeleteWorksheetPicturesAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete all pictures in worksheet. @@ -10472,9 +10474,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPicturesDeleteWorksheetPicturesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPicturesDeleteWorksheetPicturesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// GRead worksheet picture by number. /// @@ -10487,9 +10489,9 @@ public interface ICellsApi : IApiAccessor /// The picture index. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of System.IO.Stream - System.Threading.Tasks.Task CellsPicturesGetWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPicturesGetWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storageName = null); /// /// GRead worksheet picture by number. @@ -10503,9 +10505,9 @@ public interface ICellsApi : IApiAccessor /// The picture index. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (System.IO.Stream) - System.Threading.Tasks.Task> CellsPicturesGetWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPicturesGetWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storageName = null); /// /// Read worksheet pictures. /// @@ -10516,9 +10518,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PicturesResponse - System.Threading.Tasks.Task CellsPicturesGetWorksheetPicturesAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPicturesGetWorksheetPicturesAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Read worksheet pictures. @@ -10530,9 +10532,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PicturesResponse) - System.Threading.Tasks.Task> CellsPicturesGetWorksheetPicturesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPicturesGetWorksheetPicturesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update worksheet picture by index. /// @@ -10545,9 +10547,9 @@ public interface ICellsApi : IApiAccessor /// The picture's index. /// Picture object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PictureResponse - System.Threading.Tasks.Task CellsPicturesPostWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPicturesPostWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storageName = null); /// /// Update worksheet picture by index. @@ -10561,9 +10563,9 @@ public interface ICellsApi : IApiAccessor /// The picture's index. /// Picture object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PictureResponse) - System.Threading.Tasks.Task> CellsPicturesPostWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPicturesPostWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storageName = null); /// /// Add a new worksheet picture. /// @@ -10580,9 +10582,9 @@ public interface ICellsApi : IApiAccessor /// The image low right column. (optional, default to 0) /// The picture path, if not provided the picture data is inspected in the request body. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PicturesResponse - System.Threading.Tasks.Task CellsPicturesPutWorksheetAddPictureAsync (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPicturesPutWorksheetAddPictureAsync (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storageName = null); /// /// Add a new worksheet picture. @@ -10600,9 +10602,9 @@ public interface ICellsApi : IApiAccessor /// The image low right column. (optional, default to 0) /// The picture path, if not provided the picture data is inspected in the request body. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PicturesResponse) - System.Threading.Tasks.Task> CellsPicturesPutWorksheetAddPictureAsyncWithHttpInfo (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPicturesPutWorksheetAddPictureAsyncWithHttpInfo (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storageName = null); /// /// Delete pivot field into into pivot table /// @@ -10616,9 +10618,9 @@ public interface ICellsApi : IApiAccessor /// The fields area type. /// Dto that conrains field indexes (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesDeletePivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesDeletePivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storageName = null); /// /// Delete pivot field into into pivot table @@ -10633,9 +10635,9 @@ public interface ICellsApi : IApiAccessor /// The fields area type. /// Dto that conrains field indexes (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesDeletePivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesDeletePivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storageName = null); /// /// Delete worksheet pivot table by index /// @@ -10647,9 +10649,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// Delete worksheet pivot table by index @@ -10662,9 +10664,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// delete pivot filter for piovt table /// @@ -10678,9 +10680,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// delete pivot filter for piovt table @@ -10695,9 +10697,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// delete all pivot filters for piovt table /// @@ -10710,9 +10712,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableFiltersAsync (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableFiltersAsync (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// delete all pivot filters for piovt table @@ -10726,9 +10728,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableFiltersAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableFiltersAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Delete worksheet pivot tables /// @@ -10739,9 +10741,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTablesAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTablesAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet pivot tables @@ -10753,9 +10755,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTablesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTablesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get pivot field into into pivot table /// @@ -10769,9 +10771,9 @@ public interface ICellsApi : IApiAccessor /// The field index in the base fields. /// The fields area type. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PivotFieldResponse - System.Threading.Tasks.Task CellsPivotTablesGetPivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesGetPivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storageName = null); /// /// Get pivot field into into pivot table @@ -10786,9 +10788,9 @@ public interface ICellsApi : IApiAccessor /// The field index in the base fields. /// The fields area type. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PivotFieldResponse) - System.Threading.Tasks.Task> CellsPivotTablesGetPivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesGetPivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storageName = null); /// /// Get worksheet pivottable info by index. /// @@ -10800,9 +10802,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PivotTableResponse - System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableAsync (string name, string sheetName, int? pivottableIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableAsync (string name, string sheetName, int? pivottableIndex, string folder = null, string storageName = null); /// /// Get worksheet pivottable info by index. @@ -10815,9 +10817,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PivotTableResponse) - System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, int? pivottableIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, int? pivottableIndex, string folder = null, string storageName = null); /// /// /// @@ -10830,9 +10832,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PivotFilterResponse - System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storageName = null); /// /// @@ -10846,9 +10848,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PivotFilterResponse) - System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storageName = null); /// /// /// @@ -10860,9 +10862,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PivotFiltersResponse - System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableFiltersAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableFiltersAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// @@ -10875,9 +10877,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PivotFiltersResponse) - System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableFiltersAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableFiltersAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// Get worksheet pivottables info. /// @@ -10888,9 +10890,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PivotTablesResponse - System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTablesAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTablesAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet pivottables info. @@ -10902,9 +10904,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PivotTablesResponse) - System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTablesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTablesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update cell style for pivot table /// @@ -10920,9 +10922,9 @@ public interface ICellsApi : IApiAccessor /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesPostPivotTableCellStyleAsync (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesPostPivotTableCellStyleAsync (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Update cell style for pivot table @@ -10939,9 +10941,9 @@ public interface ICellsApi : IApiAccessor /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableCellStyleAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableCellStyleAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// /// @@ -10958,9 +10960,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesPostPivotTableFieldHideItemAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesPostPivotTableFieldHideItemAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// @@ -10978,9 +10980,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableFieldHideItemAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableFieldHideItemAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// /// @@ -10995,9 +10997,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesPostPivotTableFieldMoveToAsync (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesPostPivotTableFieldMoveToAsync (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storageName = null); /// /// @@ -11013,9 +11015,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableFieldMoveToAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableFieldMoveToAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storageName = null); /// /// Update style for pivot table /// @@ -11029,9 +11031,9 @@ public interface ICellsApi : IApiAccessor /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesPostPivotTableStyleAsync (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesPostPivotTableStyleAsync (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Update style for pivot table @@ -11046,9 +11048,9 @@ public interface ICellsApi : IApiAccessor /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableStyleAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableStyleAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Calculates pivottable's data to cells. /// @@ -11060,9 +11062,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesPostWorksheetPivotTableCalculateAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesPostWorksheetPivotTableCalculateAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// Calculates pivottable's data to cells. @@ -11075,9 +11077,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesPostWorksheetPivotTableCalculateAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesPostWorksheetPivotTableCalculateAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null); /// /// /// @@ -11092,9 +11094,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesPostWorksheetPivotTableMoveAsync (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesPostWorksheetPivotTableMoveAsync (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storageName = null); /// /// @@ -11110,9 +11112,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesPostWorksheetPivotTableMoveAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesPostWorksheetPivotTableMoveAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storageName = null); /// /// Add pivot field into into pivot table /// @@ -11127,9 +11129,9 @@ public interface ICellsApi : IApiAccessor /// Dto that conrains field indexes (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesPutPivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesPutPivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Add pivot field into into pivot table @@ -11145,9 +11147,9 @@ public interface ICellsApi : IApiAccessor /// Dto that conrains field indexes (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesPutPivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesPutPivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Add a pivot table into worksheet. /// @@ -11159,13 +11161,13 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// CreatePivotTableRequest dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The data for the new PivotTable cache. (optional) /// The cell in the upper-left corner of the PivotTable report's destination range. (optional) /// The name of the new PivotTable report. (optional) /// Indicates whether using same data source when another existing pivot table has used this data source. If the property is true, it will save memory. (optional) /// Task of PivotTableResponse - System.Threading.Tasks.Task CellsPivotTablesPutWorksheetPivotTableAsync (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null); + System.Threading.Tasks.Task CellsPivotTablesPutWorksheetPivotTableAsync (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null); /// /// Add a pivot table into worksheet. @@ -11178,13 +11180,13 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// CreatePivotTableRequest dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The data for the new PivotTable cache. (optional) /// The cell in the upper-left corner of the PivotTable report's destination range. (optional) /// The name of the new PivotTable report. (optional) /// Indicates whether using same data source when another existing pivot table has used this data source. If the property is true, it will save memory. (optional) /// Task of ApiResponse (PivotTableResponse) - System.Threading.Tasks.Task> CellsPivotTablesPutWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null); + System.Threading.Tasks.Task> CellsPivotTablesPutWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null); /// /// Add pivot filter for piovt table index /// @@ -11198,9 +11200,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPivotTablesPutWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPivotTablesPutWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Add pivot filter for piovt table index @@ -11215,9 +11217,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPivotTablesPutWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPivotTablesPutWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storageName = null); /// /// Cell calculate formula /// @@ -11230,9 +11232,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostCellCalculateAsync (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostCellCalculateAsync (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storageName = null); /// /// Cell calculate formula @@ -11246,9 +11248,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostCellCalculateAsyncWithHttpInfo (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostCellCalculateAsyncWithHttpInfo (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storageName = null); /// /// Set cell characters /// @@ -11261,9 +11263,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostCellCharactersAsync (string name, string sheetName, string cellName, List options = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostCellCharactersAsync (string name, string sheetName, string cellName, List options = null, string folder = null, string storageName = null); /// /// Set cell characters @@ -11277,9 +11279,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostCellCharactersAsyncWithHttpInfo (string name, string sheetName, string cellName, List options = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostCellCharactersAsyncWithHttpInfo (string name, string sheetName, string cellName, List options = null, string folder = null, string storageName = null); /// /// Clear cells contents. /// @@ -11295,9 +11297,9 @@ public interface ICellsApi : IApiAccessor /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostClearContentsAsync (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostClearContentsAsync (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null); /// /// Clear cells contents. @@ -11314,9 +11316,9 @@ public interface ICellsApi : IApiAccessor /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostClearContentsAsyncWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostClearContentsAsyncWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null); /// /// Clear cells contents. /// @@ -11332,9 +11334,9 @@ public interface ICellsApi : IApiAccessor /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostClearFormatsAsync (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostClearFormatsAsync (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null); /// /// Clear cells contents. @@ -11351,9 +11353,9 @@ public interface ICellsApi : IApiAccessor /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostClearFormatsAsyncWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostClearFormatsAsyncWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null); /// /// Set column style /// @@ -11366,9 +11368,9 @@ public interface ICellsApi : IApiAccessor /// The column index. /// Style dto (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostColumnStyleAsync (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostColumnStyleAsync (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storageName = null); /// /// Set column style @@ -11382,9 +11384,9 @@ public interface ICellsApi : IApiAccessor /// The column index. /// Style dto (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostColumnStyleAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostColumnStyleAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storageName = null); /// /// Copy cell into cell /// @@ -11400,9 +11402,9 @@ public interface ICellsApi : IApiAccessor /// Source row (optional) /// Source column (optional) /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostCopyCellIntoCellAsync (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostCopyCellIntoCellAsync (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storageName = null); /// /// Copy cell into cell @@ -11419,9 +11421,9 @@ public interface ICellsApi : IApiAccessor /// Source row (optional) /// Source column (optional) /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostCopyCellIntoCellAsyncWithHttpInfo (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostCopyCellIntoCellAsyncWithHttpInfo (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storageName = null); /// /// Copy worksheet columns. /// @@ -11436,9 +11438,9 @@ public interface ICellsApi : IApiAccessor /// The copied column number /// The Worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostCopyWorksheetColumnsAsync (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostCopyWorksheetColumnsAsync (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storageName = null); /// /// Copy worksheet columns. @@ -11454,9 +11456,9 @@ public interface ICellsApi : IApiAccessor /// The copied column number /// The Worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostCopyWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostCopyWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storageName = null); /// /// Copy worksheet rows. /// @@ -11471,9 +11473,9 @@ public interface ICellsApi : IApiAccessor /// The copied row number /// worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostCopyWorksheetRowsAsync (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostCopyWorksheetRowsAsync (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storageName = null); /// /// Copy worksheet rows. @@ -11489,9 +11491,9 @@ public interface ICellsApi : IApiAccessor /// The copied row number /// worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostCopyWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostCopyWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storageName = null); /// /// Group worksheet columns. /// @@ -11505,9 +11507,9 @@ public interface ICellsApi : IApiAccessor /// The last column index to be operated. /// columns visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostGroupWorksheetColumnsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostGroupWorksheetColumnsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null); /// /// Group worksheet columns. @@ -11522,9 +11524,9 @@ public interface ICellsApi : IApiAccessor /// The last column index to be operated. /// columns visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostGroupWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostGroupWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null); /// /// Group worksheet rows. /// @@ -11538,9 +11540,9 @@ public interface ICellsApi : IApiAccessor /// The last row index to be operated. /// rows visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostGroupWorksheetRowsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostGroupWorksheetRowsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null); /// /// Group worksheet rows. @@ -11555,9 +11557,9 @@ public interface ICellsApi : IApiAccessor /// The last row index to be operated. /// rows visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostGroupWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostGroupWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null); /// /// Hide worksheet columns. /// @@ -11570,9 +11572,9 @@ public interface ICellsApi : IApiAccessor /// The begin column index to be operated. /// Number of columns to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostHideWorksheetColumnsAsync (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostHideWorksheetColumnsAsync (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storageName = null); /// /// Hide worksheet columns. @@ -11586,9 +11588,9 @@ public interface ICellsApi : IApiAccessor /// The begin column index to be operated. /// Number of columns to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostHideWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostHideWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storageName = null); /// /// Hide worksheet rows. /// @@ -11601,9 +11603,9 @@ public interface ICellsApi : IApiAccessor /// The begin row index to be operated. /// Number of rows to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostHideWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostHideWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storageName = null); /// /// Hide worksheet rows. @@ -11617,9 +11619,9 @@ public interface ICellsApi : IApiAccessor /// The begin row index to be operated. /// Number of rows to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostHideWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostHideWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storageName = null); /// /// Set row style. /// @@ -11632,9 +11634,9 @@ public interface ICellsApi : IApiAccessor /// The row index. /// Style dto (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostRowStyleAsync (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostRowStyleAsync (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storageName = null); /// /// Set row style. @@ -11648,9 +11650,9 @@ public interface ICellsApi : IApiAccessor /// The row index. /// Style dto (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostRowStyleAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostRowStyleAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storageName = null); /// /// Set htmlstring value into cell /// @@ -11663,9 +11665,9 @@ public interface ICellsApi : IApiAccessor /// The cell name. /// /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellResponse - System.Threading.Tasks.Task CellsPostSetCellHtmlStringAsync (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostSetCellHtmlStringAsync (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storageName = null); /// /// Set htmlstring value into cell @@ -11679,9 +11681,9 @@ public interface ICellsApi : IApiAccessor /// The cell name. /// /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellResponse) - System.Threading.Tasks.Task> CellsPostSetCellHtmlStringAsyncWithHttpInfo (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostSetCellHtmlStringAsyncWithHttpInfo (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storageName = null); /// /// Set cell range value /// @@ -11695,9 +11697,9 @@ public interface ICellsApi : IApiAccessor /// Range value /// Value data type (like \"int\") /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostSetCellRangeValueAsync (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostSetCellRangeValueAsync (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storageName = null); /// /// Set cell range value @@ -11712,9 +11714,9 @@ public interface ICellsApi : IApiAccessor /// Range value /// Value data type (like \"int\") /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostSetCellRangeValueAsyncWithHttpInfo (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostSetCellRangeValueAsyncWithHttpInfo (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storageName = null); /// /// Set worksheet column width. /// @@ -11727,9 +11729,9 @@ public interface ICellsApi : IApiAccessor /// The column index. /// The width. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ColumnResponse - System.Threading.Tasks.Task CellsPostSetWorksheetColumnWidthAsync (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostSetWorksheetColumnWidthAsync (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storageName = null); /// /// Set worksheet column width. @@ -11743,9 +11745,9 @@ public interface ICellsApi : IApiAccessor /// The column index. /// The width. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ColumnResponse) - System.Threading.Tasks.Task> CellsPostSetWorksheetColumnWidthAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostSetWorksheetColumnWidthAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storageName = null); /// /// Ungroup worksheet columns. /// @@ -11758,9 +11760,9 @@ public interface ICellsApi : IApiAccessor /// The first column index to be operated. /// The last column index to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostUngroupWorksheetColumnsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostUngroupWorksheetColumnsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storageName = null); /// /// Ungroup worksheet columns. @@ -11774,9 +11776,9 @@ public interface ICellsApi : IApiAccessor /// The first column index to be operated. /// The last column index to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostUngroupWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostUngroupWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storageName = null); /// /// Ungroup worksheet rows. /// @@ -11790,9 +11792,9 @@ public interface ICellsApi : IApiAccessor /// The last row index to be operated. /// Is all row to be operated (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostUngroupWorksheetRowsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostUngroupWorksheetRowsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storageName = null); /// /// Ungroup worksheet rows. @@ -11807,9 +11809,9 @@ public interface ICellsApi : IApiAccessor /// The last row index to be operated. /// Is all row to be operated (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostUngroupWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostUngroupWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storageName = null); /// /// Unhide worksheet columns. /// @@ -11823,9 +11825,9 @@ public interface ICellsApi : IApiAccessor /// Number of columns to be operated. /// The new column width. (optional, default to 50.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostUnhideWorksheetColumnsAsync (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostUnhideWorksheetColumnsAsync (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storageName = null); /// /// Unhide worksheet columns. @@ -11840,9 +11842,9 @@ public interface ICellsApi : IApiAccessor /// Number of columns to be operated. /// The new column width. (optional, default to 50.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostUnhideWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostUnhideWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storageName = null); /// /// Unhide worksheet rows. /// @@ -11856,9 +11858,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. /// The new row height. (optional, default to 15.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostUnhideWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostUnhideWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storageName = null); /// /// Unhide worksheet rows. @@ -11873,9 +11875,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. /// The new row height. (optional, default to 15.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostUnhideWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostUnhideWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storageName = null); /// /// Update cell's style. /// @@ -11888,9 +11890,9 @@ public interface ICellsApi : IApiAccessor /// The cell name. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of StyleResponse - System.Threading.Tasks.Task CellsPostUpdateWorksheetCellStyleAsync (string name, string sheetName, string cellName, Style style = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostUpdateWorksheetCellStyleAsync (string name, string sheetName, string cellName, Style style = null, string folder = null, string storageName = null); /// /// Update cell's style. @@ -11904,9 +11906,9 @@ public interface ICellsApi : IApiAccessor /// The cell name. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (StyleResponse) - System.Threading.Tasks.Task> CellsPostUpdateWorksheetCellStyleAsyncWithHttpInfo (string name, string sheetName, string cellName, Style style = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostUpdateWorksheetCellStyleAsyncWithHttpInfo (string name, string sheetName, string cellName, Style style = null, string folder = null, string storageName = null); /// /// Update cell's range style. /// @@ -11919,9 +11921,9 @@ public interface ICellsApi : IApiAccessor /// The range. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostUpdateWorksheetRangeStyleAsync (string name, string sheetName, string range, Style style = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostUpdateWorksheetRangeStyleAsync (string name, string sheetName, string range, Style style = null, string folder = null, string storageName = null); /// /// Update cell's range style. @@ -11935,9 +11937,9 @@ public interface ICellsApi : IApiAccessor /// The range. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostUpdateWorksheetRangeStyleAsyncWithHttpInfo (string name, string sheetName, string range, Style style = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostUpdateWorksheetRangeStyleAsyncWithHttpInfo (string name, string sheetName, string range, Style style = null, string folder = null, string storageName = null); /// /// Update worksheet row. /// @@ -11950,9 +11952,9 @@ public interface ICellsApi : IApiAccessor /// The row index. /// The new row height. (optional, default to 0.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RowResponse - System.Threading.Tasks.Task CellsPostUpdateWorksheetRowAsync (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostUpdateWorksheetRowAsync (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storageName = null); /// /// Update worksheet row. @@ -11966,9 +11968,9 @@ public interface ICellsApi : IApiAccessor /// The row index. /// The new row height. (optional, default to 0.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RowResponse) - System.Threading.Tasks.Task> CellsPostUpdateWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostUpdateWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storageName = null); /// /// Set cell value. /// @@ -11983,9 +11985,9 @@ public interface ICellsApi : IApiAccessor /// The value type. (optional) /// Formula for cell (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellResponse - System.Threading.Tasks.Task CellsPostWorksheetCellSetValueAsync (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostWorksheetCellSetValueAsync (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storageName = null); /// /// Set cell value. @@ -12001,9 +12003,9 @@ public interface ICellsApi : IApiAccessor /// The value type. (optional) /// Formula for cell (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellResponse) - System.Threading.Tasks.Task> CellsPostWorksheetCellSetValueAsyncWithHttpInfo (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostWorksheetCellSetValueAsyncWithHttpInfo (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storageName = null); /// /// Merge cells. /// @@ -12018,9 +12020,9 @@ public interface ICellsApi : IApiAccessor /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostWorksheetMergeAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostWorksheetMergeAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Merge cells. @@ -12036,9 +12038,9 @@ public interface ICellsApi : IApiAccessor /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostWorksheetMergeAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostWorksheetMergeAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Unmerge cells. /// @@ -12053,9 +12055,9 @@ public interface ICellsApi : IApiAccessor /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPostWorksheetUnmergeAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPostWorksheetUnmergeAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Unmerge cells. @@ -12071,9 +12073,9 @@ public interface ICellsApi : IApiAccessor /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPostWorksheetUnmergeAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPostWorksheetUnmergeAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null); /// /// Delete all custom document properties and clean built-in ones. /// @@ -12083,9 +12085,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsDocumentPropertiesResponse - System.Threading.Tasks.Task CellsPropertiesDeleteDocumentPropertiesAsync (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPropertiesDeleteDocumentPropertiesAsync (string name, string folder = null, string storageName = null); /// /// Delete all custom document properties and clean built-in ones. @@ -12096,9 +12098,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsDocumentPropertiesResponse) - System.Threading.Tasks.Task> CellsPropertiesDeleteDocumentPropertiesAsyncWithHttpInfo (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPropertiesDeleteDocumentPropertiesAsyncWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Delete document property. /// @@ -12109,9 +12111,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsDocumentPropertiesResponse - System.Threading.Tasks.Task CellsPropertiesDeleteDocumentPropertyAsync (string name, string propertyName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPropertiesDeleteDocumentPropertyAsync (string name, string propertyName, string folder = null, string storageName = null); /// /// Delete document property. @@ -12123,9 +12125,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsDocumentPropertiesResponse) - System.Threading.Tasks.Task> CellsPropertiesDeleteDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPropertiesDeleteDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, string folder = null, string storageName = null); /// /// Read document properties. /// @@ -12135,9 +12137,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsDocumentPropertiesResponse - System.Threading.Tasks.Task CellsPropertiesGetDocumentPropertiesAsync (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPropertiesGetDocumentPropertiesAsync (string name, string folder = null, string storageName = null); /// /// Read document properties. @@ -12148,9 +12150,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsDocumentPropertiesResponse) - System.Threading.Tasks.Task> CellsPropertiesGetDocumentPropertiesAsyncWithHttpInfo (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPropertiesGetDocumentPropertiesAsyncWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Read document property by name. /// @@ -12161,9 +12163,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsDocumentPropertyResponse - System.Threading.Tasks.Task CellsPropertiesGetDocumentPropertyAsync (string name, string propertyName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPropertiesGetDocumentPropertyAsync (string name, string propertyName, string folder = null, string storageName = null); /// /// Read document property by name. @@ -12175,9 +12177,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsDocumentPropertyResponse) - System.Threading.Tasks.Task> CellsPropertiesGetDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPropertiesGetDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, string folder = null, string storageName = null); /// /// Set/create document property. /// @@ -12189,9 +12191,9 @@ public interface ICellsApi : IApiAccessor /// The property name. /// with new property value. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsDocumentPropertyResponse - System.Threading.Tasks.Task CellsPropertiesPutDocumentPropertyAsync (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPropertiesPutDocumentPropertyAsync (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storageName = null); /// /// Set/create document property. @@ -12204,9 +12206,9 @@ public interface ICellsApi : IApiAccessor /// The property name. /// with new property value. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsDocumentPropertyResponse) - System.Threading.Tasks.Task> CellsPropertiesPutDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPropertiesPutDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storageName = null); /// /// Insert worksheet columns. /// @@ -12220,9 +12222,9 @@ public interface ICellsApi : IApiAccessor /// The columns. /// The update reference. (optional, default to true) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ColumnsResponse - System.Threading.Tasks.Task CellsPutInsertWorksheetColumnsAsync (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPutInsertWorksheetColumnsAsync (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storageName = null); /// /// Insert worksheet columns. @@ -12237,9 +12239,9 @@ public interface ICellsApi : IApiAccessor /// The columns. /// The update reference. (optional, default to true) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ColumnsResponse) - System.Threading.Tasks.Task> CellsPutInsertWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPutInsertWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storageName = null); /// /// Insert new worksheet row. /// @@ -12251,9 +12253,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The new row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RowResponse - System.Threading.Tasks.Task CellsPutInsertWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPutInsertWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Insert new worksheet row. @@ -12266,9 +12268,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The new row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RowResponse) - System.Threading.Tasks.Task> CellsPutInsertWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPutInsertWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null); /// /// Insert several new worksheet rows. /// @@ -12282,9 +12284,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsPutInsertWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsPutInsertWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null); /// /// Insert several new worksheet rows. @@ -12299,9 +12301,9 @@ public interface ICellsApi : IApiAccessor /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsPutInsertWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsPutInsertWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null); /// /// Get cells list in a range by range name or row column indexes /// @@ -12317,9 +12319,9 @@ public interface ICellsApi : IApiAccessor /// the count of rows in the range (optional) /// the count of columns in the range (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RangeValueResponse - System.Threading.Tasks.Task CellsRangesGetWorksheetCellsRangeValueAsync (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsRangesGetWorksheetCellsRangeValueAsync (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storageName = null); /// /// Get cells list in a range by range name or row column indexes @@ -12336,9 +12338,9 @@ public interface ICellsApi : IApiAccessor /// the count of rows in the range (optional) /// the count of columns in the range (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RangeValueResponse) - System.Threading.Tasks.Task> CellsRangesGetWorksheetCellsRangeValueAsyncWithHttpInfo (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsRangesGetWorksheetCellsRangeValueAsyncWithHttpInfo (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storageName = null); /// /// Set column width of range /// @@ -12351,9 +12353,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeColumnWidthAsync (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeColumnWidthAsync (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null); /// /// Set column width of range @@ -12367,9 +12369,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeColumnWidthAsyncWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeColumnWidthAsyncWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null); /// /// Combines a range of cells into a single cell. /// @@ -12381,9 +12383,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeMergeAsync (string name, string sheetName, Range range = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeMergeAsync (string name, string sheetName, Range range = null, string folder = null, string storageName = null); /// /// Combines a range of cells into a single cell. @@ -12396,9 +12398,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeMergeAsyncWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeMergeAsyncWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storageName = null); /// /// Move the current range to the dest range. /// @@ -12412,9 +12414,9 @@ public interface ICellsApi : IApiAccessor /// The start column of the dest range. /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeMoveToAsync (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeMoveToAsync (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storageName = null); /// /// Move the current range to the dest range. @@ -12429,9 +12431,9 @@ public interface ICellsApi : IApiAccessor /// The start column of the dest range. /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeMoveToAsyncWithHttpInfo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeMoveToAsyncWithHttpInfo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storageName = null); /// /// Sets outline border around a range of cells. /// @@ -12443,9 +12445,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// Range Set OutlineBorder Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeOutlineBorderAsync (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeOutlineBorderAsync (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storageName = null); /// /// Sets outline border around a range of cells. @@ -12458,9 +12460,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// Range Set OutlineBorder Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeOutlineBorderAsyncWithHttpInfo (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeOutlineBorderAsyncWithHttpInfo (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storageName = null); /// /// set row height of range /// @@ -12473,9 +12475,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeRowHeightAsync (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeRowHeightAsync (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null); /// /// set row height of range @@ -12489,9 +12491,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeRowHeightAsyncWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeRowHeightAsyncWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null); /// /// Sets the style of the range. /// @@ -12503,9 +12505,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// Range Set Style Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeStyleAsync (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeStyleAsync (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storageName = null); /// /// Sets the style of the range. @@ -12518,9 +12520,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// Range Set Style Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeStyleAsyncWithHttpInfo (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeStyleAsyncWithHttpInfo (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storageName = null); /// /// Unmerges merged cells of this range. /// @@ -12532,9 +12534,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeUnmergeAsync (string name, string sheetName, Range range = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeUnmergeAsync (string name, string sheetName, Range range = null, string folder = null, string storageName = null); /// /// Unmerges merged cells of this range. @@ -12547,9 +12549,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeUnmergeAsyncWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeUnmergeAsyncWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storageName = null); /// /// Puts a value into the range, if appropriate the value will be converted to other data type and cell's number format will be reset. /// @@ -12564,9 +12566,9 @@ public interface ICellsApi : IApiAccessor /// True: converted to other data type if appropriate. (optional, default to false) /// True: set the number format to cell's style when converting to other data type (optional, default to false) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeValueAsync (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeValueAsync (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storageName = null); /// /// Puts a value into the range, if appropriate the value will be converted to other data type and cell's number format will be reset. @@ -12582,9 +12584,9 @@ public interface ICellsApi : IApiAccessor /// True: converted to other data type if appropriate. (optional, default to false) /// True: set the number format to cell's style when converting to other data type (optional, default to false) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeValueAsyncWithHttpInfo (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeValueAsyncWithHttpInfo (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storageName = null); /// /// copy range in the worksheet /// @@ -12596,9 +12598,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// copydata,copystyle,copyto,copyvalue (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangesAsync (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangesAsync (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storageName = null); /// /// copy range in the worksheet @@ -12611,9 +12613,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name /// copydata,copystyle,copyto,copyvalue (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangesAsyncWithHttpInfo (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangesAsyncWithHttpInfo (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storageName = null); /// /// Convert document and save result to storage. /// @@ -12627,9 +12629,9 @@ public interface ICellsApi : IApiAccessor /// Autofit rows. (optional, default to false) /// Autofit columns. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of SaveResponse - System.Threading.Tasks.Task CellsSaveAsPostDocumentSaveAsAsync (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsSaveAsPostDocumentSaveAsAsync (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null); /// /// Convert document and save result to storage. @@ -12644,9 +12646,9 @@ public interface ICellsApi : IApiAccessor /// Autofit rows. (optional, default to false) /// Autofit columns. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (SaveResponse) - System.Threading.Tasks.Task> CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null); /// /// Delete a shape in worksheet /// @@ -12658,9 +12660,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsShapesDeleteWorksheetShapeAsync (string name, string sheetName, int? shapeindex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsShapesDeleteWorksheetShapeAsync (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null); /// /// Delete a shape in worksheet @@ -12673,9 +12675,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsShapesDeleteWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsShapesDeleteWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null); /// /// delete all shapes in worksheet /// @@ -12686,9 +12688,9 @@ public interface ICellsApi : IApiAccessor /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsShapesDeleteWorksheetShapesAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsShapesDeleteWorksheetShapesAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// delete all shapes in worksheet @@ -12700,9 +12702,9 @@ public interface ICellsApi : IApiAccessor /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsShapesDeleteWorksheetShapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsShapesDeleteWorksheetShapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet shape /// @@ -12714,9 +12716,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ShapeResponse - System.Threading.Tasks.Task CellsShapesGetWorksheetShapeAsync (string name, string sheetName, int? shapeindex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsShapesGetWorksheetShapeAsync (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null); /// /// Get worksheet shape @@ -12729,9 +12731,9 @@ public interface ICellsApi : IApiAccessor /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ShapeResponse) - System.Threading.Tasks.Task> CellsShapesGetWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsShapesGetWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null); /// /// Get worksheet shapes /// @@ -12742,9 +12744,9 @@ public interface ICellsApi : IApiAccessor /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ShapesResponse - System.Threading.Tasks.Task CellsShapesGetWorksheetShapesAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsShapesGetWorksheetShapesAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet shapes @@ -12756,9 +12758,9 @@ public interface ICellsApi : IApiAccessor /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ShapesResponse) - System.Threading.Tasks.Task> CellsShapesGetWorksheetShapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsShapesGetWorksheetShapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update a shape in worksheet /// @@ -12771,9 +12773,9 @@ public interface ICellsApi : IApiAccessor /// shape index in worksheet shapes. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsShapesPostWorksheetShapeAsync (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsShapesPostWorksheetShapeAsync (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storageName = null); /// /// Update a shape in worksheet @@ -12787,9 +12789,9 @@ public interface ICellsApi : IApiAccessor /// shape index in worksheet shapes. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsShapesPostWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsShapesPostWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storageName = null); /// /// Add shape in worksheet /// @@ -12799,17 +12801,18 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// document name. /// worksheet name. - /// shape object type - /// Upper left row index. - /// Upper left column index. - /// Represents the vertical offset of Spinner from its left row, in unit of pixel. - /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. - /// Represents the height of Spinner, in unit of pixel. - /// Represents the width of Spinner, in unit of pixel. - /// Document's folder. (optional) - /// storage name. (optional) + /// (optional) + /// shape object type (optional) + /// Upper left row index. (optional) + /// Upper left column index. (optional) + /// Represents the vertical offset of Spinner from its left row, in unit of pixel. (optional) + /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. (optional) + /// Represents the height of Spinner, in unit of pixel. (optional) + /// Represents the width of Spinner, in unit of pixel. (optional) + /// Document's folder. (optional) + /// storage name. (optional) /// Task of ShapeResponse - System.Threading.Tasks.Task CellsShapesPutWorksheetShapeAsync (string name, string sheetName, string drawingType, int? upperLeftRow, int? upperLeftColumn, int? top, int? left, int? width, int? height, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsShapesPutWorksheetShapeAsync (string name, string sheetName, Shape shapeDTO = null, string drawingType = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? top = null, int? left = null, int? width = null, int? height = null, string folder = null, string storageName = null); /// /// Add shape in worksheet @@ -12820,17 +12823,18 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// document name. /// worksheet name. - /// shape object type - /// Upper left row index. - /// Upper left column index. - /// Represents the vertical offset of Spinner from its left row, in unit of pixel. - /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. - /// Represents the height of Spinner, in unit of pixel. - /// Represents the width of Spinner, in unit of pixel. - /// Document's folder. (optional) - /// storage name. (optional) + /// (optional) + /// shape object type (optional) + /// Upper left row index. (optional) + /// Upper left column index. (optional) + /// Represents the vertical offset of Spinner from its left row, in unit of pixel. (optional) + /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. (optional) + /// Represents the height of Spinner, in unit of pixel. (optional) + /// Represents the width of Spinner, in unit of pixel. (optional) + /// Document's folder. (optional) + /// storage name. (optional) /// Task of ApiResponse (ShapeResponse) - System.Threading.Tasks.Task> CellsShapesPutWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, string drawingType, int? upperLeftRow, int? upperLeftColumn, int? top, int? left, int? width, int? height, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsShapesPutWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, Shape shapeDTO = null, string drawingType = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? top = null, int? left = null, int? width = null, int? height = null, string folder = null, string storageName = null); /// /// Run tasks /// @@ -12862,9 +12866,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Encryption settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookDeleteDecryptDocumentAsync (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookDeleteDecryptDocumentAsync (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null); /// /// Decrypt document. @@ -12876,9 +12880,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Encryption settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookDeleteDecryptDocumentAsyncWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookDeleteDecryptDocumentAsyncWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null); /// /// Unprotect document from changes. /// @@ -12888,9 +12892,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookDeleteDocumentUnprotectFromChangesAsync (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookDeleteDocumentUnprotectFromChangesAsync (string name, string folder = null, string storageName = null); /// /// Unprotect document from changes. @@ -12901,9 +12905,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookDeleteDocumentUnprotectFromChangesAsyncWithHttpInfo (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookDeleteDocumentUnprotectFromChangesAsyncWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Unprotect document. /// @@ -12914,9 +12918,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Protection settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookDeleteUnprotectDocumentAsync (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookDeleteUnprotectDocumentAsync (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null); /// /// Unprotect document. @@ -12928,9 +12932,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Protection settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookDeleteUnprotectDocumentAsyncWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookDeleteUnprotectDocumentAsyncWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null); /// /// Set worksheet background image. /// @@ -12940,9 +12944,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookBackgroundAsync (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookBackgroundAsync (string name, string folder = null, string storageName = null); /// /// Set worksheet background image. @@ -12953,9 +12957,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookBackgroundAsyncWithHttpInfo (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookBackgroundAsyncWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Clean workbook's names. /// @@ -12966,9 +12970,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookNameAsync (string name, string nameName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookNameAsync (string name, string nameName, string folder = null, string storageName = null); /// /// Clean workbook's names. @@ -12980,9 +12984,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookNameAsyncWithHttpInfo (string name, string nameName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookNameAsyncWithHttpInfo (string name, string nameName, string folder = null, string storageName = null); /// /// Clean workbook's names. /// @@ -12992,9 +12996,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookNamesAsync (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookNamesAsync (string name, string folder = null, string storageName = null); /// /// Clean workbook's names. @@ -13005,9 +13009,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookNamesAsyncWithHttpInfo (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookNamesAsyncWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Read workbook info or export. /// @@ -13021,10 +13025,10 @@ public interface ICellsApi : IApiAccessor /// Set document rows to be autofit. (optional, default to false) /// Only save table data. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The document output folder. (optional) /// Task of System.IO.Stream - System.Threading.Tasks.Task CellsWorkbookGetWorkbookAsync (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storage = null, string outPath = null); + System.Threading.Tasks.Task CellsWorkbookGetWorkbookAsync (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storageName = null, string outPath = null); /// /// Read workbook info or export. @@ -13039,10 +13043,10 @@ public interface ICellsApi : IApiAccessor /// Set document rows to be autofit. (optional, default to false) /// Only save table data. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The document output folder. (optional) /// Task of ApiResponse (System.IO.Stream) - System.Threading.Tasks.Task> CellsWorkbookGetWorkbookAsyncWithHttpInfo (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storage = null, string outPath = null); + System.Threading.Tasks.Task> CellsWorkbookGetWorkbookAsyncWithHttpInfo (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storageName = null, string outPath = null); /// /// Read workbook default style info. /// @@ -13052,9 +13056,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of StyleResponse - System.Threading.Tasks.Task CellsWorkbookGetWorkbookDefaultStyleAsync (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookGetWorkbookDefaultStyleAsync (string name, string folder = null, string storageName = null); /// /// Read workbook default style info. @@ -13065,9 +13069,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (StyleResponse) - System.Threading.Tasks.Task> CellsWorkbookGetWorkbookDefaultStyleAsyncWithHttpInfo (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookGetWorkbookDefaultStyleAsyncWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Read workbook's name. /// @@ -13078,9 +13082,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of NameResponse - System.Threading.Tasks.Task CellsWorkbookGetWorkbookNameAsync (string name, string nameName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookGetWorkbookNameAsync (string name, string nameName, string folder = null, string storageName = null); /// /// Read workbook's name. @@ -13092,9 +13096,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (NameResponse) - System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNameAsyncWithHttpInfo (string name, string nameName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNameAsyncWithHttpInfo (string name, string nameName, string folder = null, string storageName = null); /// /// Get workbook's name value. /// @@ -13105,9 +13109,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RangeValueResponse - System.Threading.Tasks.Task CellsWorkbookGetWorkbookNameValueAsync (string name, string nameName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookGetWorkbookNameValueAsync (string name, string nameName, string folder = null, string storageName = null); /// /// Get workbook's name value. @@ -13119,9 +13123,9 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RangeValueResponse) - System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNameValueAsyncWithHttpInfo (string name, string nameName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNameValueAsyncWithHttpInfo (string name, string nameName, string folder = null, string storageName = null); /// /// Read workbook's names. /// @@ -13131,9 +13135,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of NamesResponse - System.Threading.Tasks.Task CellsWorkbookGetWorkbookNamesAsync (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookGetWorkbookNamesAsync (string name, string folder = null, string storageName = null); /// /// Read workbook's names. @@ -13144,9 +13148,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (NamesResponse) - System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNamesAsyncWithHttpInfo (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNamesAsyncWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Get Workbook Settings DTO /// @@ -13156,9 +13160,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorkbookSettingsResponse - System.Threading.Tasks.Task CellsWorkbookGetWorkbookSettingsAsync (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookGetWorkbookSettingsAsync (string name, string folder = null, string storageName = null); /// /// Get Workbook Settings DTO @@ -13169,9 +13173,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorkbookSettingsResponse) - System.Threading.Tasks.Task> CellsWorkbookGetWorkbookSettingsAsyncWithHttpInfo (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookGetWorkbookSettingsAsyncWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Read workbook's text items. /// @@ -13181,9 +13185,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TextItemsResponse - System.Threading.Tasks.Task CellsWorkbookGetWorkbookTextItemsAsync (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookGetWorkbookTextItemsAsync (string name, string folder = null, string storageName = null); /// /// Read workbook's text items. @@ -13194,9 +13198,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TextItemsResponse) - System.Threading.Tasks.Task> CellsWorkbookGetWorkbookTextItemsAsyncWithHttpInfo (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookGetWorkbookTextItemsAsyncWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Autofit workbook rows. /// @@ -13210,9 +13214,9 @@ public interface ICellsApi : IApiAccessor /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookPostAutofitWorkbookRowsAsync (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPostAutofitWorkbookRowsAsync (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null); /// /// Autofit workbook rows. @@ -13227,9 +13231,9 @@ public interface ICellsApi : IApiAccessor /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookPostAutofitWorkbookRowsAsyncWithHttpInfo (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPostAutofitWorkbookRowsAsyncWithHttpInfo (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null); /// /// Encript document. /// @@ -13240,9 +13244,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Encryption parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookPostEncryptDocumentAsync (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPostEncryptDocumentAsync (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null); /// /// Encript document. @@ -13254,9 +13258,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// Encryption parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookPostEncryptDocumentAsyncWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPostEncryptDocumentAsyncWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null); /// /// /// @@ -13267,9 +13271,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookPostImportDataAsync (string name, ImportOption importData, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPostImportDataAsync (string name, ImportOption importData, string folder = null, string storageName = null); /// /// @@ -13281,9 +13285,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookPostImportDataAsyncWithHttpInfo (string name, ImportOption importData, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPostImportDataAsyncWithHttpInfo (string name, ImportOption importData, string folder = null, string storageName = null); /// /// Protect document. /// @@ -13294,9 +13298,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The protection settings. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookPostProtectDocumentAsync (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPostProtectDocumentAsync (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null); /// /// Protect document. @@ -13308,9 +13312,9 @@ public interface ICellsApi : IApiAccessor /// The document name. /// The protection settings. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookPostProtectDocumentAsyncWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPostProtectDocumentAsyncWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null); /// /// Calculate all formulas in workbook. /// @@ -13322,9 +13326,9 @@ public interface ICellsApi : IApiAccessor /// Calculation Options. (optional) /// ignore Error. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookPostWorkbookCalculateFormulaAsync (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPostWorkbookCalculateFormulaAsync (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storageName = null); /// /// Calculate all formulas in workbook. @@ -13337,9 +13341,9 @@ public interface ICellsApi : IApiAccessor /// Calculation Options. (optional) /// ignore Error. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookPostWorkbookCalculateFormulaAsyncWithHttpInfo (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPostWorkbookCalculateFormulaAsyncWithHttpInfo (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storageName = null); /// /// Smart marker processing result. /// @@ -13350,10 +13354,10 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The xml file full path, if empty the data is read from request body. (optional) /// The workbook folder full path. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Path to save result (optional) /// Task of System.IO.Stream - System.Threading.Tasks.Task CellsWorkbookPostWorkbookGetSmartMarkerResultAsync (string name, string xmlFile = null, string folder = null, string storage = null, string outPath = null); + System.Threading.Tasks.Task CellsWorkbookPostWorkbookGetSmartMarkerResultAsync (string name, string xmlFile = null, string folder = null, string storageName = null, string outPath = null); /// /// Smart marker processing result. @@ -13365,10 +13369,10 @@ public interface ICellsApi : IApiAccessor /// The workbook name. /// The xml file full path, if empty the data is read from request body. (optional) /// The workbook folder full path. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Path to save result (optional) /// Task of ApiResponse (System.IO.Stream) - System.Threading.Tasks.Task> CellsWorkbookPostWorkbookGetSmartMarkerResultAsyncWithHttpInfo (string name, string xmlFile = null, string folder = null, string storage = null, string outPath = null); + System.Threading.Tasks.Task> CellsWorkbookPostWorkbookGetSmartMarkerResultAsyncWithHttpInfo (string name, string xmlFile = null, string folder = null, string storageName = null, string outPath = null); /// /// Update Workbook setting /// @@ -13379,9 +13383,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Workbook Setting DTO (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookPostWorkbookSettingsAsync (string name, WorkbookSettings settings = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPostWorkbookSettingsAsync (string name, WorkbookSettings settings = null, string folder = null, string storageName = null); /// /// Update Workbook setting @@ -13393,9 +13397,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Workbook Setting DTO (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookPostWorkbookSettingsAsyncWithHttpInfo (string name, WorkbookSettings settings = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPostWorkbookSettingsAsyncWithHttpInfo (string name, WorkbookSettings settings = null, string folder = null, string storageName = null); /// /// Split workbook. /// @@ -13411,9 +13415,9 @@ public interface ICellsApi : IApiAccessor /// Image vertical resolution. (optional, default to 0) /// The workbook folder. (optional) /// out Folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of SplitResultResponse - System.Threading.Tasks.Task CellsWorkbookPostWorkbookSplitAsync (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPostWorkbookSplitAsync (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storageName = null); /// /// Split workbook. @@ -13430,9 +13434,9 @@ public interface ICellsApi : IApiAccessor /// Image vertical resolution. (optional, default to 0) /// The workbook folder. (optional) /// out Folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (SplitResultResponse) - System.Threading.Tasks.Task> CellsWorkbookPostWorkbookSplitAsyncWithHttpInfo (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPostWorkbookSplitAsyncWithHttpInfo (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storageName = null); /// /// Merge workbooks. /// @@ -13443,9 +13447,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The workbook to merge with. /// Source workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorkbookResponse - System.Threading.Tasks.Task CellsWorkbookPostWorkbooksMergeAsync (string name, string mergeWith, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPostWorkbooksMergeAsync (string name, string mergeWith, string folder = null, string storageName = null); /// /// Merge workbooks. @@ -13457,9 +13461,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The workbook to merge with. /// Source workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorkbookResponse) - System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksMergeAsyncWithHttpInfo (string name, string mergeWith, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksMergeAsyncWithHttpInfo (string name, string mergeWith, string folder = null, string storageName = null); /// /// Replace text. /// @@ -13471,9 +13475,9 @@ public interface ICellsApi : IApiAccessor /// The old value. /// The new value. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorkbookReplaceResponse - System.Threading.Tasks.Task CellsWorkbookPostWorkbooksTextReplaceAsync (string name, string oldValue, string newValue, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPostWorkbooksTextReplaceAsync (string name, string oldValue, string newValue, string folder = null, string storageName = null); /// /// Replace text. @@ -13486,9 +13490,9 @@ public interface ICellsApi : IApiAccessor /// The old value. /// The new value. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorkbookReplaceResponse) - System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksTextReplaceAsyncWithHttpInfo (string name, string oldValue, string newValue, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksTextReplaceAsyncWithHttpInfo (string name, string oldValue, string newValue, string folder = null, string storageName = null); /// /// Search text. /// @@ -13499,9 +13503,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Text sample. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TextItemsResponse - System.Threading.Tasks.Task CellsWorkbookPostWorkbooksTextSearchAsync (string name, string text, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPostWorkbooksTextSearchAsync (string name, string text, string folder = null, string storageName = null); /// /// Search text. @@ -13513,9 +13517,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Text sample. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TextItemsResponse) - System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksTextSearchAsyncWithHttpInfo (string name, string text, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksTextSearchAsyncWithHttpInfo (string name, string text, string folder = null, string storageName = null); /// /// Convert workbook from request content to some format. /// @@ -13553,9 +13557,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Modification password. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookPutDocumentProtectFromChangesAsync (string name, PasswordRequest password = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPutDocumentProtectFromChangesAsync (string name, PasswordRequest password = null, string folder = null, string storageName = null); /// /// Protect document from changes. @@ -13567,9 +13571,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Modification password. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookPutDocumentProtectFromChangesAsyncWithHttpInfo (string name, PasswordRequest password = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPutDocumentProtectFromChangesAsyncWithHttpInfo (string name, PasswordRequest password = null, string folder = null, string storageName = null); /// /// Set workbook background image. /// @@ -13580,9 +13584,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookPutWorkbookBackgroundAsync (string name, byte[] png, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPutWorkbookBackgroundAsync (string name, byte[] png, string folder = null, string storageName = null); /// /// Set workbook background image. @@ -13594,9 +13598,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookPutWorkbookBackgroundAsyncWithHttpInfo (string name, byte[] png, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPutWorkbookBackgroundAsyncWithHttpInfo (string name, byte[] png, string folder = null, string storageName = null); /// /// Create new workbook using deferent methods. /// @@ -13609,9 +13613,9 @@ public interface ICellsApi : IApiAccessor /// Smart marker data file, if the data not provided the request content is checked for the data. (optional) /// write over file. (optional) /// The new document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorkbookResponse - System.Threading.Tasks.Task CellsWorkbookPutWorkbookCreateAsync (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorkbookPutWorkbookCreateAsync (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storageName = null); /// /// Create new workbook using deferent methods. @@ -13625,9 +13629,9 @@ public interface ICellsApi : IApiAccessor /// Smart marker data file, if the data not provided the request content is checked for the data. (optional) /// write over file. (optional) /// The new document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorkbookResponse) - System.Threading.Tasks.Task> CellsWorkbookPutWorkbookCreateAsyncWithHttpInfo (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorkbookPutWorkbookCreateAsyncWithHttpInfo (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storageName = null); /// /// Set workbook background image. /// @@ -13637,10 +13641,10 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// The text water marker request. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorkbookPutWorkbookWaterMarkerAsync (string name, string folder = null, string storage = null, TextWaterMarkerRequest textWaterMarkerRequest = null); + System.Threading.Tasks.Task CellsWorkbookPutWorkbookWaterMarkerAsync (string name, string folder = null, string storageName = null, TextWaterMarkerRequest textWaterMarkerRequest = null); /// /// Set workbook background image. @@ -13651,10 +13655,10 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// The text water marker request. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorkbookPutWorkbookWaterMarkerAsyncWithHttpInfo (string name, string folder = null, string storage = null, TextWaterMarkerRequest textWaterMarkerRequest = null); + System.Threading.Tasks.Task> CellsWorkbookPutWorkbookWaterMarkerAsyncWithHttpInfo (string name, string folder = null, string storageName = null, TextWaterMarkerRequest textWaterMarkerRequest = null); /// /// Delete worksheet validation by index. /// @@ -13666,9 +13670,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ValidationResponse - System.Threading.Tasks.Task CellsWorksheetValidationsDeleteWorksheetValidationAsync (string name, string sheetName, int? validationIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetValidationsDeleteWorksheetValidationAsync (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null); /// /// Delete worksheet validation by index. @@ -13681,9 +13685,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ValidationResponse) - System.Threading.Tasks.Task> CellsWorksheetValidationsDeleteWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetValidationsDeleteWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null); /// /// Clear all validation in worksheet. /// @@ -13694,9 +13698,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetValidationsDeleteWorksheetValidationsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetValidationsDeleteWorksheetValidationsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Clear all validation in worksheet. @@ -13708,9 +13712,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetValidationsDeleteWorksheetValidationsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetValidationsDeleteWorksheetValidationsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet validation by index. /// @@ -13722,9 +13726,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ValidationResponse - System.Threading.Tasks.Task CellsWorksheetValidationsGetWorksheetValidationAsync (string name, string sheetName, int? validationIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetValidationsGetWorksheetValidationAsync (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null); /// /// Get worksheet validation by index. @@ -13737,9 +13741,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ValidationResponse) - System.Threading.Tasks.Task> CellsWorksheetValidationsGetWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetValidationsGetWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null); /// /// Get worksheet validations. /// @@ -13750,9 +13754,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ValidationsResponse - System.Threading.Tasks.Task CellsWorksheetValidationsGetWorksheetValidationsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetValidationsGetWorksheetValidationsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet validations. @@ -13764,9 +13768,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// Worksheet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ValidationsResponse) - System.Threading.Tasks.Task> CellsWorksheetValidationsGetWorksheetValidationsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetValidationsGetWorksheetValidationsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Update worksheet validation by index. /// @@ -13779,9 +13783,9 @@ public interface ICellsApi : IApiAccessor /// The validation index. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ValidationResponse - System.Threading.Tasks.Task CellsWorksheetValidationsPostWorksheetValidationAsync (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetValidationsPostWorksheetValidationAsync (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storageName = null); /// /// Update worksheet validation by index. @@ -13795,9 +13799,9 @@ public interface ICellsApi : IApiAccessor /// The validation index. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ValidationResponse) - System.Threading.Tasks.Task> CellsWorksheetValidationsPostWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetValidationsPostWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storageName = null); /// /// Add worksheet validation at index. /// @@ -13810,9 +13814,9 @@ public interface ICellsApi : IApiAccessor /// Specified cells area (optional) /// validation (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ValidationResponse - System.Threading.Tasks.Task CellsWorksheetValidationsPutWorksheetValidationAsync (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetValidationsPutWorksheetValidationAsync (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storageName = null); /// /// Add worksheet validation at index. @@ -13826,9 +13830,9 @@ public interface ICellsApi : IApiAccessor /// Specified cells area (optional) /// validation (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ValidationResponse) - System.Threading.Tasks.Task> CellsWorksheetValidationsPutWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetValidationsPutWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storageName = null); /// /// Unprotect worksheet. /// @@ -13840,9 +13844,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with protection settings. Only password is used here. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetResponse - System.Threading.Tasks.Task CellsWorksheetsDeleteUnprotectWorksheetAsync (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsDeleteUnprotectWorksheetAsync (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null); /// /// Unprotect worksheet. @@ -13855,9 +13859,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with protection settings. Only password is used here. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetResponse) - System.Threading.Tasks.Task> CellsWorksheetsDeleteUnprotectWorksheetAsyncWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsDeleteUnprotectWorksheetAsyncWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null); /// /// Delete worksheet. /// @@ -13868,9 +13872,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetsResponse - System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet. @@ -13882,9 +13886,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetsResponse) - System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Set worksheet background image. /// @@ -13895,9 +13899,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetBackgroundAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetBackgroundAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Set worksheet background image. @@ -13909,9 +13913,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetBackgroundAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetBackgroundAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete worksheet's cell comment. /// @@ -13923,9 +13927,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetCommentAsync (string name, string sheetName, string cellName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetCommentAsync (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Delete worksheet's cell comment. @@ -13938,9 +13942,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Delete all comments for worksheet. /// @@ -13951,9 +13955,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetCommentsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetCommentsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Delete all comments for worksheet. @@ -13965,9 +13969,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetCommentsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetCommentsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Unfreeze panes /// @@ -13982,9 +13986,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetFreezePanesAsync (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetFreezePanesAsync (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null); /// /// Unfreeze panes @@ -14000,9 +14004,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetFreezePanesAsyncWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetFreezePanesAsyncWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null); /// /// Read worksheets ranges info. /// @@ -14012,9 +14016,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RangesResponse - System.Threading.Tasks.Task CellsWorksheetsGetNamedRangesAsync (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsGetNamedRangesAsync (string name, string folder = null, string storageName = null); /// /// Read worksheets ranges info. @@ -14025,9 +14029,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RangesResponse) - System.Threading.Tasks.Task> CellsWorksheetsGetNamedRangesAsyncWithHttpInfo (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsGetNamedRangesAsyncWithHttpInfo (string name, string folder = null, string storageName = null); /// /// Read worksheet info or export. /// @@ -14043,9 +14047,9 @@ public interface ICellsApi : IApiAccessor /// Exported area. (optional) /// Exported page index. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of System.IO.Stream - System.Threading.Tasks.Task CellsWorksheetsGetWorksheetAsync (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsGetWorksheetAsync (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storageName = null); /// /// Read worksheet info or export. @@ -14062,9 +14066,9 @@ public interface ICellsApi : IApiAccessor /// Exported area. (optional) /// Exported page index. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (System.IO.Stream) - System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetAsyncWithHttpInfo (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetAsyncWithHttpInfo (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storageName = null); /// /// Calculate formula value. /// @@ -14076,9 +14080,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The formula. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of SingleValueResponse - System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCalculateFormulaAsync (string name, string sheetName, string formula, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCalculateFormulaAsync (string name, string sheetName, string formula, string folder = null, string storageName = null); /// /// Calculate formula value. @@ -14091,9 +14095,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// The formula. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (SingleValueResponse) - System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCalculateFormulaAsyncWithHttpInfo (string name, string sheetName, string formula, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCalculateFormulaAsyncWithHttpInfo (string name, string sheetName, string formula, string folder = null, string storageName = null); /// /// Get worksheet comment by cell name. /// @@ -14105,9 +14109,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CommentResponse - System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCommentAsync (string name, string sheetName, string cellName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCommentAsync (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Get worksheet comment by cell name. @@ -14120,9 +14124,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CommentResponse) - System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null); /// /// Get worksheet comments. /// @@ -14133,9 +14137,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CommentsResponse - System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCommentsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCommentsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet comments. @@ -14147,9 +14151,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CommentsResponse) - System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCommentsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCommentsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet merged cell by its index. /// @@ -14161,9 +14165,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// Merged cell index. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of MergedCellResponse - System.Threading.Tasks.Task CellsWorksheetsGetWorksheetMergedCellAsync (string name, string sheetName, int? mergedCellIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsGetWorksheetMergedCellAsync (string name, string sheetName, int? mergedCellIndex, string folder = null, string storageName = null); /// /// Get worksheet merged cell by its index. @@ -14176,9 +14180,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// Merged cell index. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (MergedCellResponse) - System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetMergedCellAsyncWithHttpInfo (string name, string sheetName, int? mergedCellIndex, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetMergedCellAsyncWithHttpInfo (string name, string sheetName, int? mergedCellIndex, string folder = null, string storageName = null); /// /// Get worksheet merged cells. /// @@ -14189,9 +14193,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The workseet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of MergedCellsResponse - System.Threading.Tasks.Task CellsWorksheetsGetWorksheetMergedCellsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsGetWorksheetMergedCellsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet merged cells. @@ -14203,9 +14207,9 @@ public interface ICellsApi : IApiAccessor /// Document name. /// The workseet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (MergedCellsResponse) - System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetMergedCellsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetMergedCellsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet text items. /// @@ -14216,9 +14220,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The workbook's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TextItemsResponse - System.Threading.Tasks.Task CellsWorksheetsGetWorksheetTextItemsAsync (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsGetWorksheetTextItemsAsync (string name, string sheetName, string folder = null, string storageName = null); /// /// Get worksheet text items. @@ -14230,9 +14234,9 @@ public interface ICellsApi : IApiAccessor /// Workbook name. /// The worksheet name. /// The workbook's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TextItemsResponse) - System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetTextItemsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetTextItemsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null); /// /// Read worksheets info. /// @@ -14242,9 +14246,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetsResponse - System.Threading.Tasks.Task CellsWorksheetsGetWorksheetsAsync (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsGetWorksheetsAsync (string name, string folder = null, string storageName = null); /// /// Read worksheets info. @@ -14255,9 +14259,9 @@ public interface ICellsApi : IApiAccessor /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetsResponse) - System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetsAsyncWithHttpInfo (string name, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetsAsyncWithHttpInfo (string name, string folder = null, string storageName = null); /// /// /// @@ -14273,9 +14277,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetColumnsAsync (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetColumnsAsync (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storageName = null); /// /// @@ -14292,9 +14296,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storageName = null); /// /// /// @@ -14309,9 +14313,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetRowAsync (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetRowAsync (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storageName = null); /// /// @@ -14327,9 +14331,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storageName = null); /// /// Autofit worksheet rows. /// @@ -14344,9 +14348,9 @@ public interface ICellsApi : IApiAccessor /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetRowsAsync (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetRowsAsync (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null); /// /// Autofit worksheet rows. @@ -14362,9 +14366,9 @@ public interface ICellsApi : IApiAccessor /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null); /// /// /// @@ -14379,9 +14383,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsPostCopyWorksheetAsync (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostCopyWorksheetAsync (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storageName = null); /// /// @@ -14397,9 +14401,9 @@ public interface ICellsApi : IApiAccessor /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostCopyWorksheetAsyncWithHttpInfo (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostCopyWorksheetAsyncWithHttpInfo (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storageName = null); /// /// Move worksheet. /// @@ -14411,9 +14415,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with moving parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetsResponse - System.Threading.Tasks.Task CellsWorksheetsPostMoveWorksheetAsync (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostMoveWorksheetAsync (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storageName = null); /// /// Move worksheet. @@ -14426,9 +14430,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with moving parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetsResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostMoveWorksheetAsyncWithHttpInfo (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostMoveWorksheetAsyncWithHttpInfo (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storageName = null); /// /// Rename worksheet /// @@ -14440,9 +14444,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsPostRenameWorksheetAsync (string name, string sheetName, string newname, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostRenameWorksheetAsync (string name, string sheetName, string newname, string folder = null, string storageName = null); /// /// Rename worksheet @@ -14455,9 +14459,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostRenameWorksheetAsyncWithHttpInfo (string name, string sheetName, string newname, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostRenameWorksheetAsyncWithHttpInfo (string name, string sheetName, string newname, string folder = null, string storageName = null); /// /// Update worksheet property /// @@ -14469,9 +14473,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetResponse - System.Threading.Tasks.Task CellsWorksheetsPostUpdateWorksheetPropertyAsync (string name, string sheetName, Worksheet sheet = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostUpdateWorksheetPropertyAsync (string name, string sheetName, Worksheet sheet = null, string folder = null, string storageName = null); /// /// Update worksheet property @@ -14484,9 +14488,9 @@ public interface ICellsApi : IApiAccessor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostUpdateWorksheetPropertyAsyncWithHttpInfo (string name, string sheetName, Worksheet sheet = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostUpdateWorksheetPropertyAsyncWithHttpInfo (string name, string sheetName, Worksheet sheet = null, string folder = null, string storageName = null); /// /// /// @@ -14498,9 +14502,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsPostUpdateWorksheetZoomAsync (string name, string sheetName, int? value, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostUpdateWorksheetZoomAsync (string name, string sheetName, int? value, string folder = null, string storageName = null); /// /// @@ -14513,9 +14517,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostUpdateWorksheetZoomAsyncWithHttpInfo (string name, string sheetName, int? value, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostUpdateWorksheetZoomAsyncWithHttpInfo (string name, string sheetName, int? value, string folder = null, string storageName = null); /// /// Update worksheet's cell comment. /// @@ -14528,9 +14532,9 @@ public interface ICellsApi : IApiAccessor /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsPostWorksheetCommentAsync (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostWorksheetCommentAsync (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null); /// /// Update worksheet's cell comment. @@ -14544,9 +14548,9 @@ public interface ICellsApi : IApiAccessor /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null); /// /// Sort worksheet range. /// @@ -14559,9 +14563,9 @@ public interface ICellsApi : IApiAccessor /// The range to sort. /// with sorting settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsPostWorksheetRangeSortAsync (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostWorksheetRangeSortAsync (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storageName = null); /// /// Sort worksheet range. @@ -14575,9 +14579,9 @@ public interface ICellsApi : IApiAccessor /// The range to sort. /// with sorting settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetRangeSortAsyncWithHttpInfo (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetRangeSortAsyncWithHttpInfo (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storageName = null); /// /// Search text. /// @@ -14589,9 +14593,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Text to search. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TextItemsResponse - System.Threading.Tasks.Task CellsWorksheetsPostWorksheetTextSearchAsync (string name, string sheetName, string text, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostWorksheetTextSearchAsync (string name, string sheetName, string text, string folder = null, string storageName = null); /// /// Search text. @@ -14604,9 +14608,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// Text to search. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TextItemsResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetTextSearchAsyncWithHttpInfo (string name, string sheetName, string text, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetTextSearchAsyncWithHttpInfo (string name, string sheetName, string text, string folder = null, string storageName = null); /// /// Replace text. /// @@ -14619,9 +14623,9 @@ public interface ICellsApi : IApiAccessor /// The old text to replace. /// The new text to replace by. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetReplaceResponse - System.Threading.Tasks.Task CellsWorksheetsPostWorsheetTextReplaceAsync (string name, string sheetName, string oldValue, string newValue, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPostWorsheetTextReplaceAsync (string name, string sheetName, string oldValue, string newValue, string folder = null, string storageName = null); /// /// Replace text. @@ -14635,9 +14639,9 @@ public interface ICellsApi : IApiAccessor /// The old text to replace. /// The new text to replace by. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetReplaceResponse) - System.Threading.Tasks.Task> CellsWorksheetsPostWorsheetTextReplaceAsyncWithHttpInfo (string name, string sheetName, string oldValue, string newValue, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPostWorsheetTextReplaceAsyncWithHttpInfo (string name, string sheetName, string oldValue, string newValue, string folder = null, string storageName = null); /// /// Add new worksheet. /// @@ -14650,9 +14654,9 @@ public interface ICellsApi : IApiAccessor /// The new sheet position. (optional) /// The new sheet type. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetsResponse - System.Threading.Tasks.Task CellsWorksheetsPutAddNewWorksheetAsync (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPutAddNewWorksheetAsync (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storageName = null); /// /// Add new worksheet. @@ -14666,9 +14670,9 @@ public interface ICellsApi : IApiAccessor /// The new sheet position. (optional) /// The new sheet type. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetsResponse) - System.Threading.Tasks.Task> CellsWorksheetsPutAddNewWorksheetAsyncWithHttpInfo (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPutAddNewWorksheetAsyncWithHttpInfo (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storageName = null); /// /// Change worksheet visibility. /// @@ -14680,9 +14684,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// New worksheet visibility value. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetResponse - System.Threading.Tasks.Task CellsWorksheetsPutChangeVisibilityWorksheetAsync (string name, string sheetName, bool? isVisible, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPutChangeVisibilityWorksheetAsync (string name, string sheetName, bool? isVisible, string folder = null, string storageName = null); /// /// Change worksheet visibility. @@ -14695,9 +14699,9 @@ public interface ICellsApi : IApiAccessor /// Worksheet name. /// New worksheet visibility value. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetResponse) - System.Threading.Tasks.Task> CellsWorksheetsPutChangeVisibilityWorksheetAsyncWithHttpInfo (string name, string sheetName, bool? isVisible, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPutChangeVisibilityWorksheetAsyncWithHttpInfo (string name, string sheetName, bool? isVisible, string folder = null, string storageName = null); /// /// Protect worksheet. /// @@ -14709,9 +14713,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with protection settings. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetResponse - System.Threading.Tasks.Task CellsWorksheetsPutProtectWorksheetAsync (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPutProtectWorksheetAsync (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null); /// /// Protect worksheet. @@ -14724,9 +14728,9 @@ public interface ICellsApi : IApiAccessor /// The worksheet name. /// with protection settings. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetResponse) - System.Threading.Tasks.Task> CellsWorksheetsPutProtectWorksheetAsyncWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPutProtectWorksheetAsyncWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null); /// /// Set worksheet background image. /// @@ -14738,9 +14742,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsPutWorksheetBackgroundAsync (string name, string sheetName, byte[] png, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPutWorksheetBackgroundAsync (string name, string sheetName, byte[] png, string folder = null, string storageName = null); /// /// Set worksheet background image. @@ -14753,9 +14757,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetBackgroundAsyncWithHttpInfo (string name, string sheetName, byte[] png, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetBackgroundAsyncWithHttpInfo (string name, string sheetName, byte[] png, string folder = null, string storageName = null); /// /// Add worksheet's cell comment. /// @@ -14768,9 +14772,9 @@ public interface ICellsApi : IApiAccessor /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CommentResponse - System.Threading.Tasks.Task CellsWorksheetsPutWorksheetCommentAsync (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPutWorksheetCommentAsync (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null); /// /// Add worksheet's cell comment. @@ -14784,9 +14788,9 @@ public interface ICellsApi : IApiAccessor /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CommentResponse) - System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null); /// /// Set freeze panes /// @@ -14801,9 +14805,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - System.Threading.Tasks.Task CellsWorksheetsPutWorksheetFreezePanesAsync (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task CellsWorksheetsPutWorksheetFreezePanesAsync (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null); /// /// Set freeze panes @@ -14819,9 +14823,9 @@ public interface ICellsApi : IApiAccessor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetFreezePanesAsyncWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null); + System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetFreezePanesAsyncWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null); /// /// Copy file /// @@ -15352,12 +15356,12 @@ public void AddDefaultHeader(string key, string value) /// (optional, default to 0) /// (optional, default to 0) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterDeleteWorksheetDateFilter (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterDeleteWorksheetDateFilter (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterDeleteWorksheetDateFilterWithHttpInfo(name, sheetName, fieldIndex, dateTimeGroupingType, year, month, day, hour, minute, second, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterDeleteWorksheetDateFilterWithHttpInfo(name, sheetName, fieldIndex, dateTimeGroupingType, year, month, day, hour, minute, second, folder, storageName); return localVarResponse.Data; } @@ -15376,9 +15380,9 @@ public CellsCloudResponse CellsAutoFilterDeleteWorksheetDateFilter (string name, /// (optional, default to 0) /// (optional, default to 0) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterDeleteWorksheetDateFilterWithHttpInfo (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterDeleteWorksheetDateFilterWithHttpInfo (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -15426,7 +15430,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterDeleteWorksheetDateFilte if (minute != null) localVarQueryParams.Add("minute", Configuration.ApiClient.ParameterToString(minute)); // query parameter if (second != null) localVarQueryParams.Add("second", Configuration.ApiClient.ParameterToString(second)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -15462,11 +15466,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterDeleteWorksheetDateFilte /// (optional, default to 0) /// (optional, default to 0) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterDeleteWorksheetDateFilterAsync (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterDeleteWorksheetDateFilterAsync (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterDeleteWorksheetDateFilterAsyncWithHttpInfo(name, sheetName, fieldIndex, dateTimeGroupingType, year, month, day, hour, minute, second, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterDeleteWorksheetDateFilterAsyncWithHttpInfo(name, sheetName, fieldIndex, dateTimeGroupingType, year, month, day, hour, minute, second, folder, storageName); return localVarResponse.Data; } @@ -15486,9 +15490,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterDele /// (optional, default to 0) /// (optional, default to 0) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterDeleteWorksheetDateFilterAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterDeleteWorksheetDateFilterAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -15536,7 +15540,7 @@ public async System.Threading.Tasks.Task> CellsA if (minute != null) localVarQueryParams.Add("minute", Configuration.ApiClient.ParameterToString(minute)); // query parameter if (second != null) localVarQueryParams.Add("second", Configuration.ApiClient.ParameterToString(second)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -15566,12 +15570,12 @@ public async System.Threading.Tasks.Task> CellsA /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterDeleteWorksheetFilter (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterDeleteWorksheetFilter (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterDeleteWorksheetFilterWithHttpInfo(name, sheetName, fieldIndex, criteria, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterDeleteWorksheetFilterWithHttpInfo(name, sheetName, fieldIndex, criteria, folder, storageName); return localVarResponse.Data; } @@ -15584,9 +15588,9 @@ public CellsCloudResponse CellsAutoFilterDeleteWorksheetFilter (string name, str /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterDeleteWorksheetFilterWithHttpInfo (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterDeleteWorksheetFilterWithHttpInfo (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -15625,7 +15629,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterDeleteWorksheetFilterWit if (fieldIndex != null) localVarQueryParams.Add("fieldIndex", Configuration.ApiClient.ParameterToString(fieldIndex)); // query parameter if (criteria != null) localVarQueryParams.Add("criteria", Configuration.ApiClient.ParameterToString(criteria)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -15655,11 +15659,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterDeleteWorksheetFilterWit /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterDeleteWorksheetFilterAsync (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterDeleteWorksheetFilterAsync (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterDeleteWorksheetFilterAsyncWithHttpInfo(name, sheetName, fieldIndex, criteria, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterDeleteWorksheetFilterAsyncWithHttpInfo(name, sheetName, fieldIndex, criteria, folder, storageName); return localVarResponse.Data; } @@ -15673,9 +15677,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterDele /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterDeleteWorksheetFilterAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterDeleteWorksheetFilterAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string criteria = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -15714,7 +15718,7 @@ public async System.Threading.Tasks.Task> CellsA if (fieldIndex != null) localVarQueryParams.Add("fieldIndex", Configuration.ApiClient.ParameterToString(fieldIndex)); // query parameter if (criteria != null) localVarQueryParams.Add("criteria", Configuration.ApiClient.ParameterToString(criteria)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -15742,12 +15746,12 @@ public async System.Threading.Tasks.Task> CellsA /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// AutoFilterResponse - public AutoFilterResponse CellsAutoFilterGetWorksheetAutoFilter (string name, string sheetName, string folder = null, string storage = null) + public AutoFilterResponse CellsAutoFilterGetWorksheetAutoFilter (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterGetWorksheetAutoFilterWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterGetWorksheetAutoFilterWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -15758,9 +15762,9 @@ public AutoFilterResponse CellsAutoFilterGetWorksheetAutoFilter (string name, st /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of AutoFilterResponse - public ApiResponse< AutoFilterResponse > CellsAutoFilterGetWorksheetAutoFilterWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< AutoFilterResponse > CellsAutoFilterGetWorksheetAutoFilterWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -15794,7 +15798,7 @@ public ApiResponse< AutoFilterResponse > CellsAutoFilterGetWorksheetAutoFilterWi if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -15822,11 +15826,11 @@ public ApiResponse< AutoFilterResponse > CellsAutoFilterGetWorksheetAutoFilterWi /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of AutoFilterResponse - public async System.Threading.Tasks.Task CellsAutoFilterGetWorksheetAutoFilterAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterGetWorksheetAutoFilterAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterGetWorksheetAutoFilterAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterGetWorksheetAutoFilterAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -15838,9 +15842,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterGetW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (AutoFilterResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterGetWorksheetAutoFilterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterGetWorksheetAutoFilterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -15874,7 +15878,7 @@ public async System.Threading.Tasks.Task> CellsA if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -15902,12 +15906,12 @@ public async System.Threading.Tasks.Task> CellsA /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterPostWorksheetAutoFilterRefresh (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterPostWorksheetAutoFilterRefresh (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterPostWorksheetAutoFilterRefreshWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterPostWorksheetAutoFilterRefreshWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -15918,9 +15922,9 @@ public CellsCloudResponse CellsAutoFilterPostWorksheetAutoFilterRefresh (string /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetAutoFilterRefreshWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetAutoFilterRefreshWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -15954,7 +15958,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetAutoFilterR if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -15982,11 +15986,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetAutoFilterR /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterPostWorksheetAutoFilterRefreshAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterPostWorksheetAutoFilterRefreshAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterPostWorksheetAutoFilterRefreshAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterPostWorksheetAutoFilterRefreshAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -15998,9 +16002,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterPost /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetAutoFilterRefreshAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetAutoFilterRefreshAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -16034,7 +16038,7 @@ public async System.Threading.Tasks.Task> CellsA if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -16063,12 +16067,12 @@ public async System.Threading.Tasks.Task> CellsA /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterPostWorksheetMatchBlanks (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterPostWorksheetMatchBlanks (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterPostWorksheetMatchBlanksWithHttpInfo(name, sheetName, fieldIndex, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterPostWorksheetMatchBlanksWithHttpInfo(name, sheetName, fieldIndex, folder, storageName); return localVarResponse.Data; } @@ -16080,9 +16084,9 @@ public CellsCloudResponse CellsAutoFilterPostWorksheetMatchBlanks (string name, /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetMatchBlanksWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetMatchBlanksWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -16120,7 +16124,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetMatchBlanks if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (fieldIndex != null) localVarQueryParams.Add("fieldIndex", Configuration.ApiClient.ParameterToString(fieldIndex)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -16149,11 +16153,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetMatchBlanks /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterPostWorksheetMatchBlanksAsync (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterPostWorksheetMatchBlanksAsync (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterPostWorksheetMatchBlanksAsyncWithHttpInfo(name, sheetName, fieldIndex, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterPostWorksheetMatchBlanksAsyncWithHttpInfo(name, sheetName, fieldIndex, folder, storageName); return localVarResponse.Data; } @@ -16166,9 +16170,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterPost /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetMatchBlanksAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetMatchBlanksAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -16206,7 +16210,7 @@ public async System.Threading.Tasks.Task> CellsA if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (fieldIndex != null) localVarQueryParams.Add("fieldIndex", Configuration.ApiClient.ParameterToString(fieldIndex)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -16235,12 +16239,12 @@ public async System.Threading.Tasks.Task> CellsA /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterPostWorksheetMatchNonBlanks (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterPostWorksheetMatchNonBlanks (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterPostWorksheetMatchNonBlanksWithHttpInfo(name, sheetName, fieldIndex, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterPostWorksheetMatchNonBlanksWithHttpInfo(name, sheetName, fieldIndex, folder, storageName); return localVarResponse.Data; } @@ -16252,9 +16256,9 @@ public CellsCloudResponse CellsAutoFilterPostWorksheetMatchNonBlanks (string nam /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetMatchNonBlanksWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetMatchNonBlanksWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -16292,7 +16296,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetMatchNonBla if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (fieldIndex != null) localVarQueryParams.Add("fieldIndex", Configuration.ApiClient.ParameterToString(fieldIndex)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -16321,11 +16325,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPostWorksheetMatchNonBla /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterPostWorksheetMatchNonBlanksAsync (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterPostWorksheetMatchNonBlanksAsync (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterPostWorksheetMatchNonBlanksAsyncWithHttpInfo(name, sheetName, fieldIndex, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterPostWorksheetMatchNonBlanksAsyncWithHttpInfo(name, sheetName, fieldIndex, folder, storageName); return localVarResponse.Data; } @@ -16338,9 +16342,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterPost /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetMatchNonBlanksAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterPostWorksheetMatchNonBlanksAsyncWithHttpInfo (string name, string sheetName, int? fieldIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -16378,7 +16382,7 @@ public async System.Threading.Tasks.Task> CellsA if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (fieldIndex != null) localVarQueryParams.Add("fieldIndex", Configuration.ApiClient.ParameterToString(fieldIndex)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -16411,12 +16415,12 @@ public async System.Threading.Tasks.Task> CellsA /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterPutWorksheetColorFilter (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterPutWorksheetColorFilter (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterPutWorksheetColorFilterWithHttpInfo(name, sheetName, range, fieldIndex, colorFilter, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterPutWorksheetColorFilterWithHttpInfo(name, sheetName, range, fieldIndex, colorFilter, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -16432,9 +16436,9 @@ public CellsCloudResponse CellsAutoFilterPutWorksheetColorFilter (string name, s /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetColorFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetColorFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -16478,7 +16482,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetColorFilterW if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (colorFilter != null && colorFilter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(colorFilter); // http body (model) parameter @@ -16486,10 +16490,6 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetColorFilterW else { localVarPostBody = colorFilter; // byte array - if ( "CellsAutoFilterPutWorksheetColorFilter" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -16523,11 +16523,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetColorFilterW /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetColorFilterAsync (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetColorFilterAsync (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetColorFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, colorFilter, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetColorFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, colorFilter, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -16544,9 +16544,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterPutW /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetColorFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetColorFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, ColorFilterRequest colorFilter = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -16590,7 +16590,7 @@ public async System.Threading.Tasks.Task> CellsA if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (colorFilter != null && colorFilter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(colorFilter); // http body (model) parameter @@ -16635,12 +16635,12 @@ public async System.Threading.Tasks.Task> CellsA /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterPutWorksheetCustomFilter (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterPutWorksheetCustomFilter (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterPutWorksheetCustomFilterWithHttpInfo(name, sheetName, range, fieldIndex, operatorType1, criteria1, isAnd, operatorType2, criteria2, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterPutWorksheetCustomFilterWithHttpInfo(name, sheetName, range, fieldIndex, operatorType1, criteria1, isAnd, operatorType2, criteria2, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -16660,9 +16660,9 @@ public CellsCloudResponse CellsAutoFilterPutWorksheetCustomFilter (string name, /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetCustomFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetCustomFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -16717,7 +16717,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetCustomFilter if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -16754,11 +16754,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetCustomFilter /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetCustomFilterAsync (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetCustomFilterAsync (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetCustomFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, operatorType1, criteria1, isAnd, operatorType2, criteria2, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetCustomFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, operatorType1, criteria1, isAnd, operatorType2, criteria2, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -16779,9 +16779,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterPutW /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetCustomFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetCustomFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string operatorType1, string criteria1, bool? isAnd = null, string operatorType2 = null, string criteria2 = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -16836,7 +16836,7 @@ public async System.Threading.Tasks.Task> CellsA if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -16875,12 +16875,12 @@ public async System.Threading.Tasks.Task> CellsA /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterPutWorksheetDateFilter (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterPutWorksheetDateFilter (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterPutWorksheetDateFilterWithHttpInfo(name, sheetName, range, fieldIndex, dateTimeGroupingType, year, month, day, hour, minute, second, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterPutWorksheetDateFilterWithHttpInfo(name, sheetName, range, fieldIndex, dateTimeGroupingType, year, month, day, hour, minute, second, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -16902,9 +16902,9 @@ public CellsCloudResponse CellsAutoFilterPutWorksheetDateFilter (string name, st /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetDateFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetDateFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -16958,7 +16958,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetDateFilterWi if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -16997,11 +16997,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetDateFilterWi /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetDateFilterAsync (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetDateFilterAsync (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetDateFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, dateTimeGroupingType, year, month, day, hour, minute, second, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetDateFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, dateTimeGroupingType, year, month, day, hour, minute, second, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -17024,9 +17024,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterPutW /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetDateFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetDateFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dateTimeGroupingType, int? year = null, int? month = null, int? day = null, int? hour = null, int? minute = null, int? second = null, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -17080,7 +17080,7 @@ public async System.Threading.Tasks.Task> CellsA if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -17113,12 +17113,12 @@ public async System.Threading.Tasks.Task> CellsA /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterPutWorksheetDynamicFilter (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterPutWorksheetDynamicFilter (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterPutWorksheetDynamicFilterWithHttpInfo(name, sheetName, range, fieldIndex, dynamicFilterType, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterPutWorksheetDynamicFilterWithHttpInfo(name, sheetName, range, fieldIndex, dynamicFilterType, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -17134,9 +17134,9 @@ public CellsCloudResponse CellsAutoFilterPutWorksheetDynamicFilter (string name, /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetDynamicFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetDynamicFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -17184,7 +17184,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetDynamicFilte if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -17217,11 +17217,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetDynamicFilte /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetDynamicFilterAsync (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetDynamicFilterAsync (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetDynamicFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, dynamicFilterType, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetDynamicFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, dynamicFilterType, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -17238,9 +17238,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterPutW /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetDynamicFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetDynamicFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string dynamicFilterType, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -17288,7 +17288,7 @@ public async System.Threading.Tasks.Task> CellsA if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -17321,12 +17321,12 @@ public async System.Threading.Tasks.Task> CellsA /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterPutWorksheetFilter (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterPutWorksheetFilter (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterPutWorksheetFilterWithHttpInfo(name, sheetName, range, fieldIndex, criteria, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterPutWorksheetFilterWithHttpInfo(name, sheetName, range, fieldIndex, criteria, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -17342,9 +17342,9 @@ public CellsCloudResponse CellsAutoFilterPutWorksheetFilter (string name, string /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -17392,7 +17392,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetFilterWithHt if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -17425,11 +17425,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetFilterWithHt /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetFilterAsync (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetFilterAsync (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, criteria, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, criteria, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -17446,9 +17446,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterPutW /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string criteria, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -17496,7 +17496,7 @@ public async System.Threading.Tasks.Task> CellsA if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -17531,12 +17531,12 @@ public async System.Threading.Tasks.Task> CellsA /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterPutWorksheetFilterTop10 (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterPutWorksheetFilterTop10 (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterPutWorksheetFilterTop10WithHttpInfo(name, sheetName, range, fieldIndex, isTop, isPercent, itemCount, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterPutWorksheetFilterTop10WithHttpInfo(name, sheetName, range, fieldIndex, isTop, isPercent, itemCount, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -17554,9 +17554,9 @@ public CellsCloudResponse CellsAutoFilterPutWorksheetFilterTop10 (string name, s /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetFilterTop10WithHttpInfo (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetFilterTop10WithHttpInfo (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -17612,7 +17612,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetFilterTop10W if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -17647,11 +17647,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetFilterTop10W /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetFilterTop10Async (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetFilterTop10Async (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetFilterTop10AsyncWithHttpInfo(name, sheetName, range, fieldIndex, isTop, isPercent, itemCount, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetFilterTop10AsyncWithHttpInfo(name, sheetName, range, fieldIndex, isTop, isPercent, itemCount, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -17670,9 +17670,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterPutW /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetFilterTop10AsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetFilterTop10AsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, bool? isTop, bool? isPercent, int? itemCount, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -17728,7 +17728,7 @@ public async System.Threading.Tasks.Task> CellsA if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -17762,12 +17762,12 @@ public async System.Threading.Tasks.Task> CellsA /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsAutoFilterPutWorksheetIconFilter (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public CellsCloudResponse CellsAutoFilterPutWorksheetIconFilter (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoFilterPutWorksheetIconFilterWithHttpInfo(name, sheetName, range, fieldIndex, iconSetType, iconId, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = CellsAutoFilterPutWorksheetIconFilterWithHttpInfo(name, sheetName, range, fieldIndex, iconSetType, iconId, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -17784,9 +17784,9 @@ public CellsCloudResponse CellsAutoFilterPutWorksheetIconFilter (string name, st /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetIconFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetIconFilterWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -17838,7 +17838,7 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetIconFilterWi if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -17872,11 +17872,11 @@ public ApiResponse< CellsCloudResponse > CellsAutoFilterPutWorksheetIconFilterWi /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetIconFilterAsync (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoFilterPutWorksheetIconFilterAsync (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetIconFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, iconSetType, iconId, matchBlanks, refresh, folder, storage); + ApiResponse localVarResponse = await CellsAutoFilterPutWorksheetIconFilterAsyncWithHttpInfo(name, sheetName, range, fieldIndex, iconSetType, iconId, matchBlanks, refresh, folder, storageName); return localVarResponse.Data; } @@ -17894,9 +17894,9 @@ public async System.Threading.Tasks.Task CellsAutoFilterPutW /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetIconFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoFilterPutWorksheetIconFilterAsyncWithHttpInfo (string name, string sheetName, string range, int? fieldIndex, string iconSetType, int? iconId, bool? matchBlanks = null, bool? refresh = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -17948,7 +17948,7 @@ public async System.Threading.Tasks.Task> CellsA if (matchBlanks != null) localVarQueryParams.Add("matchBlanks", Configuration.ApiClient.ParameterToString(matchBlanks)); // query parameter if (refresh != null) localVarQueryParams.Add("refresh", Configuration.ApiClient.ParameterToString(refresh)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -17978,12 +17978,12 @@ public async System.Threading.Tasks.Task> CellsA /// The autoshape number. /// Exported format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// System.IO.Stream - public System.IO.Stream CellsAutoshapesGetWorksheetAutoshape (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storage = null) + public System.IO.Stream CellsAutoshapesGetWorksheetAutoshape (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoshapesGetWorksheetAutoshapeWithHttpInfo(name, sheetName, autoshapeNumber, format, folder, storage); + ApiResponse localVarResponse = CellsAutoshapesGetWorksheetAutoshapeWithHttpInfo(name, sheetName, autoshapeNumber, format, folder, storageName); return localVarResponse.Data; } @@ -17996,9 +17996,9 @@ public System.IO.Stream CellsAutoshapesGetWorksheetAutoshape (string name, strin /// The autoshape number. /// Exported format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of System.IO.Stream - public ApiResponse< System.IO.Stream > CellsAutoshapesGetWorksheetAutoshapeWithHttpInfo (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storage = null) + public ApiResponse< System.IO.Stream > CellsAutoshapesGetWorksheetAutoshapeWithHttpInfo (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18037,7 +18037,7 @@ public System.IO.Stream CellsAutoshapesGetWorksheetAutoshape (string name, strin if (autoshapeNumber != null) localVarPathParams.Add("autoshapeNumber", Configuration.ApiClient.ParameterToString(autoshapeNumber)); // path parameter if (format != null) localVarQueryParams.Add("format", Configuration.ApiClient.ParameterToString(format)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -18067,11 +18067,11 @@ public System.IO.Stream CellsAutoshapesGetWorksheetAutoshape (string name, strin /// The autoshape number. /// Exported format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of System.IO.Stream - public async System.Threading.Tasks.Task CellsAutoshapesGetWorksheetAutoshapeAsync (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoshapesGetWorksheetAutoshapeAsync (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoshapesGetWorksheetAutoshapeAsyncWithHttpInfo(name, sheetName, autoshapeNumber, format, folder, storage); + ApiResponse localVarResponse = await CellsAutoshapesGetWorksheetAutoshapeAsyncWithHttpInfo(name, sheetName, autoshapeNumber, format, folder, storageName); return localVarResponse.Data; } @@ -18085,9 +18085,9 @@ public System.IO.Stream CellsAutoshapesGetWorksheetAutoshape (string name, strin /// The autoshape number. /// Exported format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (System.IO.Stream) - public async System.Threading.Tasks.Task> CellsAutoshapesGetWorksheetAutoshapeAsyncWithHttpInfo (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoshapesGetWorksheetAutoshapeAsyncWithHttpInfo (string name, string sheetName, int? autoshapeNumber, string format = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18126,7 +18126,7 @@ public System.IO.Stream CellsAutoshapesGetWorksheetAutoshape (string name, strin if (autoshapeNumber != null) localVarPathParams.Add("autoshapeNumber", Configuration.ApiClient.ParameterToString(autoshapeNumber)); // path parameter if (format != null) localVarQueryParams.Add("format", Configuration.ApiClient.ParameterToString(format)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -18154,12 +18154,12 @@ public System.IO.Stream CellsAutoshapesGetWorksheetAutoshape (string name, strin /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// AutoShapesResponse - public AutoShapesResponse CellsAutoshapesGetWorksheetAutoshapes (string name, string sheetName, string folder = null, string storage = null) + public AutoShapesResponse CellsAutoshapesGetWorksheetAutoshapes (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsAutoshapesGetWorksheetAutoshapesWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsAutoshapesGetWorksheetAutoshapesWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -18170,9 +18170,9 @@ public AutoShapesResponse CellsAutoshapesGetWorksheetAutoshapes (string name, st /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of AutoShapesResponse - public ApiResponse< AutoShapesResponse > CellsAutoshapesGetWorksheetAutoshapesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< AutoShapesResponse > CellsAutoshapesGetWorksheetAutoshapesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18206,7 +18206,7 @@ public ApiResponse< AutoShapesResponse > CellsAutoshapesGetWorksheetAutoshapesWi if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -18234,11 +18234,11 @@ public ApiResponse< AutoShapesResponse > CellsAutoshapesGetWorksheetAutoshapesWi /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of AutoShapesResponse - public async System.Threading.Tasks.Task CellsAutoshapesGetWorksheetAutoshapesAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsAutoshapesGetWorksheetAutoshapesAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsAutoshapesGetWorksheetAutoshapesAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsAutoshapesGetWorksheetAutoshapesAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -18250,9 +18250,9 @@ public async System.Threading.Tasks.Task CellsAutoshapesGetW /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (AutoShapesResponse) - public async System.Threading.Tasks.Task> CellsAutoshapesGetWorksheetAutoshapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsAutoshapesGetWorksheetAutoshapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18286,7 +18286,7 @@ public async System.Threading.Tasks.Task> CellsA if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -18315,12 +18315,12 @@ public async System.Threading.Tasks.Task> CellsA /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ChartAreaResponse - public ChartAreaResponse CellsChartAreaGetChartArea (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public ChartAreaResponse CellsChartAreaGetChartArea (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartAreaGetChartAreaWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = CellsChartAreaGetChartAreaWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -18332,9 +18332,9 @@ public ChartAreaResponse CellsChartAreaGetChartArea (string name, string sheetNa /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ChartAreaResponse - public ApiResponse< ChartAreaResponse > CellsChartAreaGetChartAreaWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public ApiResponse< ChartAreaResponse > CellsChartAreaGetChartAreaWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18372,7 +18372,7 @@ public ApiResponse< ChartAreaResponse > CellsChartAreaGetChartAreaWithHttpInfo ( if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -18401,11 +18401,11 @@ public ApiResponse< ChartAreaResponse > CellsChartAreaGetChartAreaWithHttpInfo ( /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ChartAreaResponse - public async System.Threading.Tasks.Task CellsChartAreaGetChartAreaAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartAreaGetChartAreaAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartAreaGetChartAreaAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = await CellsChartAreaGetChartAreaAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -18418,9 +18418,9 @@ public async System.Threading.Tasks.Task CellsChartAreaGetCha /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ChartAreaResponse) - public async System.Threading.Tasks.Task> CellsChartAreaGetChartAreaAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartAreaGetChartAreaAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18458,7 +18458,7 @@ public async System.Threading.Tasks.Task> CellsCh if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -18487,12 +18487,12 @@ public async System.Threading.Tasks.Task> CellsCh /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// LineResponse - public LineResponse CellsChartAreaGetChartAreaBorder (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public LineResponse CellsChartAreaGetChartAreaBorder (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartAreaGetChartAreaBorderWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = CellsChartAreaGetChartAreaBorderWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -18504,9 +18504,9 @@ public LineResponse CellsChartAreaGetChartAreaBorder (string name, string sheetN /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of LineResponse - public ApiResponse< LineResponse > CellsChartAreaGetChartAreaBorderWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public ApiResponse< LineResponse > CellsChartAreaGetChartAreaBorderWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18544,7 +18544,7 @@ public ApiResponse< LineResponse > CellsChartAreaGetChartAreaBorderWithHttpInfo if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -18573,11 +18573,11 @@ public ApiResponse< LineResponse > CellsChartAreaGetChartAreaBorderWithHttpInfo /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of LineResponse - public async System.Threading.Tasks.Task CellsChartAreaGetChartAreaBorderAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartAreaGetChartAreaBorderAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartAreaGetChartAreaBorderAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = await CellsChartAreaGetChartAreaBorderAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -18590,9 +18590,9 @@ public async System.Threading.Tasks.Task CellsChartAreaGetChartAre /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (LineResponse) - public async System.Threading.Tasks.Task> CellsChartAreaGetChartAreaBorderAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartAreaGetChartAreaBorderAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18630,7 +18630,7 @@ public async System.Threading.Tasks.Task> CellsChartAr if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -18659,12 +18659,12 @@ public async System.Threading.Tasks.Task> CellsChartAr /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// FillFormatResponse - public FillFormatResponse CellsChartAreaGetChartAreaFillFormat (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public FillFormatResponse CellsChartAreaGetChartAreaFillFormat (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartAreaGetChartAreaFillFormatWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = CellsChartAreaGetChartAreaFillFormatWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -18676,9 +18676,9 @@ public FillFormatResponse CellsChartAreaGetChartAreaFillFormat (string name, str /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of FillFormatResponse - public ApiResponse< FillFormatResponse > CellsChartAreaGetChartAreaFillFormatWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public ApiResponse< FillFormatResponse > CellsChartAreaGetChartAreaFillFormatWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18716,7 +18716,7 @@ public ApiResponse< FillFormatResponse > CellsChartAreaGetChartAreaFillFormatWit if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -18745,11 +18745,11 @@ public ApiResponse< FillFormatResponse > CellsChartAreaGetChartAreaFillFormatWit /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of FillFormatResponse - public async System.Threading.Tasks.Task CellsChartAreaGetChartAreaFillFormatAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartAreaGetChartAreaFillFormatAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartAreaGetChartAreaFillFormatAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = await CellsChartAreaGetChartAreaFillFormatAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -18762,9 +18762,9 @@ public async System.Threading.Tasks.Task CellsChartAreaGetCh /// Worksheet name. /// The chart index. /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (FillFormatResponse) - public async System.Threading.Tasks.Task> CellsChartAreaGetChartAreaFillFormatAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartAreaGetChartAreaFillFormatAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18802,7 +18802,7 @@ public async System.Threading.Tasks.Task> CellsC if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -18831,12 +18831,12 @@ public async System.Threading.Tasks.Task> CellsC /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsChartsDeleteWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsChartsDeleteWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsDeleteWorksheetChartLegendWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = CellsChartsDeleteWorksheetChartLegendWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -18848,9 +18848,9 @@ public CellsCloudResponse CellsChartsDeleteWorksheetChartLegend (string name, st /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18888,7 +18888,7 @@ public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetChartLegendWi if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -18917,11 +18917,11 @@ public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetChartLegendWi /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsChartsDeleteWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsDeleteWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsDeleteWorksheetChartLegendAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = await CellsChartsDeleteWorksheetChartLegendAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -18934,9 +18934,9 @@ public async System.Threading.Tasks.Task CellsChartsDeleteWo /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsChartsDeleteWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsDeleteWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -18974,7 +18974,7 @@ public async System.Threading.Tasks.Task> CellsC if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19003,12 +19003,12 @@ public async System.Threading.Tasks.Task> CellsC /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsChartsDeleteWorksheetChartTitle (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsChartsDeleteWorksheetChartTitle (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsDeleteWorksheetChartTitleWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = CellsChartsDeleteWorksheetChartTitleWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -19020,9 +19020,9 @@ public CellsCloudResponse CellsChartsDeleteWorksheetChartTitle (string name, str /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -19060,7 +19060,7 @@ public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetChartTitleWit if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19089,11 +19089,11 @@ public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetChartTitleWit /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsChartsDeleteWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsDeleteWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsDeleteWorksheetChartTitleAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = await CellsChartsDeleteWorksheetChartTitleAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -19106,9 +19106,9 @@ public async System.Threading.Tasks.Task CellsChartsDeleteWo /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsChartsDeleteWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsDeleteWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -19146,7 +19146,7 @@ public async System.Threading.Tasks.Task> CellsC if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19174,12 +19174,12 @@ public async System.Threading.Tasks.Task> CellsC /// Workbook name. /// The worksheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsChartsDeleteWorksheetClearCharts (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsChartsDeleteWorksheetClearCharts (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsDeleteWorksheetClearChartsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsChartsDeleteWorksheetClearChartsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -19190,9 +19190,9 @@ public CellsCloudResponse CellsChartsDeleteWorksheetClearCharts (string name, st /// Workbook name. /// The worksheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetClearChartsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetClearChartsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -19226,7 +19226,7 @@ public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetClearChartsWi if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19254,11 +19254,11 @@ public ApiResponse< CellsCloudResponse > CellsChartsDeleteWorksheetClearChartsWi /// Workbook name. /// The worksheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsChartsDeleteWorksheetClearChartsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsDeleteWorksheetClearChartsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsDeleteWorksheetClearChartsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsChartsDeleteWorksheetClearChartsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -19270,9 +19270,9 @@ public async System.Threading.Tasks.Task CellsChartsDeleteWo /// Workbook name. /// The worksheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsChartsDeleteWorksheetClearChartsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsDeleteWorksheetClearChartsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -19306,7 +19306,7 @@ public async System.Threading.Tasks.Task> CellsC if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19335,12 +19335,12 @@ public async System.Threading.Tasks.Task> CellsC /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ChartsResponse - public ChartsResponse CellsChartsDeleteWorksheetDeleteChart (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public ChartsResponse CellsChartsDeleteWorksheetDeleteChart (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsDeleteWorksheetDeleteChartWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = CellsChartsDeleteWorksheetDeleteChartWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -19352,9 +19352,9 @@ public ChartsResponse CellsChartsDeleteWorksheetDeleteChart (string name, string /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ChartsResponse - public ApiResponse< ChartsResponse > CellsChartsDeleteWorksheetDeleteChartWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public ApiResponse< ChartsResponse > CellsChartsDeleteWorksheetDeleteChartWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -19392,7 +19392,7 @@ public ApiResponse< ChartsResponse > CellsChartsDeleteWorksheetDeleteChartWithHt if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19421,11 +19421,11 @@ public ApiResponse< ChartsResponse > CellsChartsDeleteWorksheetDeleteChartWithHt /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ChartsResponse - public async System.Threading.Tasks.Task CellsChartsDeleteWorksheetDeleteChartAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsDeleteWorksheetDeleteChartAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsDeleteWorksheetDeleteChartAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = await CellsChartsDeleteWorksheetDeleteChartAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -19438,9 +19438,9 @@ public async System.Threading.Tasks.Task CellsChartsDeleteWorksh /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ChartsResponse) - public async System.Threading.Tasks.Task> CellsChartsDeleteWorksheetDeleteChartAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsDeleteWorksheetDeleteChartAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -19478,7 +19478,7 @@ public async System.Threading.Tasks.Task> CellsChart if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19508,12 +19508,12 @@ public async System.Threading.Tasks.Task> CellsChart /// The chart number. /// The exported file format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// System.IO.Stream - public System.IO.Stream CellsChartsGetWorksheetChart (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storage = null) + public System.IO.Stream CellsChartsGetWorksheetChart (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsGetWorksheetChartWithHttpInfo(name, sheetName, chartNumber, format, folder, storage); + ApiResponse localVarResponse = CellsChartsGetWorksheetChartWithHttpInfo(name, sheetName, chartNumber, format, folder, storageName); return localVarResponse.Data; } @@ -19526,9 +19526,9 @@ public System.IO.Stream CellsChartsGetWorksheetChart (string name, string sheetN /// The chart number. /// The exported file format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of System.IO.Stream - public ApiResponse< System.IO.Stream > CellsChartsGetWorksheetChartWithHttpInfo (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storage = null) + public ApiResponse< System.IO.Stream > CellsChartsGetWorksheetChartWithHttpInfo (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -19567,7 +19567,7 @@ public System.IO.Stream CellsChartsGetWorksheetChart (string name, string sheetN if (chartNumber != null) localVarPathParams.Add("chartNumber", Configuration.ApiClient.ParameterToString(chartNumber)); // path parameter if (format != null) localVarQueryParams.Add("format", Configuration.ApiClient.ParameterToString(format)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19597,11 +19597,11 @@ public System.IO.Stream CellsChartsGetWorksheetChart (string name, string sheetN /// The chart number. /// The exported file format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of System.IO.Stream - public async System.Threading.Tasks.Task CellsChartsGetWorksheetChartAsync (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsGetWorksheetChartAsync (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsGetWorksheetChartAsyncWithHttpInfo(name, sheetName, chartNumber, format, folder, storage); + ApiResponse localVarResponse = await CellsChartsGetWorksheetChartAsyncWithHttpInfo(name, sheetName, chartNumber, format, folder, storageName); return localVarResponse.Data; } @@ -19615,9 +19615,9 @@ public System.IO.Stream CellsChartsGetWorksheetChart (string name, string sheetN /// The chart number. /// The exported file format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (System.IO.Stream) - public async System.Threading.Tasks.Task> CellsChartsGetWorksheetChartAsyncWithHttpInfo (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsGetWorksheetChartAsyncWithHttpInfo (string name, string sheetName, int? chartNumber, string format = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -19656,7 +19656,7 @@ public System.IO.Stream CellsChartsGetWorksheetChart (string name, string sheetN if (chartNumber != null) localVarPathParams.Add("chartNumber", Configuration.ApiClient.ParameterToString(chartNumber)); // path parameter if (format != null) localVarQueryParams.Add("format", Configuration.ApiClient.ParameterToString(format)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19685,12 +19685,12 @@ public System.IO.Stream CellsChartsGetWorksheetChart (string name, string sheetN /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// LegendResponse - public LegendResponse CellsChartsGetWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public LegendResponse CellsChartsGetWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsGetWorksheetChartLegendWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = CellsChartsGetWorksheetChartLegendWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -19702,9 +19702,9 @@ public LegendResponse CellsChartsGetWorksheetChartLegend (string name, string sh /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of LegendResponse - public ApiResponse< LegendResponse > CellsChartsGetWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public ApiResponse< LegendResponse > CellsChartsGetWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -19742,7 +19742,7 @@ public ApiResponse< LegendResponse > CellsChartsGetWorksheetChartLegendWithHttpI if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19771,11 +19771,11 @@ public ApiResponse< LegendResponse > CellsChartsGetWorksheetChartLegendWithHttpI /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of LegendResponse - public async System.Threading.Tasks.Task CellsChartsGetWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsGetWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsGetWorksheetChartLegendAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = await CellsChartsGetWorksheetChartLegendAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -19788,9 +19788,9 @@ public async System.Threading.Tasks.Task CellsChartsGetWorksheet /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (LegendResponse) - public async System.Threading.Tasks.Task> CellsChartsGetWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsGetWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -19828,7 +19828,7 @@ public async System.Threading.Tasks.Task> CellsChart if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19857,12 +19857,12 @@ public async System.Threading.Tasks.Task> CellsChart /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TitleResponse - public TitleResponse CellsChartsGetWorksheetChartTitle (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public TitleResponse CellsChartsGetWorksheetChartTitle (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsGetWorksheetChartTitleWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = CellsChartsGetWorksheetChartTitleWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -19874,9 +19874,9 @@ public TitleResponse CellsChartsGetWorksheetChartTitle (string name, string shee /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TitleResponse - public ApiResponse< TitleResponse > CellsChartsGetWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public ApiResponse< TitleResponse > CellsChartsGetWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -19914,7 +19914,7 @@ public ApiResponse< TitleResponse > CellsChartsGetWorksheetChartTitleWithHttpInf if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -19943,11 +19943,11 @@ public ApiResponse< TitleResponse > CellsChartsGetWorksheetChartTitleWithHttpInf /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TitleResponse - public async System.Threading.Tasks.Task CellsChartsGetWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsGetWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsGetWorksheetChartTitleAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = await CellsChartsGetWorksheetChartTitleAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -19960,9 +19960,9 @@ public async System.Threading.Tasks.Task CellsChartsGetWorksheetC /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TitleResponse) - public async System.Threading.Tasks.Task> CellsChartsGetWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsGetWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -20000,7 +20000,7 @@ public async System.Threading.Tasks.Task> CellsCharts if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -20028,12 +20028,12 @@ public async System.Threading.Tasks.Task> CellsCharts /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ChartsResponse - public ChartsResponse CellsChartsGetWorksheetCharts (string name, string sheetName, string folder = null, string storage = null) + public ChartsResponse CellsChartsGetWorksheetCharts (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsGetWorksheetChartsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsChartsGetWorksheetChartsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -20044,9 +20044,9 @@ public ChartsResponse CellsChartsGetWorksheetCharts (string name, string sheetNa /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ChartsResponse - public ApiResponse< ChartsResponse > CellsChartsGetWorksheetChartsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< ChartsResponse > CellsChartsGetWorksheetChartsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -20080,7 +20080,7 @@ public ApiResponse< ChartsResponse > CellsChartsGetWorksheetChartsWithHttpInfo ( if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -20108,11 +20108,11 @@ public ApiResponse< ChartsResponse > CellsChartsGetWorksheetChartsWithHttpInfo ( /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ChartsResponse - public async System.Threading.Tasks.Task CellsChartsGetWorksheetChartsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsGetWorksheetChartsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsGetWorksheetChartsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsChartsGetWorksheetChartsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -20124,9 +20124,9 @@ public async System.Threading.Tasks.Task CellsChartsGetWorksheet /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ChartsResponse) - public async System.Threading.Tasks.Task> CellsChartsGetWorksheetChartsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsGetWorksheetChartsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -20160,7 +20160,7 @@ public async System.Threading.Tasks.Task> CellsChart if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -20190,12 +20190,12 @@ public async System.Threading.Tasks.Task> CellsChart /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsChartsPostWorksheetChart (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storage = null) + public CellsCloudResponse CellsChartsPostWorksheetChart (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsPostWorksheetChartWithHttpInfo(name, sheetName, chartIndex, chart, folder, storage); + ApiResponse localVarResponse = CellsChartsPostWorksheetChartWithHttpInfo(name, sheetName, chartIndex, chart, folder, storageName); return localVarResponse.Data; } @@ -20208,9 +20208,9 @@ public CellsCloudResponse CellsChartsPostWorksheetChart (string name, string she /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsChartsPostWorksheetChartWithHttpInfo (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsChartsPostWorksheetChartWithHttpInfo (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -20248,7 +20248,7 @@ public ApiResponse< CellsCloudResponse > CellsChartsPostWorksheetChartWithHttpIn if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (chart != null && chart.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(chart); // http body (model) parameter @@ -20256,10 +20256,6 @@ public ApiResponse< CellsCloudResponse > CellsChartsPostWorksheetChartWithHttpIn else { localVarPostBody = chart; // byte array - if ( "CellsChartsPostWorksheetChart" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -20290,11 +20286,11 @@ public ApiResponse< CellsCloudResponse > CellsChartsPostWorksheetChartWithHttpIn /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsChartsPostWorksheetChartAsync (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsPostWorksheetChartAsync (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsPostWorksheetChartAsyncWithHttpInfo(name, sheetName, chartIndex, chart, folder, storage); + ApiResponse localVarResponse = await CellsChartsPostWorksheetChartAsyncWithHttpInfo(name, sheetName, chartIndex, chart, folder, storageName); return localVarResponse.Data; } @@ -20308,9 +20304,9 @@ public async System.Threading.Tasks.Task CellsChartsPostWork /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsChartsPostWorksheetChartAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsPostWorksheetChartAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Chart chart = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -20348,7 +20344,7 @@ public async System.Threading.Tasks.Task> CellsC if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (chart != null && chart.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(chart); // http body (model) parameter @@ -20386,12 +20382,12 @@ public async System.Threading.Tasks.Task> CellsC /// The chart index. /// (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// LegendResponse - public LegendResponse CellsChartsPostWorksheetChartLegend (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storage = null) + public LegendResponse CellsChartsPostWorksheetChartLegend (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsPostWorksheetChartLegendWithHttpInfo(name, sheetName, chartIndex, legend, folder, storage); + ApiResponse localVarResponse = CellsChartsPostWorksheetChartLegendWithHttpInfo(name, sheetName, chartIndex, legend, folder, storageName); return localVarResponse.Data; } @@ -20404,9 +20400,9 @@ public LegendResponse CellsChartsPostWorksheetChartLegend (string name, string s /// The chart index. /// (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of LegendResponse - public ApiResponse< LegendResponse > CellsChartsPostWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storage = null) + public ApiResponse< LegendResponse > CellsChartsPostWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -20444,7 +20440,7 @@ public ApiResponse< LegendResponse > CellsChartsPostWorksheetChartLegendWithHttp if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (legend != null && legend.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(legend); // http body (model) parameter @@ -20452,10 +20448,6 @@ public ApiResponse< LegendResponse > CellsChartsPostWorksheetChartLegendWithHttp else { localVarPostBody = legend; // byte array - if ( "CellsChartsPostWorksheetChartLegend" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -20486,11 +20478,11 @@ public ApiResponse< LegendResponse > CellsChartsPostWorksheetChartLegendWithHttp /// The chart index. /// (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of LegendResponse - public async System.Threading.Tasks.Task CellsChartsPostWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsPostWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsPostWorksheetChartLegendAsyncWithHttpInfo(name, sheetName, chartIndex, legend, folder, storage); + ApiResponse localVarResponse = await CellsChartsPostWorksheetChartLegendAsyncWithHttpInfo(name, sheetName, chartIndex, legend, folder, storageName); return localVarResponse.Data; } @@ -20504,9 +20496,9 @@ public async System.Threading.Tasks.Task CellsChartsPostWorkshee /// The chart index. /// (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (LegendResponse) - public async System.Threading.Tasks.Task> CellsChartsPostWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsPostWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Legend legend = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -20544,7 +20536,7 @@ public async System.Threading.Tasks.Task> CellsChart if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (legend != null && legend.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(legend); // http body (model) parameter @@ -20582,12 +20574,12 @@ public async System.Threading.Tasks.Task> CellsChart /// The chart index. /// Chart title (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TitleResponse - public TitleResponse CellsChartsPostWorksheetChartTitle (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null) + public TitleResponse CellsChartsPostWorksheetChartTitle (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsPostWorksheetChartTitleWithHttpInfo(name, sheetName, chartIndex, title, folder, storage); + ApiResponse localVarResponse = CellsChartsPostWorksheetChartTitleWithHttpInfo(name, sheetName, chartIndex, title, folder, storageName); return localVarResponse.Data; } @@ -20600,9 +20592,9 @@ public TitleResponse CellsChartsPostWorksheetChartTitle (string name, string she /// The chart index. /// Chart title (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TitleResponse - public ApiResponse< TitleResponse > CellsChartsPostWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null) + public ApiResponse< TitleResponse > CellsChartsPostWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -20640,7 +20632,7 @@ public ApiResponse< TitleResponse > CellsChartsPostWorksheetChartTitleWithHttpIn if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (title != null && title.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(title); // http body (model) parameter @@ -20648,10 +20640,6 @@ public ApiResponse< TitleResponse > CellsChartsPostWorksheetChartTitleWithHttpIn else { localVarPostBody = title; // byte array - if ( "CellsChartsPostWorksheetChartTitle" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -20682,11 +20670,11 @@ public ApiResponse< TitleResponse > CellsChartsPostWorksheetChartTitleWithHttpIn /// The chart index. /// Chart title (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TitleResponse - public async System.Threading.Tasks.Task CellsChartsPostWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsPostWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsPostWorksheetChartTitleAsyncWithHttpInfo(name, sheetName, chartIndex, title, folder, storage); + ApiResponse localVarResponse = await CellsChartsPostWorksheetChartTitleAsyncWithHttpInfo(name, sheetName, chartIndex, title, folder, storageName); return localVarResponse.Data; } @@ -20700,9 +20688,9 @@ public async System.Threading.Tasks.Task CellsChartsPostWorksheet /// The chart index. /// Chart title (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TitleResponse) - public async System.Threading.Tasks.Task> CellsChartsPostWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsPostWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -20740,7 +20728,7 @@ public async System.Threading.Tasks.Task> CellsCharts if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (title != null && title.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(title); // http body (model) parameter @@ -20786,12 +20774,12 @@ public async System.Threading.Tasks.Task> CellsCharts /// Specifies whether auto update serial name. (optional, default to true) /// Specifies chart title name. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ChartsResponse - public ChartsResponse CellsChartsPutWorksheetAddChart (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storage = null) + public ChartsResponse CellsChartsPutWorksheetAddChart (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsPutWorksheetAddChartWithHttpInfo(name, sheetName, chartType, upperLeftRow, upperLeftColumn, lowerRightRow, lowerRightColumn, area, isVertical, categoryData, isAutoGetSerialName, title, folder, storage); + ApiResponse localVarResponse = CellsChartsPutWorksheetAddChartWithHttpInfo(name, sheetName, chartType, upperLeftRow, upperLeftColumn, lowerRightRow, lowerRightColumn, area, isVertical, categoryData, isAutoGetSerialName, title, folder, storageName); return localVarResponse.Data; } @@ -20812,9 +20800,9 @@ public ChartsResponse CellsChartsPutWorksheetAddChart (string name, string sheet /// Specifies whether auto update serial name. (optional, default to true) /// Specifies chart title name. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ChartsResponse - public ApiResponse< ChartsResponse > CellsChartsPutWorksheetAddChartWithHttpInfo (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storage = null) + public ApiResponse< ChartsResponse > CellsChartsPutWorksheetAddChartWithHttpInfo (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -20861,7 +20849,7 @@ public ApiResponse< ChartsResponse > CellsChartsPutWorksheetAddChartWithHttpInfo if (isAutoGetSerialName != null) localVarQueryParams.Add("isAutoGetSerialName", Configuration.ApiClient.ParameterToString(isAutoGetSerialName)); // query parameter if (title != null) localVarQueryParams.Add("title", Configuration.ApiClient.ParameterToString(title)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -20899,11 +20887,11 @@ public ApiResponse< ChartsResponse > CellsChartsPutWorksheetAddChartWithHttpInfo /// Specifies whether auto update serial name. (optional, default to true) /// Specifies chart title name. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ChartsResponse - public async System.Threading.Tasks.Task CellsChartsPutWorksheetAddChartAsync (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsPutWorksheetAddChartAsync (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsPutWorksheetAddChartAsyncWithHttpInfo(name, sheetName, chartType, upperLeftRow, upperLeftColumn, lowerRightRow, lowerRightColumn, area, isVertical, categoryData, isAutoGetSerialName, title, folder, storage); + ApiResponse localVarResponse = await CellsChartsPutWorksheetAddChartAsyncWithHttpInfo(name, sheetName, chartType, upperLeftRow, upperLeftColumn, lowerRightRow, lowerRightColumn, area, isVertical, categoryData, isAutoGetSerialName, title, folder, storageName); return localVarResponse.Data; } @@ -20925,9 +20913,9 @@ public async System.Threading.Tasks.Task CellsChartsPutWorksheet /// Specifies whether auto update serial name. (optional, default to true) /// Specifies chart title name. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ChartsResponse) - public async System.Threading.Tasks.Task> CellsChartsPutWorksheetAddChartAsyncWithHttpInfo (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsPutWorksheetAddChartAsyncWithHttpInfo (string name, string sheetName, string chartType, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string area = null, bool? isVertical = null, string categoryData = null, bool? isAutoGetSerialName = null, string title = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -20974,7 +20962,7 @@ public async System.Threading.Tasks.Task> CellsChart if (isAutoGetSerialName != null) localVarQueryParams.Add("isAutoGetSerialName", Configuration.ApiClient.ParameterToString(isAutoGetSerialName)); // query parameter if (title != null) localVarQueryParams.Add("title", Configuration.ApiClient.ParameterToString(title)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -21003,12 +20991,12 @@ public async System.Threading.Tasks.Task> CellsChart /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsChartsPutWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsChartsPutWorksheetChartLegend (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsPutWorksheetChartLegendWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = CellsChartsPutWorksheetChartLegendWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -21020,9 +21008,9 @@ public CellsCloudResponse CellsChartsPutWorksheetChartLegend (string name, strin /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsChartsPutWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsChartsPutWorksheetChartLegendWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -21060,7 +21048,7 @@ public ApiResponse< CellsCloudResponse > CellsChartsPutWorksheetChartLegendWithH if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -21089,11 +21077,11 @@ public ApiResponse< CellsCloudResponse > CellsChartsPutWorksheetChartLegendWithH /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsChartsPutWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsPutWorksheetChartLegendAsync (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsPutWorksheetChartLegendAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storage); + ApiResponse localVarResponse = await CellsChartsPutWorksheetChartLegendAsyncWithHttpInfo(name, sheetName, chartIndex, folder, storageName); return localVarResponse.Data; } @@ -21106,9 +21094,9 @@ public async System.Threading.Tasks.Task CellsChartsPutWorks /// Worksheet name. /// The chart index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsChartsPutWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsPutWorksheetChartLegendAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -21146,7 +21134,7 @@ public async System.Threading.Tasks.Task> CellsC if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -21176,12 +21164,12 @@ public async System.Threading.Tasks.Task> CellsC /// The chart index. /// Chart title. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TitleResponse - public TitleResponse CellsChartsPutWorksheetChartTitle (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null) + public TitleResponse CellsChartsPutWorksheetChartTitle (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsChartsPutWorksheetChartTitleWithHttpInfo(name, sheetName, chartIndex, title, folder, storage); + ApiResponse localVarResponse = CellsChartsPutWorksheetChartTitleWithHttpInfo(name, sheetName, chartIndex, title, folder, storageName); return localVarResponse.Data; } @@ -21194,9 +21182,9 @@ public TitleResponse CellsChartsPutWorksheetChartTitle (string name, string shee /// The chart index. /// Chart title. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TitleResponse - public ApiResponse< TitleResponse > CellsChartsPutWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null) + public ApiResponse< TitleResponse > CellsChartsPutWorksheetChartTitleWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -21234,7 +21222,7 @@ public ApiResponse< TitleResponse > CellsChartsPutWorksheetChartTitleWithHttpInf if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (title != null && title.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(title); // http body (model) parameter @@ -21242,10 +21230,6 @@ public ApiResponse< TitleResponse > CellsChartsPutWorksheetChartTitleWithHttpInf else { localVarPostBody = title; // byte array - if ( "CellsChartsPutWorksheetChartTitle" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -21276,11 +21260,11 @@ public ApiResponse< TitleResponse > CellsChartsPutWorksheetChartTitleWithHttpInf /// The chart index. /// Chart title. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TitleResponse - public async System.Threading.Tasks.Task CellsChartsPutWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsChartsPutWorksheetChartTitleAsync (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsChartsPutWorksheetChartTitleAsyncWithHttpInfo(name, sheetName, chartIndex, title, folder, storage); + ApiResponse localVarResponse = await CellsChartsPutWorksheetChartTitleAsyncWithHttpInfo(name, sheetName, chartIndex, title, folder, storageName); return localVarResponse.Data; } @@ -21294,9 +21278,9 @@ public async System.Threading.Tasks.Task CellsChartsPutWorksheetC /// The chart index. /// Chart title. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TitleResponse) - public async System.Threading.Tasks.Task> CellsChartsPutWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsChartsPutWorksheetChartTitleAsyncWithHttpInfo (string name, string sheetName, int? chartIndex, Title title = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -21334,7 +21318,7 @@ public async System.Threading.Tasks.Task> CellsCharts if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (chartIndex != null) localVarPathParams.Add("chartIndex", Configuration.ApiClient.ParameterToString(chartIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (title != null && title.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(title); // http body (model) parameter @@ -21371,12 +21355,12 @@ public async System.Threading.Tasks.Task> CellsCharts /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormatting (string name, string sheetName, int? index, string folder = null, string storage = null) + public CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormatting (string name, string sheetName, int? index, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsConditionalFormattingsDeleteWorksheetConditionalFormattingWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = CellsConditionalFormattingsDeleteWorksheetConditionalFormattingWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -21388,9 +21372,9 @@ public CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalF /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -21428,7 +21412,7 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksh if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -21457,11 +21441,11 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksh /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAsync (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAsync (string name, string sheetName, int? index, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAsyncWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = await CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAsyncWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -21474,9 +21458,9 @@ public async System.Threading.Tasks.Task CellsConditionalFor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -21514,7 +21498,7 @@ public async System.Threading.Tasks.Task> CellsC if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -21546,12 +21530,12 @@ public async System.Threading.Tasks.Task> CellsC /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattingArea (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattingArea (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storage); + ApiResponse localVarResponse = CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storageName); return localVarResponse.Data; } @@ -21566,9 +21550,9 @@ public CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalF /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -21618,7 +21602,7 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksh if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -21650,11 +21634,11 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksh /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaAsyncWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storage); + ApiResponse localVarResponse = await CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaAsyncWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storageName); return localVarResponse.Data; } @@ -21670,9 +21654,9 @@ public async System.Threading.Tasks.Task CellsConditionalFor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -21722,7 +21706,7 @@ public async System.Threading.Tasks.Task> CellsC if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -21750,12 +21734,12 @@ public async System.Threading.Tasks.Task> CellsC /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattings (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalFormattings (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -21766,9 +21750,9 @@ public CellsCloudResponse CellsConditionalFormattingsDeleteWorksheetConditionalF /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -21802,7 +21786,7 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksh if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -21830,11 +21814,11 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsDeleteWorksh /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -21846,9 +21830,9 @@ public async System.Threading.Tasks.Task CellsConditionalFor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -21882,7 +21866,7 @@ public async System.Threading.Tasks.Task> CellsC if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -21911,12 +21895,12 @@ public async System.Threading.Tasks.Task> CellsC /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ConditionalFormattingResponse - public ConditionalFormattingResponse CellsConditionalFormattingsGetWorksheetConditionalFormatting (string name, string sheetName, int? index, string folder = null, string storage = null) + public ConditionalFormattingResponse CellsConditionalFormattingsGetWorksheetConditionalFormatting (string name, string sheetName, int? index, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsConditionalFormattingsGetWorksheetConditionalFormattingWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = CellsConditionalFormattingsGetWorksheetConditionalFormattingWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -21928,9 +21912,9 @@ public ConditionalFormattingResponse CellsConditionalFormattingsGetWorksheetCond /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ConditionalFormattingResponse - public ApiResponse< ConditionalFormattingResponse > CellsConditionalFormattingsGetWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public ApiResponse< ConditionalFormattingResponse > CellsConditionalFormattingsGetWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -21968,7 +21952,7 @@ public ApiResponse< ConditionalFormattingResponse > CellsConditionalFormattingsG if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -21997,11 +21981,11 @@ public ApiResponse< ConditionalFormattingResponse > CellsConditionalFormattingsG /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ConditionalFormattingResponse - public async System.Threading.Tasks.Task CellsConditionalFormattingsGetWorksheetConditionalFormattingAsync (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsConditionalFormattingsGetWorksheetConditionalFormattingAsync (string name, string sheetName, int? index, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsConditionalFormattingsGetWorksheetConditionalFormattingAsyncWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = await CellsConditionalFormattingsGetWorksheetConditionalFormattingAsyncWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -22014,9 +21998,9 @@ public async System.Threading.Tasks.Task CellsCon /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ConditionalFormattingResponse) - public async System.Threading.Tasks.Task> CellsConditionalFormattingsGetWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsConditionalFormattingsGetWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -22054,7 +22038,7 @@ public async System.Threading.Tasks.Task /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ConditionalFormattingsResponse - public ConditionalFormattingsResponse CellsConditionalFormattingsGetWorksheetConditionalFormattings (string name, string sheetName, string folder = null, string storage = null) + public ConditionalFormattingsResponse CellsConditionalFormattingsGetWorksheetConditionalFormattings (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsConditionalFormattingsGetWorksheetConditionalFormattingsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsConditionalFormattingsGetWorksheetConditionalFormattingsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -22098,9 +22082,9 @@ public ConditionalFormattingsResponse CellsConditionalFormattingsGetWorksheetCon /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ConditionalFormattingsResponse - public ApiResponse< ConditionalFormattingsResponse > CellsConditionalFormattingsGetWorksheetConditionalFormattingsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< ConditionalFormattingsResponse > CellsConditionalFormattingsGetWorksheetConditionalFormattingsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -22134,7 +22118,7 @@ public ApiResponse< ConditionalFormattingsResponse > CellsConditionalFormattings if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -22162,11 +22146,11 @@ public ApiResponse< ConditionalFormattingsResponse > CellsConditionalFormattings /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ConditionalFormattingsResponse - public async System.Threading.Tasks.Task CellsConditionalFormattingsGetWorksheetConditionalFormattingsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsConditionalFormattingsGetWorksheetConditionalFormattingsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsConditionalFormattingsGetWorksheetConditionalFormattingsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsConditionalFormattingsGetWorksheetConditionalFormattingsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -22178,9 +22162,9 @@ public async System.Threading.Tasks.Task CellsCo /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ConditionalFormattingsResponse) - public async System.Threading.Tasks.Task> CellsConditionalFormattingsGetWorksheetConditionalFormattingsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsConditionalFormattingsGetWorksheetConditionalFormattingsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -22214,7 +22198,7 @@ public async System.Threading.Tasks.Task /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsConditionalFormattingsPutWorksheetConditionalFormatting (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storage = null) + public CellsCloudResponse CellsConditionalFormattingsPutWorksheetConditionalFormatting (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsConditionalFormattingsPutWorksheetConditionalFormattingWithHttpInfo(name, sheetName, cellArea, formatCondition, folder, storage); + ApiResponse localVarResponse = CellsConditionalFormattingsPutWorksheetConditionalFormattingWithHttpInfo(name, sheetName, cellArea, formatCondition, folder, storageName); return localVarResponse.Data; } @@ -22262,9 +22246,9 @@ public CellsCloudResponse CellsConditionalFormattingsPutWorksheetConditionalForm /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheetConditionalFormattingWithHttpInfo (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -22302,7 +22286,7 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheet if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellArea != null) localVarQueryParams.Add("cellArea", Configuration.ApiClient.ParameterToString(cellArea)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (formatCondition != null && formatCondition.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(formatCondition); // http body (model) parameter @@ -22310,10 +22294,6 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheet else { localVarPostBody = formatCondition; // byte array - if ( "CellsConditionalFormattingsPutWorksheetConditionalFormatting" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -22344,11 +22324,11 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheet /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetConditionalFormattingAsync (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetConditionalFormattingAsync (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsConditionalFormattingsPutWorksheetConditionalFormattingAsyncWithHttpInfo(name, sheetName, cellArea, formatCondition, folder, storage); + ApiResponse localVarResponse = await CellsConditionalFormattingsPutWorksheetConditionalFormattingAsyncWithHttpInfo(name, sheetName, cellArea, formatCondition, folder, storageName); return localVarResponse.Data; } @@ -22362,9 +22342,9 @@ public async System.Threading.Tasks.Task CellsConditionalFor /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetConditionalFormattingAsyncWithHttpInfo (string name, string sheetName, string cellArea, FormatCondition formatCondition = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -22402,7 +22382,7 @@ public async System.Threading.Tasks.Task> CellsC if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellArea != null) localVarQueryParams.Add("cellArea", Configuration.ApiClient.ParameterToString(cellArea)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (formatCondition != null && formatCondition.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(formatCondition); // http body (model) parameter @@ -22444,12 +22424,12 @@ public async System.Threading.Tasks.Task> CellsC /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatCondition (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null) + public CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatCondition (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsConditionalFormattingsPutWorksheetFormatConditionWithHttpInfo(name, sheetName, index, cellArea, type, operatorType, formula1, formula2, folder, storage); + ApiResponse localVarResponse = CellsConditionalFormattingsPutWorksheetFormatConditionWithHttpInfo(name, sheetName, index, cellArea, type, operatorType, formula1, formula2, folder, storageName); return localVarResponse.Data; } @@ -22466,9 +22446,9 @@ public CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatCondition /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheetFormatConditionWithHttpInfo (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheetFormatConditionWithHttpInfo (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -22526,7 +22506,7 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheet if (formula1 != null) localVarQueryParams.Add("formula1", Configuration.ApiClient.ParameterToString(formula1)); // query parameter if (formula2 != null) localVarQueryParams.Add("formula2", Configuration.ApiClient.ParameterToString(formula2)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -22560,11 +22540,11 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheet /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionAsync (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionAsync (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsConditionalFormattingsPutWorksheetFormatConditionAsyncWithHttpInfo(name, sheetName, index, cellArea, type, operatorType, formula1, formula2, folder, storage); + ApiResponse localVarResponse = await CellsConditionalFormattingsPutWorksheetFormatConditionAsyncWithHttpInfo(name, sheetName, index, cellArea, type, operatorType, formula1, formula2, folder, storageName); return localVarResponse.Data; } @@ -22582,9 +22562,9 @@ public async System.Threading.Tasks.Task CellsConditionalFor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionAsyncWithHttpInfo (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionAsyncWithHttpInfo (string name, string sheetName, int? index, string cellArea, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -22642,7 +22622,7 @@ public async System.Threading.Tasks.Task> CellsC if (formula1 != null) localVarQueryParams.Add("formula1", Configuration.ApiClient.ParameterToString(formula1)); // query parameter if (formula2 != null) localVarQueryParams.Add("formula2", Configuration.ApiClient.ParameterToString(formula2)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -22672,12 +22652,12 @@ public async System.Threading.Tasks.Task> CellsC /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatConditionArea (string name, string sheetName, int? index, string cellArea, string folder = null, string storage = null) + public CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatConditionArea (string name, string sheetName, int? index, string cellArea, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsConditionalFormattingsPutWorksheetFormatConditionAreaWithHttpInfo(name, sheetName, index, cellArea, folder, storage); + ApiResponse localVarResponse = CellsConditionalFormattingsPutWorksheetFormatConditionAreaWithHttpInfo(name, sheetName, index, cellArea, folder, storageName); return localVarResponse.Data; } @@ -22690,9 +22670,9 @@ public CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatCondition /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheetFormatConditionAreaWithHttpInfo (string name, string sheetName, int? index, string cellArea, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheetFormatConditionAreaWithHttpInfo (string name, string sheetName, int? index, string cellArea, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -22734,7 +22714,7 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheet if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (cellArea != null) localVarQueryParams.Add("cellArea", Configuration.ApiClient.ParameterToString(cellArea)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -22764,11 +22744,11 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheet /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionAreaAsync (string name, string sheetName, int? index, string cellArea, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionAreaAsync (string name, string sheetName, int? index, string cellArea, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsConditionalFormattingsPutWorksheetFormatConditionAreaAsyncWithHttpInfo(name, sheetName, index, cellArea, folder, storage); + ApiResponse localVarResponse = await CellsConditionalFormattingsPutWorksheetFormatConditionAreaAsyncWithHttpInfo(name, sheetName, index, cellArea, folder, storageName); return localVarResponse.Data; } @@ -22782,9 +22762,9 @@ public async System.Threading.Tasks.Task CellsConditionalFor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionAreaAsyncWithHttpInfo (string name, string sheetName, int? index, string cellArea, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionAreaAsyncWithHttpInfo (string name, string sheetName, int? index, string cellArea, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -22826,7 +22806,7 @@ public async System.Threading.Tasks.Task> CellsC if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (cellArea != null) localVarQueryParams.Add("cellArea", Configuration.ApiClient.ParameterToString(cellArea)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -22859,12 +22839,12 @@ public async System.Threading.Tasks.Task> CellsC /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatConditionCondition (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null) + public CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatConditionCondition (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsConditionalFormattingsPutWorksheetFormatConditionConditionWithHttpInfo(name, sheetName, index, type, operatorType, formula1, formula2, folder, storage); + ApiResponse localVarResponse = CellsConditionalFormattingsPutWorksheetFormatConditionConditionWithHttpInfo(name, sheetName, index, type, operatorType, formula1, formula2, folder, storageName); return localVarResponse.Data; } @@ -22880,9 +22860,9 @@ public CellsCloudResponse CellsConditionalFormattingsPutWorksheetFormatCondition /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheetFormatConditionConditionWithHttpInfo (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheetFormatConditionConditionWithHttpInfo (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -22936,7 +22916,7 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheet if (formula1 != null) localVarQueryParams.Add("formula1", Configuration.ApiClient.ParameterToString(formula1)); // query parameter if (formula2 != null) localVarQueryParams.Add("formula2", Configuration.ApiClient.ParameterToString(formula2)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -22969,11 +22949,11 @@ public ApiResponse< CellsCloudResponse > CellsConditionalFormattingsPutWorksheet /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionConditionAsync (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsConditionalFormattingsPutWorksheetFormatConditionConditionAsync (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsConditionalFormattingsPutWorksheetFormatConditionConditionAsyncWithHttpInfo(name, sheetName, index, type, operatorType, formula1, formula2, folder, storage); + ApiResponse localVarResponse = await CellsConditionalFormattingsPutWorksheetFormatConditionConditionAsyncWithHttpInfo(name, sheetName, index, type, operatorType, formula1, formula2, folder, storageName); return localVarResponse.Data; } @@ -22990,9 +22970,9 @@ public async System.Threading.Tasks.Task CellsConditionalFor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionConditionAsyncWithHttpInfo (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsConditionalFormattingsPutWorksheetFormatConditionConditionAsyncWithHttpInfo (string name, string sheetName, int? index, string type, string operatorType, string formula1, string formula2, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -23046,7 +23026,7 @@ public async System.Threading.Tasks.Task> CellsC if (formula1 != null) localVarQueryParams.Add("formula1", Configuration.ApiClient.ParameterToString(formula1)); // query parameter if (formula2 != null) localVarQueryParams.Add("formula2", Configuration.ApiClient.ParameterToString(formula2)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -23077,12 +23057,12 @@ public async System.Threading.Tasks.Task> CellsC /// The columns. /// The update reference. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ColumnsResponse - public ColumnsResponse CellsDeleteWorksheetColumns (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storage = null) + public ColumnsResponse CellsDeleteWorksheetColumns (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsDeleteWorksheetColumnsWithHttpInfo(name, sheetName, columnIndex, columns, updateReference, folder, storage); + ApiResponse localVarResponse = CellsDeleteWorksheetColumnsWithHttpInfo(name, sheetName, columnIndex, columns, updateReference, folder, storageName); return localVarResponse.Data; } @@ -23096,9 +23076,9 @@ public ColumnsResponse CellsDeleteWorksheetColumns (string name, string sheetNam /// The columns. /// The update reference. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ColumnsResponse - public ApiResponse< ColumnsResponse > CellsDeleteWorksheetColumnsWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storage = null) + public ApiResponse< ColumnsResponse > CellsDeleteWorksheetColumnsWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -23144,7 +23124,7 @@ public ApiResponse< ColumnsResponse > CellsDeleteWorksheetColumnsWithHttpInfo (s if (columns != null) localVarQueryParams.Add("columns", Configuration.ApiClient.ParameterToString(columns)); // query parameter if (updateReference != null) localVarQueryParams.Add("updateReference", Configuration.ApiClient.ParameterToString(updateReference)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -23175,11 +23155,11 @@ public ApiResponse< ColumnsResponse > CellsDeleteWorksheetColumnsWithHttpInfo (s /// The columns. /// The update reference. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ColumnsResponse - public async System.Threading.Tasks.Task CellsDeleteWorksheetColumnsAsync (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsDeleteWorksheetColumnsAsync (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsDeleteWorksheetColumnsAsyncWithHttpInfo(name, sheetName, columnIndex, columns, updateReference, folder, storage); + ApiResponse localVarResponse = await CellsDeleteWorksheetColumnsAsyncWithHttpInfo(name, sheetName, columnIndex, columns, updateReference, folder, storageName); return localVarResponse.Data; } @@ -23194,9 +23174,9 @@ public async System.Threading.Tasks.Task CellsDeleteWorksheetCo /// The columns. /// The update reference. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ColumnsResponse) - public async System.Threading.Tasks.Task> CellsDeleteWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsDeleteWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -23242,7 +23222,7 @@ public async System.Threading.Tasks.Task> CellsDele if (columns != null) localVarQueryParams.Add("columns", Configuration.ApiClient.ParameterToString(columns)); // query parameter if (updateReference != null) localVarQueryParams.Add("updateReference", Configuration.ApiClient.ParameterToString(updateReference)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -23271,12 +23251,12 @@ public async System.Threading.Tasks.Task> CellsDele /// The worksheet bame. /// The row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsDeleteWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsDeleteWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsDeleteWorksheetRowWithHttpInfo(name, sheetName, rowIndex, folder, storage); + ApiResponse localVarResponse = CellsDeleteWorksheetRowWithHttpInfo(name, sheetName, rowIndex, folder, storageName); return localVarResponse.Data; } @@ -23288,9 +23268,9 @@ public CellsCloudResponse CellsDeleteWorksheetRow (string name, string sheetName /// The worksheet bame. /// The row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsDeleteWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsDeleteWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -23328,7 +23308,7 @@ public ApiResponse< CellsCloudResponse > CellsDeleteWorksheetRowWithHttpInfo (st if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (rowIndex != null) localVarPathParams.Add("rowIndex", Configuration.ApiClient.ParameterToString(rowIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -23357,11 +23337,11 @@ public ApiResponse< CellsCloudResponse > CellsDeleteWorksheetRowWithHttpInfo (st /// The worksheet bame. /// The row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsDeleteWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsDeleteWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsDeleteWorksheetRowAsyncWithHttpInfo(name, sheetName, rowIndex, folder, storage); + ApiResponse localVarResponse = await CellsDeleteWorksheetRowAsyncWithHttpInfo(name, sheetName, rowIndex, folder, storageName); return localVarResponse.Data; } @@ -23374,9 +23354,9 @@ public async System.Threading.Tasks.Task CellsDeleteWorkshee /// The worksheet bame. /// The row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsDeleteWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsDeleteWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -23414,7 +23394,7 @@ public async System.Threading.Tasks.Task> CellsD if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (rowIndex != null) localVarPathParams.Add("rowIndex", Configuration.ApiClient.ParameterToString(rowIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -23445,12 +23425,12 @@ public async System.Threading.Tasks.Task> CellsD /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsDeleteWorksheetRows (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null) + public CellsCloudResponse CellsDeleteWorksheetRows (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsDeleteWorksheetRowsWithHttpInfo(name, sheetName, startrow, totalRows, updateReference, folder, storage); + ApiResponse localVarResponse = CellsDeleteWorksheetRowsWithHttpInfo(name, sheetName, startrow, totalRows, updateReference, folder, storageName); return localVarResponse.Data; } @@ -23464,9 +23444,9 @@ public CellsCloudResponse CellsDeleteWorksheetRows (string name, string sheetNam /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsDeleteWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsDeleteWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -23506,7 +23486,7 @@ public ApiResponse< CellsCloudResponse > CellsDeleteWorksheetRowsWithHttpInfo (s if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (updateReference != null) localVarQueryParams.Add("updateReference", Configuration.ApiClient.ParameterToString(updateReference)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -23537,11 +23517,11 @@ public ApiResponse< CellsCloudResponse > CellsDeleteWorksheetRowsWithHttpInfo (s /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsDeleteWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsDeleteWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsDeleteWorksheetRowsAsyncWithHttpInfo(name, sheetName, startrow, totalRows, updateReference, folder, storage); + ApiResponse localVarResponse = await CellsDeleteWorksheetRowsAsyncWithHttpInfo(name, sheetName, startrow, totalRows, updateReference, folder, storageName); return localVarResponse.Data; } @@ -23556,9 +23536,9 @@ public async System.Threading.Tasks.Task CellsDeleteWorkshee /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsDeleteWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsDeleteWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -23598,7 +23578,7 @@ public async System.Threading.Tasks.Task> CellsD if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (updateReference != null) localVarQueryParams.Add("updateReference", Configuration.ApiClient.ParameterToString(updateReference)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -23627,12 +23607,12 @@ public async System.Threading.Tasks.Task> CellsD /// Worksheet name. /// The cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Object - public Object CellsGetCellHtmlString (string name, string sheetName, string cellName, string folder = null, string storage = null) + public Object CellsGetCellHtmlString (string name, string sheetName, string cellName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsGetCellHtmlStringWithHttpInfo(name, sheetName, cellName, folder, storage); + ApiResponse localVarResponse = CellsGetCellHtmlStringWithHttpInfo(name, sheetName, cellName, folder, storageName); return localVarResponse.Data; } @@ -23644,9 +23624,9 @@ public Object CellsGetCellHtmlString (string name, string sheetName, string cell /// Worksheet name. /// The cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of Object - public ApiResponse< Object > CellsGetCellHtmlStringWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null) + public ApiResponse< Object > CellsGetCellHtmlStringWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -23684,7 +23664,7 @@ public ApiResponse< Object > CellsGetCellHtmlStringWithHttpInfo (string name, st if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -23713,11 +23693,11 @@ public ApiResponse< Object > CellsGetCellHtmlStringWithHttpInfo (string name, st /// Worksheet name. /// The cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of Object - public async System.Threading.Tasks.Task CellsGetCellHtmlStringAsync (string name, string sheetName, string cellName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsGetCellHtmlStringAsync (string name, string sheetName, string cellName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsGetCellHtmlStringAsyncWithHttpInfo(name, sheetName, cellName, folder, storage); + ApiResponse localVarResponse = await CellsGetCellHtmlStringAsyncWithHttpInfo(name, sheetName, cellName, folder, storageName); return localVarResponse.Data; } @@ -23730,9 +23710,9 @@ public async System.Threading.Tasks.Task CellsGetCellHtmlStringAsync (st /// Worksheet name. /// The cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (Object) - public async System.Threading.Tasks.Task> CellsGetCellHtmlStringAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsGetCellHtmlStringAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -23770,7 +23750,7 @@ public async System.Threading.Tasks.Task> CellsGetCellHtmlSt if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -23799,12 +23779,12 @@ public async System.Threading.Tasks.Task> CellsGetCellHtmlSt /// Worksheet name. /// The cell's or method name. (Method name like firstcell, endcell etc.) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Object - public Object CellsGetWorksheetCell (string name, string sheetName, string cellOrMethodName, string folder = null, string storage = null) + public Object CellsGetWorksheetCell (string name, string sheetName, string cellOrMethodName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsGetWorksheetCellWithHttpInfo(name, sheetName, cellOrMethodName, folder, storage); + ApiResponse localVarResponse = CellsGetWorksheetCellWithHttpInfo(name, sheetName, cellOrMethodName, folder, storageName); return localVarResponse.Data; } @@ -23816,9 +23796,9 @@ public Object CellsGetWorksheetCell (string name, string sheetName, string cellO /// Worksheet name. /// The cell's or method name. (Method name like firstcell, endcell etc.) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of Object - public ApiResponse< Object > CellsGetWorksheetCellWithHttpInfo (string name, string sheetName, string cellOrMethodName, string folder = null, string storage = null) + public ApiResponse< Object > CellsGetWorksheetCellWithHttpInfo (string name, string sheetName, string cellOrMethodName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -23856,7 +23836,7 @@ public ApiResponse< Object > CellsGetWorksheetCellWithHttpInfo (string name, str if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellOrMethodName != null) localVarPathParams.Add("cellOrMethodName", Configuration.ApiClient.ParameterToString(cellOrMethodName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -23885,11 +23865,11 @@ public ApiResponse< Object > CellsGetWorksheetCellWithHttpInfo (string name, str /// Worksheet name. /// The cell's or method name. (Method name like firstcell, endcell etc.) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of Object - public async System.Threading.Tasks.Task CellsGetWorksheetCellAsync (string name, string sheetName, string cellOrMethodName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsGetWorksheetCellAsync (string name, string sheetName, string cellOrMethodName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsGetWorksheetCellAsyncWithHttpInfo(name, sheetName, cellOrMethodName, folder, storage); + ApiResponse localVarResponse = await CellsGetWorksheetCellAsyncWithHttpInfo(name, sheetName, cellOrMethodName, folder, storageName); return localVarResponse.Data; } @@ -23902,9 +23882,9 @@ public async System.Threading.Tasks.Task CellsGetWorksheetCellAsync (str /// Worksheet name. /// The cell's or method name. (Method name like firstcell, endcell etc.) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (Object) - public async System.Threading.Tasks.Task> CellsGetWorksheetCellAsyncWithHttpInfo (string name, string sheetName, string cellOrMethodName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsGetWorksheetCellAsyncWithHttpInfo (string name, string sheetName, string cellOrMethodName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -23942,7 +23922,7 @@ public async System.Threading.Tasks.Task> CellsGetWorksheetC if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellOrMethodName != null) localVarPathParams.Add("cellOrMethodName", Configuration.ApiClient.ParameterToString(cellOrMethodName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -23971,12 +23951,12 @@ public async System.Threading.Tasks.Task> CellsGetWorksheetC /// Worksheet name. /// Cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// StyleResponse - public StyleResponse CellsGetWorksheetCellStyle (string name, string sheetName, string cellName, string folder = null, string storage = null) + public StyleResponse CellsGetWorksheetCellStyle (string name, string sheetName, string cellName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsGetWorksheetCellStyleWithHttpInfo(name, sheetName, cellName, folder, storage); + ApiResponse localVarResponse = CellsGetWorksheetCellStyleWithHttpInfo(name, sheetName, cellName, folder, storageName); return localVarResponse.Data; } @@ -23988,9 +23968,9 @@ public StyleResponse CellsGetWorksheetCellStyle (string name, string sheetName, /// Worksheet name. /// Cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of StyleResponse - public ApiResponse< StyleResponse > CellsGetWorksheetCellStyleWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null) + public ApiResponse< StyleResponse > CellsGetWorksheetCellStyleWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24028,7 +24008,7 @@ public ApiResponse< StyleResponse > CellsGetWorksheetCellStyleWithHttpInfo (stri if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24057,11 +24037,11 @@ public ApiResponse< StyleResponse > CellsGetWorksheetCellStyleWithHttpInfo (stri /// Worksheet name. /// Cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of StyleResponse - public async System.Threading.Tasks.Task CellsGetWorksheetCellStyleAsync (string name, string sheetName, string cellName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsGetWorksheetCellStyleAsync (string name, string sheetName, string cellName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsGetWorksheetCellStyleAsyncWithHttpInfo(name, sheetName, cellName, folder, storage); + ApiResponse localVarResponse = await CellsGetWorksheetCellStyleAsyncWithHttpInfo(name, sheetName, cellName, folder, storageName); return localVarResponse.Data; } @@ -24074,9 +24054,9 @@ public async System.Threading.Tasks.Task CellsGetWorksheetCellSty /// Worksheet name. /// Cell's name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (StyleResponse) - public async System.Threading.Tasks.Task> CellsGetWorksheetCellStyleAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsGetWorksheetCellStyleAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24114,7 +24094,7 @@ public async System.Threading.Tasks.Task> CellsGetWor if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24144,12 +24124,12 @@ public async System.Threading.Tasks.Task> CellsGetWor /// Begginig offset. (optional, default to 0) /// Maximum amount of cells in the response. (optional, default to 0) /// Document's folder name. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsResponse - public CellsResponse CellsGetWorksheetCells (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storage = null) + public CellsResponse CellsGetWorksheetCells (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsGetWorksheetCellsWithHttpInfo(name, sheetName, offest, count, folder, storage); + ApiResponse localVarResponse = CellsGetWorksheetCellsWithHttpInfo(name, sheetName, offest, count, folder, storageName); return localVarResponse.Data; } @@ -24162,9 +24142,9 @@ public CellsResponse CellsGetWorksheetCells (string name, string sheetName, int? /// Begginig offset. (optional, default to 0) /// Maximum amount of cells in the response. (optional, default to 0) /// Document's folder name. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsResponse - public ApiResponse< CellsResponse > CellsGetWorksheetCellsWithHttpInfo (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storage = null) + public ApiResponse< CellsResponse > CellsGetWorksheetCellsWithHttpInfo (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24200,7 +24180,7 @@ public ApiResponse< CellsResponse > CellsGetWorksheetCellsWithHttpInfo (string n if (offest != null) localVarQueryParams.Add("offest", Configuration.ApiClient.ParameterToString(offest)); // query parameter if (count != null) localVarQueryParams.Add("count", Configuration.ApiClient.ParameterToString(count)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24230,11 +24210,11 @@ public ApiResponse< CellsResponse > CellsGetWorksheetCellsWithHttpInfo (string n /// Begginig offset. (optional, default to 0) /// Maximum amount of cells in the response. (optional, default to 0) /// Document's folder name. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsResponse - public async System.Threading.Tasks.Task CellsGetWorksheetCellsAsync (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsGetWorksheetCellsAsync (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsGetWorksheetCellsAsyncWithHttpInfo(name, sheetName, offest, count, folder, storage); + ApiResponse localVarResponse = await CellsGetWorksheetCellsAsyncWithHttpInfo(name, sheetName, offest, count, folder, storageName); return localVarResponse.Data; } @@ -24248,9 +24228,9 @@ public async System.Threading.Tasks.Task CellsGetWorksheetCellsAs /// Begginig offset. (optional, default to 0) /// Maximum amount of cells in the response. (optional, default to 0) /// Document's folder name. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsResponse) - public async System.Threading.Tasks.Task> CellsGetWorksheetCellsAsyncWithHttpInfo (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsGetWorksheetCellsAsyncWithHttpInfo (string name, string sheetName, int? offest = null, int? count = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24286,7 +24266,7 @@ public async System.Threading.Tasks.Task> CellsGetWor if (offest != null) localVarQueryParams.Add("offest", Configuration.ApiClient.ParameterToString(offest)); // query parameter if (count != null) localVarQueryParams.Add("count", Configuration.ApiClient.ParameterToString(count)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24315,12 +24295,12 @@ public async System.Threading.Tasks.Task> CellsGetWor /// The worksheet name. /// The column index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ColumnResponse - public ColumnResponse CellsGetWorksheetColumn (string name, string sheetName, int? columnIndex, string folder = null, string storage = null) + public ColumnResponse CellsGetWorksheetColumn (string name, string sheetName, int? columnIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsGetWorksheetColumnWithHttpInfo(name, sheetName, columnIndex, folder, storage); + ApiResponse localVarResponse = CellsGetWorksheetColumnWithHttpInfo(name, sheetName, columnIndex, folder, storageName); return localVarResponse.Data; } @@ -24332,9 +24312,9 @@ public ColumnResponse CellsGetWorksheetColumn (string name, string sheetName, in /// The worksheet name. /// The column index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ColumnResponse - public ApiResponse< ColumnResponse > CellsGetWorksheetColumnWithHttpInfo (string name, string sheetName, int? columnIndex, string folder = null, string storage = null) + public ApiResponse< ColumnResponse > CellsGetWorksheetColumnWithHttpInfo (string name, string sheetName, int? columnIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24372,7 +24352,7 @@ public ApiResponse< ColumnResponse > CellsGetWorksheetColumnWithHttpInfo (string if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (columnIndex != null) localVarPathParams.Add("columnIndex", Configuration.ApiClient.ParameterToString(columnIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24401,11 +24381,11 @@ public ApiResponse< ColumnResponse > CellsGetWorksheetColumnWithHttpInfo (string /// The worksheet name. /// The column index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ColumnResponse - public async System.Threading.Tasks.Task CellsGetWorksheetColumnAsync (string name, string sheetName, int? columnIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsGetWorksheetColumnAsync (string name, string sheetName, int? columnIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsGetWorksheetColumnAsyncWithHttpInfo(name, sheetName, columnIndex, folder, storage); + ApiResponse localVarResponse = await CellsGetWorksheetColumnAsyncWithHttpInfo(name, sheetName, columnIndex, folder, storageName); return localVarResponse.Data; } @@ -24418,9 +24398,9 @@ public async System.Threading.Tasks.Task CellsGetWorksheetColumn /// The worksheet name. /// The column index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ColumnResponse) - public async System.Threading.Tasks.Task> CellsGetWorksheetColumnAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsGetWorksheetColumnAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24458,7 +24438,7 @@ public async System.Threading.Tasks.Task> CellsGetWo if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (columnIndex != null) localVarPathParams.Add("columnIndex", Configuration.ApiClient.ParameterToString(columnIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24486,12 +24466,12 @@ public async System.Threading.Tasks.Task> CellsGetWo /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ColumnsResponse - public ColumnsResponse CellsGetWorksheetColumns (string name, string sheetName, string folder = null, string storage = null) + public ColumnsResponse CellsGetWorksheetColumns (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsGetWorksheetColumnsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsGetWorksheetColumnsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -24502,9 +24482,9 @@ public ColumnsResponse CellsGetWorksheetColumns (string name, string sheetName, /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ColumnsResponse - public ApiResponse< ColumnsResponse > CellsGetWorksheetColumnsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< ColumnsResponse > CellsGetWorksheetColumnsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24538,7 +24518,7 @@ public ApiResponse< ColumnsResponse > CellsGetWorksheetColumnsWithHttpInfo (stri if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24566,11 +24546,11 @@ public ApiResponse< ColumnsResponse > CellsGetWorksheetColumnsWithHttpInfo (stri /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ColumnsResponse - public async System.Threading.Tasks.Task CellsGetWorksheetColumnsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsGetWorksheetColumnsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsGetWorksheetColumnsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsGetWorksheetColumnsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -24582,9 +24562,9 @@ public async System.Threading.Tasks.Task CellsGetWorksheetColum /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ColumnsResponse) - public async System.Threading.Tasks.Task> CellsGetWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsGetWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24618,7 +24598,7 @@ public async System.Threading.Tasks.Task> CellsGetW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24647,12 +24627,12 @@ public async System.Threading.Tasks.Task> CellsGetW /// The worksheet name. /// The row index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RowResponse - public RowResponse CellsGetWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public RowResponse CellsGetWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsGetWorksheetRowWithHttpInfo(name, sheetName, rowIndex, folder, storage); + ApiResponse localVarResponse = CellsGetWorksheetRowWithHttpInfo(name, sheetName, rowIndex, folder, storageName); return localVarResponse.Data; } @@ -24664,9 +24644,9 @@ public RowResponse CellsGetWorksheetRow (string name, string sheetName, int? row /// The worksheet name. /// The row index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RowResponse - public ApiResponse< RowResponse > CellsGetWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public ApiResponse< RowResponse > CellsGetWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24704,7 +24684,7 @@ public ApiResponse< RowResponse > CellsGetWorksheetRowWithHttpInfo (string name, if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (rowIndex != null) localVarPathParams.Add("rowIndex", Configuration.ApiClient.ParameterToString(rowIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24733,11 +24713,11 @@ public ApiResponse< RowResponse > CellsGetWorksheetRowWithHttpInfo (string name, /// The worksheet name. /// The row index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RowResponse - public async System.Threading.Tasks.Task CellsGetWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsGetWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsGetWorksheetRowAsyncWithHttpInfo(name, sheetName, rowIndex, folder, storage); + ApiResponse localVarResponse = await CellsGetWorksheetRowAsyncWithHttpInfo(name, sheetName, rowIndex, folder, storageName); return localVarResponse.Data; } @@ -24750,9 +24730,9 @@ public async System.Threading.Tasks.Task CellsGetWorksheetRowAsync /// The worksheet name. /// The row index. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RowResponse) - public async System.Threading.Tasks.Task> CellsGetWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsGetWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24790,7 +24770,7 @@ public async System.Threading.Tasks.Task> CellsGetWorks if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (rowIndex != null) localVarPathParams.Add("rowIndex", Configuration.ApiClient.ParameterToString(rowIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24818,12 +24798,12 @@ public async System.Threading.Tasks.Task> CellsGetWorks /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RowsResponse - public RowsResponse CellsGetWorksheetRows (string name, string sheetName, string folder = null, string storage = null) + public RowsResponse CellsGetWorksheetRows (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsGetWorksheetRowsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsGetWorksheetRowsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -24834,9 +24814,9 @@ public RowsResponse CellsGetWorksheetRows (string name, string sheetName, string /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RowsResponse - public ApiResponse< RowsResponse > CellsGetWorksheetRowsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< RowsResponse > CellsGetWorksheetRowsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24870,7 +24850,7 @@ public ApiResponse< RowsResponse > CellsGetWorksheetRowsWithHttpInfo (string nam if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24898,11 +24878,11 @@ public ApiResponse< RowsResponse > CellsGetWorksheetRowsWithHttpInfo (string nam /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RowsResponse - public async System.Threading.Tasks.Task CellsGetWorksheetRowsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsGetWorksheetRowsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsGetWorksheetRowsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsGetWorksheetRowsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -24914,9 +24894,9 @@ public async System.Threading.Tasks.Task CellsGetWorksheetRowsAsyn /// The workbook name. /// The worksheet name. /// The workdook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RowsResponse) - public async System.Threading.Tasks.Task> CellsGetWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsGetWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -24950,7 +24930,7 @@ public async System.Threading.Tasks.Task> CellsGetWork if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -24979,12 +24959,12 @@ public async System.Threading.Tasks.Task> CellsGetWork /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsHypelinksDeleteWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsHypelinksDeleteWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsHypelinksDeleteWorksheetHyperlinkWithHttpInfo(name, sheetName, hyperlinkIndex, folder, storage); + ApiResponse localVarResponse = CellsHypelinksDeleteWorksheetHyperlinkWithHttpInfo(name, sheetName, hyperlinkIndex, folder, storageName); return localVarResponse.Data; } @@ -24996,9 +24976,9 @@ public CellsCloudResponse CellsHypelinksDeleteWorksheetHyperlink (string name, s /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsHypelinksDeleteWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsHypelinksDeleteWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -25036,7 +25016,7 @@ public ApiResponse< CellsCloudResponse > CellsHypelinksDeleteWorksheetHyperlinkW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (hyperlinkIndex != null) localVarPathParams.Add("hyperlinkIndex", Configuration.ApiClient.ParameterToString(hyperlinkIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -25065,11 +25045,11 @@ public ApiResponse< CellsCloudResponse > CellsHypelinksDeleteWorksheetHyperlinkW /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsHypelinksDeleteWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsHypelinksDeleteWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsHypelinksDeleteWorksheetHyperlinkAsyncWithHttpInfo(name, sheetName, hyperlinkIndex, folder, storage); + ApiResponse localVarResponse = await CellsHypelinksDeleteWorksheetHyperlinkAsyncWithHttpInfo(name, sheetName, hyperlinkIndex, folder, storageName); return localVarResponse.Data; } @@ -25082,9 +25062,9 @@ public async System.Threading.Tasks.Task CellsHypelinksDelet /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsHypelinksDeleteWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsHypelinksDeleteWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -25122,7 +25102,7 @@ public async System.Threading.Tasks.Task> CellsH if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (hyperlinkIndex != null) localVarPathParams.Add("hyperlinkIndex", Configuration.ApiClient.ParameterToString(hyperlinkIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -25150,12 +25130,12 @@ public async System.Threading.Tasks.Task> CellsH /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsHypelinksDeleteWorksheetHyperlinks (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsHypelinksDeleteWorksheetHyperlinks (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsHypelinksDeleteWorksheetHyperlinksWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsHypelinksDeleteWorksheetHyperlinksWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -25166,9 +25146,9 @@ public CellsCloudResponse CellsHypelinksDeleteWorksheetHyperlinks (string name, /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsHypelinksDeleteWorksheetHyperlinksWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsHypelinksDeleteWorksheetHyperlinksWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -25202,7 +25182,7 @@ public ApiResponse< CellsCloudResponse > CellsHypelinksDeleteWorksheetHyperlinks if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -25230,11 +25210,11 @@ public ApiResponse< CellsCloudResponse > CellsHypelinksDeleteWorksheetHyperlinks /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsHypelinksDeleteWorksheetHyperlinksAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsHypelinksDeleteWorksheetHyperlinksAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsHypelinksDeleteWorksheetHyperlinksAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsHypelinksDeleteWorksheetHyperlinksAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -25246,9 +25226,9 @@ public async System.Threading.Tasks.Task CellsHypelinksDelet /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsHypelinksDeleteWorksheetHyperlinksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsHypelinksDeleteWorksheetHyperlinksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -25282,7 +25262,7 @@ public async System.Threading.Tasks.Task> CellsH if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -25311,12 +25291,12 @@ public async System.Threading.Tasks.Task> CellsH /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// HyperlinkResponse - public HyperlinkResponse CellsHypelinksGetWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null) + public HyperlinkResponse CellsHypelinksGetWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsHypelinksGetWorksheetHyperlinkWithHttpInfo(name, sheetName, hyperlinkIndex, folder, storage); + ApiResponse localVarResponse = CellsHypelinksGetWorksheetHyperlinkWithHttpInfo(name, sheetName, hyperlinkIndex, folder, storageName); return localVarResponse.Data; } @@ -25328,9 +25308,9 @@ public HyperlinkResponse CellsHypelinksGetWorksheetHyperlink (string name, strin /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HyperlinkResponse - public ApiResponse< HyperlinkResponse > CellsHypelinksGetWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null) + public ApiResponse< HyperlinkResponse > CellsHypelinksGetWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -25368,7 +25348,7 @@ public ApiResponse< HyperlinkResponse > CellsHypelinksGetWorksheetHyperlinkWithH if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (hyperlinkIndex != null) localVarPathParams.Add("hyperlinkIndex", Configuration.ApiClient.ParameterToString(hyperlinkIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -25397,11 +25377,11 @@ public ApiResponse< HyperlinkResponse > CellsHypelinksGetWorksheetHyperlinkWithH /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HyperlinkResponse - public async System.Threading.Tasks.Task CellsHypelinksGetWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsHypelinksGetWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsHypelinksGetWorksheetHyperlinkAsyncWithHttpInfo(name, sheetName, hyperlinkIndex, folder, storage); + ApiResponse localVarResponse = await CellsHypelinksGetWorksheetHyperlinkAsyncWithHttpInfo(name, sheetName, hyperlinkIndex, folder, storageName); return localVarResponse.Data; } @@ -25414,9 +25394,9 @@ public async System.Threading.Tasks.Task CellsHypelinksGetWor /// Worksheet name. /// The hyperlink's index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HyperlinkResponse) - public async System.Threading.Tasks.Task> CellsHypelinksGetWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsHypelinksGetWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -25454,7 +25434,7 @@ public async System.Threading.Tasks.Task> CellsHy if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (hyperlinkIndex != null) localVarPathParams.Add("hyperlinkIndex", Configuration.ApiClient.ParameterToString(hyperlinkIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -25482,12 +25462,12 @@ public async System.Threading.Tasks.Task> CellsHy /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// HyperlinksResponse - public HyperlinksResponse CellsHypelinksGetWorksheetHyperlinks (string name, string sheetName, string folder = null, string storage = null) + public HyperlinksResponse CellsHypelinksGetWorksheetHyperlinks (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsHypelinksGetWorksheetHyperlinksWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsHypelinksGetWorksheetHyperlinksWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -25498,9 +25478,9 @@ public HyperlinksResponse CellsHypelinksGetWorksheetHyperlinks (string name, str /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HyperlinksResponse - public ApiResponse< HyperlinksResponse > CellsHypelinksGetWorksheetHyperlinksWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< HyperlinksResponse > CellsHypelinksGetWorksheetHyperlinksWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -25534,7 +25514,7 @@ public ApiResponse< HyperlinksResponse > CellsHypelinksGetWorksheetHyperlinksWit if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -25562,11 +25542,11 @@ public ApiResponse< HyperlinksResponse > CellsHypelinksGetWorksheetHyperlinksWit /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HyperlinksResponse - public async System.Threading.Tasks.Task CellsHypelinksGetWorksheetHyperlinksAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsHypelinksGetWorksheetHyperlinksAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsHypelinksGetWorksheetHyperlinksAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsHypelinksGetWorksheetHyperlinksAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -25578,9 +25558,9 @@ public async System.Threading.Tasks.Task CellsHypelinksGetWo /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HyperlinksResponse) - public async System.Threading.Tasks.Task> CellsHypelinksGetWorksheetHyperlinksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsHypelinksGetWorksheetHyperlinksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -25614,7 +25594,7 @@ public async System.Threading.Tasks.Task> CellsH if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -25644,12 +25624,12 @@ public async System.Threading.Tasks.Task> CellsH /// The hyperlink's index. /// Hyperlink object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// HyperlinkResponse - public HyperlinkResponse CellsHypelinksPostWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storage = null) + public HyperlinkResponse CellsHypelinksPostWorksheetHyperlink (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsHypelinksPostWorksheetHyperlinkWithHttpInfo(name, sheetName, hyperlinkIndex, hyperlink, folder, storage); + ApiResponse localVarResponse = CellsHypelinksPostWorksheetHyperlinkWithHttpInfo(name, sheetName, hyperlinkIndex, hyperlink, folder, storageName); return localVarResponse.Data; } @@ -25662,9 +25642,9 @@ public HyperlinkResponse CellsHypelinksPostWorksheetHyperlink (string name, stri /// The hyperlink's index. /// Hyperlink object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HyperlinkResponse - public ApiResponse< HyperlinkResponse > CellsHypelinksPostWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storage = null) + public ApiResponse< HyperlinkResponse > CellsHypelinksPostWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -25702,7 +25682,7 @@ public ApiResponse< HyperlinkResponse > CellsHypelinksPostWorksheetHyperlinkWith if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (hyperlinkIndex != null) localVarPathParams.Add("hyperlinkIndex", Configuration.ApiClient.ParameterToString(hyperlinkIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (hyperlink != null && hyperlink.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(hyperlink); // http body (model) parameter @@ -25710,10 +25690,6 @@ public ApiResponse< HyperlinkResponse > CellsHypelinksPostWorksheetHyperlinkWith else { localVarPostBody = hyperlink; // byte array - if ( "CellsHypelinksPostWorksheetHyperlink" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -25744,11 +25720,11 @@ public ApiResponse< HyperlinkResponse > CellsHypelinksPostWorksheetHyperlinkWith /// The hyperlink's index. /// Hyperlink object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HyperlinkResponse - public async System.Threading.Tasks.Task CellsHypelinksPostWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsHypelinksPostWorksheetHyperlinkAsync (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsHypelinksPostWorksheetHyperlinkAsyncWithHttpInfo(name, sheetName, hyperlinkIndex, hyperlink, folder, storage); + ApiResponse localVarResponse = await CellsHypelinksPostWorksheetHyperlinkAsyncWithHttpInfo(name, sheetName, hyperlinkIndex, hyperlink, folder, storageName); return localVarResponse.Data; } @@ -25762,9 +25738,9 @@ public async System.Threading.Tasks.Task CellsHypelinksPostWo /// The hyperlink's index. /// Hyperlink object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HyperlinkResponse) - public async System.Threading.Tasks.Task> CellsHypelinksPostWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsHypelinksPostWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? hyperlinkIndex, Hyperlink hyperlink = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -25802,7 +25778,7 @@ public async System.Threading.Tasks.Task> CellsHy if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (hyperlinkIndex != null) localVarPathParams.Add("hyperlinkIndex", Configuration.ApiClient.ParameterToString(hyperlinkIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (hyperlink != null && hyperlink.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(hyperlink); // http body (model) parameter @@ -25843,12 +25819,12 @@ public async System.Threading.Tasks.Task> CellsHy /// /// /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// HyperlinkResponse - public HyperlinkResponse CellsHypelinksPutWorksheetHyperlink (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storage = null) + public HyperlinkResponse CellsHypelinksPutWorksheetHyperlink (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsHypelinksPutWorksheetHyperlinkWithHttpInfo(name, sheetName, firstRow, firstColumn, totalRows, totalColumns, address, folder, storage); + ApiResponse localVarResponse = CellsHypelinksPutWorksheetHyperlinkWithHttpInfo(name, sheetName, firstRow, firstColumn, totalRows, totalColumns, address, folder, storageName); return localVarResponse.Data; } @@ -25864,9 +25840,9 @@ public HyperlinkResponse CellsHypelinksPutWorksheetHyperlink (string name, strin /// /// /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HyperlinkResponse - public ApiResponse< HyperlinkResponse > CellsHypelinksPutWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storage = null) + public ApiResponse< HyperlinkResponse > CellsHypelinksPutWorksheetHyperlinkWithHttpInfo (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -25920,7 +25896,7 @@ public ApiResponse< HyperlinkResponse > CellsHypelinksPutWorksheetHyperlinkWithH if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (address != null) localVarQueryParams.Add("address", Configuration.ApiClient.ParameterToString(address)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -25953,11 +25929,11 @@ public ApiResponse< HyperlinkResponse > CellsHypelinksPutWorksheetHyperlinkWithH /// /// /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HyperlinkResponse - public async System.Threading.Tasks.Task CellsHypelinksPutWorksheetHyperlinkAsync (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsHypelinksPutWorksheetHyperlinkAsync (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsHypelinksPutWorksheetHyperlinkAsyncWithHttpInfo(name, sheetName, firstRow, firstColumn, totalRows, totalColumns, address, folder, storage); + ApiResponse localVarResponse = await CellsHypelinksPutWorksheetHyperlinkAsyncWithHttpInfo(name, sheetName, firstRow, firstColumn, totalRows, totalColumns, address, folder, storageName); return localVarResponse.Data; } @@ -25974,9 +25950,9 @@ public async System.Threading.Tasks.Task CellsHypelinksPutWor /// /// /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HyperlinkResponse) - public async System.Threading.Tasks.Task> CellsHypelinksPutWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsHypelinksPutWorksheetHyperlinkAsyncWithHttpInfo (string name, string sheetName, int? firstRow, int? firstColumn, int? totalRows, int? totalColumns, string address, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26030,7 +26006,7 @@ public async System.Threading.Tasks.Task> CellsHy if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (address != null) localVarQueryParams.Add("address", Configuration.ApiClient.ParameterToString(address)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -26059,12 +26035,12 @@ public async System.Threading.Tasks.Task> CellsHy /// The worksheet name. /// List object index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsListObjectsDeleteWorksheetListObject (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsListObjectsDeleteWorksheetListObject (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsListObjectsDeleteWorksheetListObjectWithHttpInfo(name, sheetName, listObjectIndex, folder, storage); + ApiResponse localVarResponse = CellsListObjectsDeleteWorksheetListObjectWithHttpInfo(name, sheetName, listObjectIndex, folder, storageName); return localVarResponse.Data; } @@ -26076,9 +26052,9 @@ public CellsCloudResponse CellsListObjectsDeleteWorksheetListObject (string name /// The worksheet name. /// List object index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsListObjectsDeleteWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsListObjectsDeleteWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26116,7 +26092,7 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsDeleteWorksheetListObje if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (listObjectIndex != null) localVarPathParams.Add("listObjectIndex", Configuration.ApiClient.ParameterToString(listObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -26145,11 +26121,11 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsDeleteWorksheetListObje /// The worksheet name. /// List object index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsListObjectsDeleteWorksheetListObjectAsync (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsListObjectsDeleteWorksheetListObjectAsync (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsListObjectsDeleteWorksheetListObjectAsyncWithHttpInfo(name, sheetName, listObjectIndex, folder, storage); + ApiResponse localVarResponse = await CellsListObjectsDeleteWorksheetListObjectAsyncWithHttpInfo(name, sheetName, listObjectIndex, folder, storageName); return localVarResponse.Data; } @@ -26162,9 +26138,9 @@ public async System.Threading.Tasks.Task CellsListObjectsDel /// The worksheet name. /// List object index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsListObjectsDeleteWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsListObjectsDeleteWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26202,7 +26178,7 @@ public async System.Threading.Tasks.Task> CellsL if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (listObjectIndex != null) localVarPathParams.Add("listObjectIndex", Configuration.ApiClient.ParameterToString(listObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -26230,12 +26206,12 @@ public async System.Threading.Tasks.Task> CellsL /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsListObjectsDeleteWorksheetListObjects (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsListObjectsDeleteWorksheetListObjects (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsListObjectsDeleteWorksheetListObjectsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsListObjectsDeleteWorksheetListObjectsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -26246,9 +26222,9 @@ public CellsCloudResponse CellsListObjectsDeleteWorksheetListObjects (string nam /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsListObjectsDeleteWorksheetListObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsListObjectsDeleteWorksheetListObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26282,7 +26258,7 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsDeleteWorksheetListObje if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -26310,11 +26286,11 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsDeleteWorksheetListObje /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsListObjectsDeleteWorksheetListObjectsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsListObjectsDeleteWorksheetListObjectsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsListObjectsDeleteWorksheetListObjectsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsListObjectsDeleteWorksheetListObjectsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -26326,9 +26302,9 @@ public async System.Threading.Tasks.Task CellsListObjectsDel /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsListObjectsDeleteWorksheetListObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsListObjectsDeleteWorksheetListObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26362,7 +26338,7 @@ public async System.Threading.Tasks.Task> CellsL if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -26391,12 +26367,12 @@ public async System.Threading.Tasks.Task> CellsL /// The worksheet name. /// list object index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ListObjectResponse - public ListObjectResponse CellsListObjectsGetWorksheetListObject (string name, string sheetName, int? listobjectindex, string folder = null, string storage = null) + public ListObjectResponse CellsListObjectsGetWorksheetListObject (string name, string sheetName, int? listobjectindex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsListObjectsGetWorksheetListObjectWithHttpInfo(name, sheetName, listobjectindex, folder, storage); + ApiResponse localVarResponse = CellsListObjectsGetWorksheetListObjectWithHttpInfo(name, sheetName, listobjectindex, folder, storageName); return localVarResponse.Data; } @@ -26408,9 +26384,9 @@ public ListObjectResponse CellsListObjectsGetWorksheetListObject (string name, s /// The worksheet name. /// list object index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ListObjectResponse - public ApiResponse< ListObjectResponse > CellsListObjectsGetWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listobjectindex, string folder = null, string storage = null) + public ApiResponse< ListObjectResponse > CellsListObjectsGetWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listobjectindex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26448,7 +26424,7 @@ public ApiResponse< ListObjectResponse > CellsListObjectsGetWorksheetListObjectW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (listobjectindex != null) localVarPathParams.Add("listobjectindex", Configuration.ApiClient.ParameterToString(listobjectindex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -26477,11 +26453,11 @@ public ApiResponse< ListObjectResponse > CellsListObjectsGetWorksheetListObjectW /// The worksheet name. /// list object index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ListObjectResponse - public async System.Threading.Tasks.Task CellsListObjectsGetWorksheetListObjectAsync (string name, string sheetName, int? listobjectindex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsListObjectsGetWorksheetListObjectAsync (string name, string sheetName, int? listobjectindex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsListObjectsGetWorksheetListObjectAsyncWithHttpInfo(name, sheetName, listobjectindex, folder, storage); + ApiResponse localVarResponse = await CellsListObjectsGetWorksheetListObjectAsyncWithHttpInfo(name, sheetName, listobjectindex, folder, storageName); return localVarResponse.Data; } @@ -26494,9 +26470,9 @@ public async System.Threading.Tasks.Task CellsListObjectsGet /// The worksheet name. /// list object index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ListObjectResponse) - public async System.Threading.Tasks.Task> CellsListObjectsGetWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listobjectindex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsListObjectsGetWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listobjectindex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26534,7 +26510,7 @@ public async System.Threading.Tasks.Task> CellsL if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (listobjectindex != null) localVarPathParams.Add("listobjectindex", Configuration.ApiClient.ParameterToString(listobjectindex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -26562,12 +26538,12 @@ public async System.Threading.Tasks.Task> CellsL /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ListObjectsResponse - public ListObjectsResponse CellsListObjectsGetWorksheetListObjects (string name, string sheetName, string folder = null, string storage = null) + public ListObjectsResponse CellsListObjectsGetWorksheetListObjects (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsListObjectsGetWorksheetListObjectsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsListObjectsGetWorksheetListObjectsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -26578,9 +26554,9 @@ public ListObjectsResponse CellsListObjectsGetWorksheetListObjects (string name, /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ListObjectsResponse - public ApiResponse< ListObjectsResponse > CellsListObjectsGetWorksheetListObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< ListObjectsResponse > CellsListObjectsGetWorksheetListObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26614,7 +26590,7 @@ public ApiResponse< ListObjectsResponse > CellsListObjectsGetWorksheetListObject if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -26642,11 +26618,11 @@ public ApiResponse< ListObjectsResponse > CellsListObjectsGetWorksheetListObject /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ListObjectsResponse - public async System.Threading.Tasks.Task CellsListObjectsGetWorksheetListObjectsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsListObjectsGetWorksheetListObjectsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsListObjectsGetWorksheetListObjectsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsListObjectsGetWorksheetListObjectsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -26658,9 +26634,9 @@ public async System.Threading.Tasks.Task CellsListObjectsGe /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ListObjectsResponse) - public async System.Threading.Tasks.Task> CellsListObjectsGetWorksheetListObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsListObjectsGetWorksheetListObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26694,7 +26670,7 @@ public async System.Threading.Tasks.Task> Cells if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -26724,12 +26700,12 @@ public async System.Threading.Tasks.Task> Cells /// list Object index /// listObject dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsListObjectsPostWorksheetListObject (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storage = null) + public CellsCloudResponse CellsListObjectsPostWorksheetListObject (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsListObjectsPostWorksheetListObjectWithHttpInfo(name, sheetName, listObjectIndex, listObject, folder, storage); + ApiResponse localVarResponse = CellsListObjectsPostWorksheetListObjectWithHttpInfo(name, sheetName, listObjectIndex, listObject, folder, storageName); return localVarResponse.Data; } @@ -26742,9 +26718,9 @@ public CellsCloudResponse CellsListObjectsPostWorksheetListObject (string name, /// list Object index /// listObject dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObjectWithHttpInfo (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26782,7 +26758,7 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObject if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (listObjectIndex != null) localVarPathParams.Add("listObjectIndex", Configuration.ApiClient.ParameterToString(listObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (listObject != null && listObject.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(listObject); // http body (model) parameter @@ -26790,10 +26766,6 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObject else { localVarPostBody = listObject; // byte array - if ( "CellsListObjectsPostWorksheetListObject" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -26824,11 +26796,11 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObject /// list Object index /// listObject dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectAsync (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectAsync (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsListObjectsPostWorksheetListObjectAsyncWithHttpInfo(name, sheetName, listObjectIndex, listObject, folder, storage); + ApiResponse localVarResponse = await CellsListObjectsPostWorksheetListObjectAsyncWithHttpInfo(name, sheetName, listObjectIndex, listObject, folder, storageName); return localVarResponse.Data; } @@ -26842,9 +26814,9 @@ public async System.Threading.Tasks.Task CellsListObjectsPos /// list Object index /// listObject dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, ListObject listObject = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26882,7 +26854,7 @@ public async System.Threading.Tasks.Task> CellsL if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (listObjectIndex != null) localVarPathParams.Add("listObjectIndex", Configuration.ApiClient.ParameterToString(listObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (listObject != null && listObject.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(listObject); // http body (model) parameter @@ -26919,12 +26891,12 @@ public async System.Threading.Tasks.Task> CellsL /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsListObjectsPostWorksheetListObjectConvertToRange (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsListObjectsPostWorksheetListObjectConvertToRange (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsListObjectsPostWorksheetListObjectConvertToRangeWithHttpInfo(name, sheetName, listObjectIndex, folder, storage); + ApiResponse localVarResponse = CellsListObjectsPostWorksheetListObjectConvertToRangeWithHttpInfo(name, sheetName, listObjectIndex, folder, storageName); return localVarResponse.Data; } @@ -26936,9 +26908,9 @@ public CellsCloudResponse CellsListObjectsPostWorksheetListObjectConvertToRange /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObjectConvertToRangeWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObjectConvertToRangeWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -26976,7 +26948,7 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObject if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (listObjectIndex != null) localVarPathParams.Add("listObjectIndex", Configuration.ApiClient.ParameterToString(listObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -27005,11 +26977,11 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObject /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectConvertToRangeAsync (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectConvertToRangeAsync (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsListObjectsPostWorksheetListObjectConvertToRangeAsyncWithHttpInfo(name, sheetName, listObjectIndex, folder, storage); + ApiResponse localVarResponse = await CellsListObjectsPostWorksheetListObjectConvertToRangeAsyncWithHttpInfo(name, sheetName, listObjectIndex, folder, storageName); return localVarResponse.Data; } @@ -27022,9 +26994,9 @@ public async System.Threading.Tasks.Task CellsListObjectsPos /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectConvertToRangeAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectConvertToRangeAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -27062,7 +27034,7 @@ public async System.Threading.Tasks.Task> CellsL if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (listObjectIndex != null) localVarPathParams.Add("listObjectIndex", Configuration.ApiClient.ParameterToString(listObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -27092,12 +27064,12 @@ public async System.Threading.Tasks.Task> CellsL /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsListObjectsPostWorksheetListObjectSortTable (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storage = null) + public CellsCloudResponse CellsListObjectsPostWorksheetListObjectSortTable (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsListObjectsPostWorksheetListObjectSortTableWithHttpInfo(name, sheetName, listObjectIndex, dataSorter, folder, storage); + ApiResponse localVarResponse = CellsListObjectsPostWorksheetListObjectSortTableWithHttpInfo(name, sheetName, listObjectIndex, dataSorter, folder, storageName); return localVarResponse.Data; } @@ -27110,9 +27082,9 @@ public CellsCloudResponse CellsListObjectsPostWorksheetListObjectSortTable (stri /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObjectSortTableWithHttpInfo (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObjectSortTableWithHttpInfo (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -27150,7 +27122,7 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObject if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (listObjectIndex != null) localVarPathParams.Add("listObjectIndex", Configuration.ApiClient.ParameterToString(listObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (dataSorter != null && dataSorter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(dataSorter); // http body (model) parameter @@ -27158,10 +27130,6 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObject else { localVarPostBody = dataSorter; // byte array - if ( "CellsListObjectsPostWorksheetListObjectSortTable" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -27192,11 +27160,11 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObject /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectSortTableAsync (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectSortTableAsync (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsListObjectsPostWorksheetListObjectSortTableAsyncWithHttpInfo(name, sheetName, listObjectIndex, dataSorter, folder, storage); + ApiResponse localVarResponse = await CellsListObjectsPostWorksheetListObjectSortTableAsyncWithHttpInfo(name, sheetName, listObjectIndex, dataSorter, folder, storageName); return localVarResponse.Data; } @@ -27210,9 +27178,9 @@ public async System.Threading.Tasks.Task CellsListObjectsPos /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectSortTableAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectSortTableAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, DataSorter dataSorter = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -27250,7 +27218,7 @@ public async System.Threading.Tasks.Task> CellsL if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (listObjectIndex != null) localVarPathParams.Add("listObjectIndex", Configuration.ApiClient.ParameterToString(listObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (dataSorter != null && dataSorter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(dataSorter); // http body (model) parameter @@ -27289,12 +27257,12 @@ public async System.Threading.Tasks.Task> CellsL /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTable (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null) + public CellsCloudResponse CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTable (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableWithHttpInfo(name, sheetName, listObjectIndex, destsheetName, request, folder, storage); + ApiResponse localVarResponse = CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableWithHttpInfo(name, sheetName, listObjectIndex, destsheetName, request, folder, storageName); return localVarResponse.Data; } @@ -27308,9 +27276,9 @@ public CellsCloudResponse CellsListObjectsPostWorksheetListObjectSummarizeWithPi /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableWithHttpInfo (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableWithHttpInfo (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -27352,7 +27320,7 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObject if (listObjectIndex != null) localVarPathParams.Add("listObjectIndex", Configuration.ApiClient.ParameterToString(listObjectIndex)); // path parameter if (destsheetName != null) localVarQueryParams.Add("destsheetName", Configuration.ApiClient.ParameterToString(destsheetName)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (request != null && request.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(request); // http body (model) parameter @@ -27360,10 +27328,6 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObject else { localVarPostBody = request; // byte array - if ( "CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTable" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -27395,11 +27359,11 @@ public ApiResponse< CellsCloudResponse > CellsListObjectsPostWorksheetListObject /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableAsync (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableAsync (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableAsyncWithHttpInfo(name, sheetName, listObjectIndex, destsheetName, request, folder, storage); + ApiResponse localVarResponse = await CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableAsyncWithHttpInfo(name, sheetName, listObjectIndex, destsheetName, request, folder, storageName); return localVarResponse.Data; } @@ -27414,9 +27378,9 @@ public async System.Threading.Tasks.Task CellsListObjectsPos /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableAsyncWithHttpInfo (string name, string sheetName, int? listObjectIndex, string destsheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -27458,7 +27422,7 @@ public async System.Threading.Tasks.Task> CellsL if (listObjectIndex != null) localVarPathParams.Add("listObjectIndex", Configuration.ApiClient.ParameterToString(listObjectIndex)); // path parameter if (destsheetName != null) localVarQueryParams.Add("destsheetName", Configuration.ApiClient.ParameterToString(destsheetName)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (request != null && request.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(request); // http body (model) parameter @@ -27500,12 +27464,12 @@ public async System.Threading.Tasks.Task> CellsL /// Whether the range has headers. (optional, default to true) /// List Object (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ListObjectResponse - public ListObjectResponse CellsListObjectsPutWorksheetListObject (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storage = null) + public ListObjectResponse CellsListObjectsPutWorksheetListObject (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsListObjectsPutWorksheetListObjectWithHttpInfo(name, sheetName, startRow, startColumn, endRow, endColumn, hasHeaders, listObject, folder, storage); + ApiResponse localVarResponse = CellsListObjectsPutWorksheetListObjectWithHttpInfo(name, sheetName, startRow, startColumn, endRow, endColumn, hasHeaders, listObject, folder, storageName); return localVarResponse.Data; } @@ -27522,9 +27486,9 @@ public ListObjectResponse CellsListObjectsPutWorksheetListObject (string name, s /// Whether the range has headers. (optional, default to true) /// List Object (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ListObjectResponse - public ApiResponse< ListObjectResponse > CellsListObjectsPutWorksheetListObjectWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storage = null) + public ApiResponse< ListObjectResponse > CellsListObjectsPutWorksheetListObjectWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -27575,7 +27539,7 @@ public ApiResponse< ListObjectResponse > CellsListObjectsPutWorksheetListObjectW if (endColumn != null) localVarQueryParams.Add("endColumn", Configuration.ApiClient.ParameterToString(endColumn)); // query parameter if (hasHeaders != null) localVarQueryParams.Add("hasHeaders", Configuration.ApiClient.ParameterToString(hasHeaders)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (listObject != null && listObject.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(listObject); // http body (model) parameter @@ -27583,10 +27547,6 @@ public ApiResponse< ListObjectResponse > CellsListObjectsPutWorksheetListObjectW else { localVarPostBody = listObject; // byte array - if ( "CellsListObjectsPutWorksheetListObject" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -27621,11 +27581,11 @@ public ApiResponse< ListObjectResponse > CellsListObjectsPutWorksheetListObjectW /// Whether the range has headers. (optional, default to true) /// List Object (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ListObjectResponse - public async System.Threading.Tasks.Task CellsListObjectsPutWorksheetListObjectAsync (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsListObjectsPutWorksheetListObjectAsync (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsListObjectsPutWorksheetListObjectAsyncWithHttpInfo(name, sheetName, startRow, startColumn, endRow, endColumn, hasHeaders, listObject, folder, storage); + ApiResponse localVarResponse = await CellsListObjectsPutWorksheetListObjectAsyncWithHttpInfo(name, sheetName, startRow, startColumn, endRow, endColumn, hasHeaders, listObject, folder, storageName); return localVarResponse.Data; } @@ -27643,9 +27603,9 @@ public async System.Threading.Tasks.Task CellsListObjectsPut /// Whether the range has headers. (optional, default to true) /// List Object (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ListObjectResponse) - public async System.Threading.Tasks.Task> CellsListObjectsPutWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsListObjectsPutWorksheetListObjectAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? endRow, int? endColumn, bool? hasHeaders = null, ListObject listObject = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -27696,7 +27656,7 @@ public async System.Threading.Tasks.Task> CellsL if (endColumn != null) localVarQueryParams.Add("endColumn", Configuration.ApiClient.ParameterToString(endColumn)); // query parameter if (hasHeaders != null) localVarQueryParams.Add("hasHeaders", Configuration.ApiClient.ParameterToString(hasHeaders)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (listObject != null && listObject.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(listObject); // http body (model) parameter @@ -27733,12 +27693,12 @@ public async System.Threading.Tasks.Task> CellsL /// The worsheet name. /// Ole object index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsOleObjectsDeleteWorksheetOleObject (string name, string sheetName, int? oleObjectIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsOleObjectsDeleteWorksheetOleObject (string name, string sheetName, int? oleObjectIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsOleObjectsDeleteWorksheetOleObjectWithHttpInfo(name, sheetName, oleObjectIndex, folder, storage); + ApiResponse localVarResponse = CellsOleObjectsDeleteWorksheetOleObjectWithHttpInfo(name, sheetName, oleObjectIndex, folder, storageName); return localVarResponse.Data; } @@ -27750,9 +27710,9 @@ public CellsCloudResponse CellsOleObjectsDeleteWorksheetOleObject (string name, /// The worsheet name. /// Ole object index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsOleObjectsDeleteWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? oleObjectIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsOleObjectsDeleteWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? oleObjectIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -27790,7 +27750,7 @@ public ApiResponse< CellsCloudResponse > CellsOleObjectsDeleteWorksheetOleObject if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (oleObjectIndex != null) localVarPathParams.Add("oleObjectIndex", Configuration.ApiClient.ParameterToString(oleObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -27819,11 +27779,11 @@ public ApiResponse< CellsCloudResponse > CellsOleObjectsDeleteWorksheetOleObject /// The worsheet name. /// Ole object index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsOleObjectsDeleteWorksheetOleObjectAsync (string name, string sheetName, int? oleObjectIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsOleObjectsDeleteWorksheetOleObjectAsync (string name, string sheetName, int? oleObjectIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsOleObjectsDeleteWorksheetOleObjectAsyncWithHttpInfo(name, sheetName, oleObjectIndex, folder, storage); + ApiResponse localVarResponse = await CellsOleObjectsDeleteWorksheetOleObjectAsyncWithHttpInfo(name, sheetName, oleObjectIndex, folder, storageName); return localVarResponse.Data; } @@ -27836,9 +27796,9 @@ public async System.Threading.Tasks.Task CellsOleObjectsDele /// The worsheet name. /// Ole object index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsOleObjectsDeleteWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? oleObjectIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsOleObjectsDeleteWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? oleObjectIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -27876,7 +27836,7 @@ public async System.Threading.Tasks.Task> CellsO if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (oleObjectIndex != null) localVarPathParams.Add("oleObjectIndex", Configuration.ApiClient.ParameterToString(oleObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -27904,12 +27864,12 @@ public async System.Threading.Tasks.Task> CellsO /// The workbook name. /// The worsheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsOleObjectsDeleteWorksheetOleObjects (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsOleObjectsDeleteWorksheetOleObjects (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsOleObjectsDeleteWorksheetOleObjectsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsOleObjectsDeleteWorksheetOleObjectsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -27920,9 +27880,9 @@ public CellsCloudResponse CellsOleObjectsDeleteWorksheetOleObjects (string name, /// The workbook name. /// The worsheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsOleObjectsDeleteWorksheetOleObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsOleObjectsDeleteWorksheetOleObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -27956,7 +27916,7 @@ public ApiResponse< CellsCloudResponse > CellsOleObjectsDeleteWorksheetOleObject if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -27984,11 +27944,11 @@ public ApiResponse< CellsCloudResponse > CellsOleObjectsDeleteWorksheetOleObject /// The workbook name. /// The worsheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsOleObjectsDeleteWorksheetOleObjectsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsOleObjectsDeleteWorksheetOleObjectsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsOleObjectsDeleteWorksheetOleObjectsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsOleObjectsDeleteWorksheetOleObjectsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -28000,9 +27960,9 @@ public async System.Threading.Tasks.Task CellsOleObjectsDele /// The workbook name. /// The worsheet name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsOleObjectsDeleteWorksheetOleObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsOleObjectsDeleteWorksheetOleObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -28036,7 +27996,7 @@ public async System.Threading.Tasks.Task> CellsO if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -28066,12 +28026,12 @@ public async System.Threading.Tasks.Task> CellsO /// The object number. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// System.IO.Stream - public System.IO.Stream CellsOleObjectsGetWorksheetOleObject (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storage = null) + public System.IO.Stream CellsOleObjectsGetWorksheetOleObject (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsOleObjectsGetWorksheetOleObjectWithHttpInfo(name, sheetName, objectNumber, format, folder, storage); + ApiResponse localVarResponse = CellsOleObjectsGetWorksheetOleObjectWithHttpInfo(name, sheetName, objectNumber, format, folder, storageName); return localVarResponse.Data; } @@ -28084,9 +28044,9 @@ public System.IO.Stream CellsOleObjectsGetWorksheetOleObject (string name, strin /// The object number. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of System.IO.Stream - public ApiResponse< System.IO.Stream > CellsOleObjectsGetWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storage = null) + public ApiResponse< System.IO.Stream > CellsOleObjectsGetWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -28125,7 +28085,7 @@ public System.IO.Stream CellsOleObjectsGetWorksheetOleObject (string name, strin if (objectNumber != null) localVarPathParams.Add("objectNumber", Configuration.ApiClient.ParameterToString(objectNumber)); // path parameter if (format != null) localVarQueryParams.Add("format", Configuration.ApiClient.ParameterToString(format)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -28155,11 +28115,11 @@ public System.IO.Stream CellsOleObjectsGetWorksheetOleObject (string name, strin /// The object number. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of System.IO.Stream - public async System.Threading.Tasks.Task CellsOleObjectsGetWorksheetOleObjectAsync (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsOleObjectsGetWorksheetOleObjectAsync (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsOleObjectsGetWorksheetOleObjectAsyncWithHttpInfo(name, sheetName, objectNumber, format, folder, storage); + ApiResponse localVarResponse = await CellsOleObjectsGetWorksheetOleObjectAsyncWithHttpInfo(name, sheetName, objectNumber, format, folder, storageName); return localVarResponse.Data; } @@ -28173,9 +28133,9 @@ public System.IO.Stream CellsOleObjectsGetWorksheetOleObject (string name, strin /// The object number. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (System.IO.Stream) - public async System.Threading.Tasks.Task> CellsOleObjectsGetWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsOleObjectsGetWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? objectNumber, string format = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -28214,7 +28174,7 @@ public System.IO.Stream CellsOleObjectsGetWorksheetOleObject (string name, strin if (objectNumber != null) localVarPathParams.Add("objectNumber", Configuration.ApiClient.ParameterToString(objectNumber)); // path parameter if (format != null) localVarQueryParams.Add("format", Configuration.ApiClient.ParameterToString(format)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -28242,12 +28202,12 @@ public System.IO.Stream CellsOleObjectsGetWorksheetOleObject (string name, strin /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// OleObjectsResponse - public OleObjectsResponse CellsOleObjectsGetWorksheetOleObjects (string name, string sheetName, string folder = null, string storage = null) + public OleObjectsResponse CellsOleObjectsGetWorksheetOleObjects (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsOleObjectsGetWorksheetOleObjectsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsOleObjectsGetWorksheetOleObjectsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -28258,9 +28218,9 @@ public OleObjectsResponse CellsOleObjectsGetWorksheetOleObjects (string name, st /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of OleObjectsResponse - public ApiResponse< OleObjectsResponse > CellsOleObjectsGetWorksheetOleObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< OleObjectsResponse > CellsOleObjectsGetWorksheetOleObjectsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -28294,7 +28254,7 @@ public ApiResponse< OleObjectsResponse > CellsOleObjectsGetWorksheetOleObjectsWi if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -28322,11 +28282,11 @@ public ApiResponse< OleObjectsResponse > CellsOleObjectsGetWorksheetOleObjectsWi /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of OleObjectsResponse - public async System.Threading.Tasks.Task CellsOleObjectsGetWorksheetOleObjectsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsOleObjectsGetWorksheetOleObjectsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsOleObjectsGetWorksheetOleObjectsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsOleObjectsGetWorksheetOleObjectsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -28338,9 +28298,9 @@ public async System.Threading.Tasks.Task CellsOleObjectsGetW /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (OleObjectsResponse) - public async System.Threading.Tasks.Task> CellsOleObjectsGetWorksheetOleObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsOleObjectsGetWorksheetOleObjectsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -28374,7 +28334,7 @@ public async System.Threading.Tasks.Task> CellsO if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -28404,12 +28364,12 @@ public async System.Threading.Tasks.Task> CellsO /// Ole object index /// Ole Object (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsOleObjectsPostUpdateWorksheetOleObject (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storage = null) + public CellsCloudResponse CellsOleObjectsPostUpdateWorksheetOleObject (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsOleObjectsPostUpdateWorksheetOleObjectWithHttpInfo(name, sheetName, oleObjectIndex, ole, folder, storage); + ApiResponse localVarResponse = CellsOleObjectsPostUpdateWorksheetOleObjectWithHttpInfo(name, sheetName, oleObjectIndex, ole, folder, storageName); return localVarResponse.Data; } @@ -28422,9 +28382,9 @@ public CellsCloudResponse CellsOleObjectsPostUpdateWorksheetOleObject (string na /// Ole object index /// Ole Object (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsOleObjectsPostUpdateWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsOleObjectsPostUpdateWorksheetOleObjectWithHttpInfo (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -28462,7 +28422,7 @@ public ApiResponse< CellsCloudResponse > CellsOleObjectsPostUpdateWorksheetOleOb if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (oleObjectIndex != null) localVarPathParams.Add("oleObjectIndex", Configuration.ApiClient.ParameterToString(oleObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (ole != null && ole.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(ole); // http body (model) parameter @@ -28470,10 +28430,6 @@ public ApiResponse< CellsCloudResponse > CellsOleObjectsPostUpdateWorksheetOleOb else { localVarPostBody = ole; // byte array - if ( "CellsOleObjectsPostUpdateWorksheetOleObject" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -28504,11 +28460,11 @@ public ApiResponse< CellsCloudResponse > CellsOleObjectsPostUpdateWorksheetOleOb /// Ole object index /// Ole Object (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsOleObjectsPostUpdateWorksheetOleObjectAsync (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsOleObjectsPostUpdateWorksheetOleObjectAsync (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsOleObjectsPostUpdateWorksheetOleObjectAsyncWithHttpInfo(name, sheetName, oleObjectIndex, ole, folder, storage); + ApiResponse localVarResponse = await CellsOleObjectsPostUpdateWorksheetOleObjectAsyncWithHttpInfo(name, sheetName, oleObjectIndex, ole, folder, storageName); return localVarResponse.Data; } @@ -28522,9 +28478,9 @@ public async System.Threading.Tasks.Task CellsOleObjectsPost /// Ole object index /// Ole Object (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsOleObjectsPostUpdateWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsOleObjectsPostUpdateWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, int? oleObjectIndex, OleObject ole = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -28562,7 +28518,7 @@ public async System.Threading.Tasks.Task> CellsO if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (oleObjectIndex != null) localVarPathParams.Add("oleObjectIndex", Configuration.ApiClient.ParameterToString(oleObjectIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (ole != null && ole.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(ole); // http body (model) parameter @@ -28605,12 +28561,12 @@ public async System.Threading.Tasks.Task> CellsO /// OLE filename (optional) /// Image filename (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// OleObjectResponse - public OleObjectResponse CellsOleObjectsPutWorksheetOleObject (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storage = null) + public OleObjectResponse CellsOleObjectsPutWorksheetOleObject (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsOleObjectsPutWorksheetOleObjectWithHttpInfo(name, sheetName, oleObject, upperLeftRow, upperLeftColumn, height, width, oleFile, imageFile, folder, storage); + ApiResponse localVarResponse = CellsOleObjectsPutWorksheetOleObjectWithHttpInfo(name, sheetName, oleObject, upperLeftRow, upperLeftColumn, height, width, oleFile, imageFile, folder, storageName); return localVarResponse.Data; } @@ -28628,9 +28584,9 @@ public OleObjectResponse CellsOleObjectsPutWorksheetOleObject (string name, stri /// OLE filename (optional) /// Image filename (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of OleObjectResponse - public ApiResponse< OleObjectResponse > CellsOleObjectsPutWorksheetOleObjectWithHttpInfo (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storage = null) + public ApiResponse< OleObjectResponse > CellsOleObjectsPutWorksheetOleObjectWithHttpInfo (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -28670,7 +28626,7 @@ public ApiResponse< OleObjectResponse > CellsOleObjectsPutWorksheetOleObjectWith if (oleFile != null) localVarQueryParams.Add("oleFile", Configuration.ApiClient.ParameterToString(oleFile)); // query parameter if (imageFile != null) localVarQueryParams.Add("imageFile", Configuration.ApiClient.ParameterToString(imageFile)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (oleObject != null && oleObject.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(oleObject); // http body (model) parameter @@ -28678,10 +28634,6 @@ public ApiResponse< OleObjectResponse > CellsOleObjectsPutWorksheetOleObjectWith else { localVarPostBody = oleObject; // byte array - if ( "CellsOleObjectsPutWorksheetOleObject" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -28717,11 +28669,11 @@ public ApiResponse< OleObjectResponse > CellsOleObjectsPutWorksheetOleObjectWith /// OLE filename (optional) /// Image filename (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of OleObjectResponse - public async System.Threading.Tasks.Task CellsOleObjectsPutWorksheetOleObjectAsync (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsOleObjectsPutWorksheetOleObjectAsync (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsOleObjectsPutWorksheetOleObjectAsyncWithHttpInfo(name, sheetName, oleObject, upperLeftRow, upperLeftColumn, height, width, oleFile, imageFile, folder, storage); + ApiResponse localVarResponse = await CellsOleObjectsPutWorksheetOleObjectAsyncWithHttpInfo(name, sheetName, oleObject, upperLeftRow, upperLeftColumn, height, width, oleFile, imageFile, folder, storageName); return localVarResponse.Data; } @@ -28740,9 +28692,9 @@ public async System.Threading.Tasks.Task CellsOleObjectsPutWo /// OLE filename (optional) /// Image filename (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (OleObjectResponse) - public async System.Threading.Tasks.Task> CellsOleObjectsPutWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsOleObjectsPutWorksheetOleObjectAsyncWithHttpInfo (string name, string sheetName, OleObject oleObject = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? height = null, int? width = null, string oleFile = null, string imageFile = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -28782,7 +28734,7 @@ public async System.Threading.Tasks.Task> CellsOl if (oleFile != null) localVarQueryParams.Add("oleFile", Configuration.ApiClient.ParameterToString(oleFile)); // query parameter if (imageFile != null) localVarQueryParams.Add("imageFile", Configuration.ApiClient.ParameterToString(imageFile)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (oleObject != null && oleObject.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(oleObject); // http body (model) parameter @@ -28819,12 +28771,12 @@ public async System.Threading.Tasks.Task> CellsOl /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPageBreaksDeleteHorizontalPageBreak (string name, string sheetName, int? index, string folder = null, string storage = null) + public CellsCloudResponse CellsPageBreaksDeleteHorizontalPageBreak (string name, string sheetName, int? index, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageBreaksDeleteHorizontalPageBreakWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = CellsPageBreaksDeleteHorizontalPageBreakWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -28836,9 +28788,9 @@ public CellsCloudResponse CellsPageBreaksDeleteHorizontalPageBreak (string name, /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteHorizontalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteHorizontalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -28876,7 +28828,7 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteHorizontalPageBrea if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -28905,11 +28857,11 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteHorizontalPageBrea /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPageBreaksDeleteHorizontalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageBreaksDeleteHorizontalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageBreaksDeleteHorizontalPageBreakAsyncWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = await CellsPageBreaksDeleteHorizontalPageBreakAsyncWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -28922,9 +28874,9 @@ public async System.Threading.Tasks.Task CellsPageBreaksDele /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPageBreaksDeleteHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageBreaksDeleteHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -28962,7 +28914,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -28991,12 +28943,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPageBreaksDeleteHorizontalPageBreaks (string name, string sheetName, int? row = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPageBreaksDeleteHorizontalPageBreaks (string name, string sheetName, int? row = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageBreaksDeleteHorizontalPageBreaksWithHttpInfo(name, sheetName, row, folder, storage); + ApiResponse localVarResponse = CellsPageBreaksDeleteHorizontalPageBreaksWithHttpInfo(name, sheetName, row, folder, storageName); return localVarResponse.Data; } @@ -29008,9 +28960,9 @@ public CellsCloudResponse CellsPageBreaksDeleteHorizontalPageBreaks (string name /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteHorizontalPageBreaksWithHttpInfo (string name, string sheetName, int? row = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteHorizontalPageBreaksWithHttpInfo (string name, string sheetName, int? row = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29045,7 +28997,7 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteHorizontalPageBrea if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (row != null) localVarQueryParams.Add("row", Configuration.ApiClient.ParameterToString(row)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -29074,11 +29026,11 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteHorizontalPageBrea /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPageBreaksDeleteHorizontalPageBreaksAsync (string name, string sheetName, int? row = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageBreaksDeleteHorizontalPageBreaksAsync (string name, string sheetName, int? row = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageBreaksDeleteHorizontalPageBreaksAsyncWithHttpInfo(name, sheetName, row, folder, storage); + ApiResponse localVarResponse = await CellsPageBreaksDeleteHorizontalPageBreaksAsyncWithHttpInfo(name, sheetName, row, folder, storageName); return localVarResponse.Data; } @@ -29091,9 +29043,9 @@ public async System.Threading.Tasks.Task CellsPageBreaksDele /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPageBreaksDeleteHorizontalPageBreaksAsyncWithHttpInfo (string name, string sheetName, int? row = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageBreaksDeleteHorizontalPageBreaksAsyncWithHttpInfo (string name, string sheetName, int? row = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29128,7 +29080,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (row != null) localVarQueryParams.Add("row", Configuration.ApiClient.ParameterToString(row)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -29157,12 +29109,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPageBreaksDeleteVerticalPageBreak (string name, string sheetName, int? index, string folder = null, string storage = null) + public CellsCloudResponse CellsPageBreaksDeleteVerticalPageBreak (string name, string sheetName, int? index, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageBreaksDeleteVerticalPageBreakWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = CellsPageBreaksDeleteVerticalPageBreakWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -29174,9 +29126,9 @@ public CellsCloudResponse CellsPageBreaksDeleteVerticalPageBreak (string name, s /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteVerticalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteVerticalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29214,7 +29166,7 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteVerticalPageBreakW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -29243,11 +29195,11 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteVerticalPageBreakW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPageBreaksDeleteVerticalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageBreaksDeleteVerticalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageBreaksDeleteVerticalPageBreakAsyncWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = await CellsPageBreaksDeleteVerticalPageBreakAsyncWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -29260,9 +29212,9 @@ public async System.Threading.Tasks.Task CellsPageBreaksDele /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPageBreaksDeleteVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageBreaksDeleteVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29300,7 +29252,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -29329,12 +29281,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPageBreaksDeleteVerticalPageBreaks (string name, string sheetName, int? column = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPageBreaksDeleteVerticalPageBreaks (string name, string sheetName, int? column = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageBreaksDeleteVerticalPageBreaksWithHttpInfo(name, sheetName, column, folder, storage); + ApiResponse localVarResponse = CellsPageBreaksDeleteVerticalPageBreaksWithHttpInfo(name, sheetName, column, folder, storageName); return localVarResponse.Data; } @@ -29346,9 +29298,9 @@ public CellsCloudResponse CellsPageBreaksDeleteVerticalPageBreaks (string name, /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteVerticalPageBreaksWithHttpInfo (string name, string sheetName, int? column = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteVerticalPageBreaksWithHttpInfo (string name, string sheetName, int? column = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29383,7 +29335,7 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteVerticalPageBreaks if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (column != null) localVarQueryParams.Add("column", Configuration.ApiClient.ParameterToString(column)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -29412,11 +29364,11 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksDeleteVerticalPageBreaks /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPageBreaksDeleteVerticalPageBreaksAsync (string name, string sheetName, int? column = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageBreaksDeleteVerticalPageBreaksAsync (string name, string sheetName, int? column = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageBreaksDeleteVerticalPageBreaksAsyncWithHttpInfo(name, sheetName, column, folder, storage); + ApiResponse localVarResponse = await CellsPageBreaksDeleteVerticalPageBreaksAsyncWithHttpInfo(name, sheetName, column, folder, storageName); return localVarResponse.Data; } @@ -29429,9 +29381,9 @@ public async System.Threading.Tasks.Task CellsPageBreaksDele /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPageBreaksDeleteVerticalPageBreaksAsyncWithHttpInfo (string name, string sheetName, int? column = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageBreaksDeleteVerticalPageBreaksAsyncWithHttpInfo (string name, string sheetName, int? column = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29466,7 +29418,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (column != null) localVarQueryParams.Add("column", Configuration.ApiClient.ParameterToString(column)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -29495,12 +29447,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// HorizontalPageBreakResponse - public HorizontalPageBreakResponse CellsPageBreaksGetHorizontalPageBreak (string name, string sheetName, int? index, string folder = null, string storage = null) + public HorizontalPageBreakResponse CellsPageBreaksGetHorizontalPageBreak (string name, string sheetName, int? index, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageBreaksGetHorizontalPageBreakWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = CellsPageBreaksGetHorizontalPageBreakWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -29512,9 +29464,9 @@ public HorizontalPageBreakResponse CellsPageBreaksGetHorizontalPageBreak (string /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HorizontalPageBreakResponse - public ApiResponse< HorizontalPageBreakResponse > CellsPageBreaksGetHorizontalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public ApiResponse< HorizontalPageBreakResponse > CellsPageBreaksGetHorizontalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29552,7 +29504,7 @@ public ApiResponse< HorizontalPageBreakResponse > CellsPageBreaksGetHorizontalPa if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -29581,11 +29533,11 @@ public ApiResponse< HorizontalPageBreakResponse > CellsPageBreaksGetHorizontalPa /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HorizontalPageBreakResponse - public async System.Threading.Tasks.Task CellsPageBreaksGetHorizontalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageBreaksGetHorizontalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageBreaksGetHorizontalPageBreakAsyncWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = await CellsPageBreaksGetHorizontalPageBreakAsyncWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -29598,9 +29550,9 @@ public async System.Threading.Tasks.Task CellsPageB /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HorizontalPageBreakResponse) - public async System.Threading.Tasks.Task> CellsPageBreaksGetHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageBreaksGetHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29638,7 +29590,7 @@ public async System.Threading.Tasks.Task /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// HorizontalPageBreaksResponse - public HorizontalPageBreaksResponse CellsPageBreaksGetHorizontalPageBreaks (string name, string sheetName, string folder = null, string storage = null) + public HorizontalPageBreaksResponse CellsPageBreaksGetHorizontalPageBreaks (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageBreaksGetHorizontalPageBreaksWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsPageBreaksGetHorizontalPageBreaksWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -29682,9 +29634,9 @@ public HorizontalPageBreaksResponse CellsPageBreaksGetHorizontalPageBreaks (stri /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of HorizontalPageBreaksResponse - public ApiResponse< HorizontalPageBreaksResponse > CellsPageBreaksGetHorizontalPageBreaksWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< HorizontalPageBreaksResponse > CellsPageBreaksGetHorizontalPageBreaksWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29718,7 +29670,7 @@ public ApiResponse< HorizontalPageBreaksResponse > CellsPageBreaksGetHorizontalP if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -29746,11 +29698,11 @@ public ApiResponse< HorizontalPageBreaksResponse > CellsPageBreaksGetHorizontalP /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of HorizontalPageBreaksResponse - public async System.Threading.Tasks.Task CellsPageBreaksGetHorizontalPageBreaksAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageBreaksGetHorizontalPageBreaksAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageBreaksGetHorizontalPageBreaksAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsPageBreaksGetHorizontalPageBreaksAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -29762,9 +29714,9 @@ public async System.Threading.Tasks.Task CellsPage /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (HorizontalPageBreaksResponse) - public async System.Threading.Tasks.Task> CellsPageBreaksGetHorizontalPageBreaksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageBreaksGetHorizontalPageBreaksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29798,7 +29750,7 @@ public async System.Threading.Tasks.Task /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// VerticalPageBreakResponse - public VerticalPageBreakResponse CellsPageBreaksGetVerticalPageBreak (string name, string sheetName, int? index, string folder = null, string storage = null) + public VerticalPageBreakResponse CellsPageBreaksGetVerticalPageBreak (string name, string sheetName, int? index, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageBreaksGetVerticalPageBreakWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = CellsPageBreaksGetVerticalPageBreakWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -29844,9 +29796,9 @@ public VerticalPageBreakResponse CellsPageBreaksGetVerticalPageBreak (string nam /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of VerticalPageBreakResponse - public ApiResponse< VerticalPageBreakResponse > CellsPageBreaksGetVerticalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public ApiResponse< VerticalPageBreakResponse > CellsPageBreaksGetVerticalPageBreakWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29884,7 +29836,7 @@ public ApiResponse< VerticalPageBreakResponse > CellsPageBreaksGetVerticalPageBr if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -29913,11 +29865,11 @@ public ApiResponse< VerticalPageBreakResponse > CellsPageBreaksGetVerticalPageBr /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of VerticalPageBreakResponse - public async System.Threading.Tasks.Task CellsPageBreaksGetVerticalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageBreaksGetVerticalPageBreakAsync (string name, string sheetName, int? index, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageBreaksGetVerticalPageBreakAsyncWithHttpInfo(name, sheetName, index, folder, storage); + ApiResponse localVarResponse = await CellsPageBreaksGetVerticalPageBreakAsyncWithHttpInfo(name, sheetName, index, folder, storageName); return localVarResponse.Data; } @@ -29930,9 +29882,9 @@ public async System.Threading.Tasks.Task CellsPageBre /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (VerticalPageBreakResponse) - public async System.Threading.Tasks.Task> CellsPageBreaksGetVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageBreaksGetVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, int? index, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -29970,7 +29922,7 @@ public async System.Threading.Tasks.Task> if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (index != null) localVarPathParams.Add("index", Configuration.ApiClient.ParameterToString(index)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -29998,12 +29950,12 @@ public async System.Threading.Tasks.Task> /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// VerticalPageBreaksResponse - public VerticalPageBreaksResponse CellsPageBreaksGetVerticalPageBreaks (string name, string sheetName, string folder = null, string storage = null) + public VerticalPageBreaksResponse CellsPageBreaksGetVerticalPageBreaks (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageBreaksGetVerticalPageBreaksWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsPageBreaksGetVerticalPageBreaksWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -30014,9 +29966,9 @@ public VerticalPageBreaksResponse CellsPageBreaksGetVerticalPageBreaks (string n /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of VerticalPageBreaksResponse - public ApiResponse< VerticalPageBreaksResponse > CellsPageBreaksGetVerticalPageBreaksWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< VerticalPageBreaksResponse > CellsPageBreaksGetVerticalPageBreaksWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30050,7 +30002,7 @@ public ApiResponse< VerticalPageBreaksResponse > CellsPageBreaksGetVerticalPageB if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -30078,11 +30030,11 @@ public ApiResponse< VerticalPageBreaksResponse > CellsPageBreaksGetVerticalPageB /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of VerticalPageBreaksResponse - public async System.Threading.Tasks.Task CellsPageBreaksGetVerticalPageBreaksAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageBreaksGetVerticalPageBreaksAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageBreaksGetVerticalPageBreaksAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsPageBreaksGetVerticalPageBreaksAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -30094,9 +30046,9 @@ public async System.Threading.Tasks.Task CellsPageBr /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (VerticalPageBreaksResponse) - public async System.Threading.Tasks.Task> CellsPageBreaksGetVerticalPageBreaksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageBreaksGetVerticalPageBreaksAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30130,7 +30082,7 @@ public async System.Threading.Tasks.Task if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -30163,12 +30115,12 @@ public async System.Threading.Tasks.Task /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPageBreaksPutHorizontalPageBreak (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPageBreaksPutHorizontalPageBreak (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageBreaksPutHorizontalPageBreakWithHttpInfo(name, sheetName, cellname, row, column, startColumn, endColumn, folder, storage); + ApiResponse localVarResponse = CellsPageBreaksPutHorizontalPageBreakWithHttpInfo(name, sheetName, cellname, row, column, startColumn, endColumn, folder, storageName); return localVarResponse.Data; } @@ -30184,9 +30136,9 @@ public CellsCloudResponse CellsPageBreaksPutHorizontalPageBreak (string name, st /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPageBreaksPutHorizontalPageBreakWithHttpInfo (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPageBreaksPutHorizontalPageBreakWithHttpInfo (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30225,7 +30177,7 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksPutHorizontalPageBreakWi if (startColumn != null) localVarQueryParams.Add("startColumn", Configuration.ApiClient.ParameterToString(startColumn)); // query parameter if (endColumn != null) localVarQueryParams.Add("endColumn", Configuration.ApiClient.ParameterToString(endColumn)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -30258,11 +30210,11 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksPutHorizontalPageBreakWi /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPageBreaksPutHorizontalPageBreakAsync (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageBreaksPutHorizontalPageBreakAsync (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageBreaksPutHorizontalPageBreakAsyncWithHttpInfo(name, sheetName, cellname, row, column, startColumn, endColumn, folder, storage); + ApiResponse localVarResponse = await CellsPageBreaksPutHorizontalPageBreakAsyncWithHttpInfo(name, sheetName, cellname, row, column, startColumn, endColumn, folder, storageName); return localVarResponse.Data; } @@ -30279,9 +30231,9 @@ public async System.Threading.Tasks.Task CellsPageBreaksPutH /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPageBreaksPutHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageBreaksPutHorizontalPageBreakAsyncWithHttpInfo (string name, string sheetName, string cellname = null, int? row = null, int? column = null, int? startColumn = null, int? endColumn = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30320,7 +30272,7 @@ public async System.Threading.Tasks.Task> CellsP if (startColumn != null) localVarQueryParams.Add("startColumn", Configuration.ApiClient.ParameterToString(startColumn)); // query parameter if (endColumn != null) localVarQueryParams.Add("endColumn", Configuration.ApiClient.ParameterToString(endColumn)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -30353,12 +30305,12 @@ public async System.Threading.Tasks.Task> CellsP /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPageBreaksPutVerticalPageBreak (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPageBreaksPutVerticalPageBreak (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageBreaksPutVerticalPageBreakWithHttpInfo(name, sheetName, cellname, column, row, startRow, endRow, folder, storage); + ApiResponse localVarResponse = CellsPageBreaksPutVerticalPageBreakWithHttpInfo(name, sheetName, cellname, column, row, startRow, endRow, folder, storageName); return localVarResponse.Data; } @@ -30374,9 +30326,9 @@ public CellsCloudResponse CellsPageBreaksPutVerticalPageBreak (string name, stri /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPageBreaksPutVerticalPageBreakWithHttpInfo (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPageBreaksPutVerticalPageBreakWithHttpInfo (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30415,7 +30367,7 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksPutVerticalPageBreakWith if (startRow != null) localVarQueryParams.Add("startRow", Configuration.ApiClient.ParameterToString(startRow)); // query parameter if (endRow != null) localVarQueryParams.Add("endRow", Configuration.ApiClient.ParameterToString(endRow)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -30448,11 +30400,11 @@ public ApiResponse< CellsCloudResponse > CellsPageBreaksPutVerticalPageBreakWith /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPageBreaksPutVerticalPageBreakAsync (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageBreaksPutVerticalPageBreakAsync (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageBreaksPutVerticalPageBreakAsyncWithHttpInfo(name, sheetName, cellname, column, row, startRow, endRow, folder, storage); + ApiResponse localVarResponse = await CellsPageBreaksPutVerticalPageBreakAsyncWithHttpInfo(name, sheetName, cellname, column, row, startRow, endRow, folder, storageName); return localVarResponse.Data; } @@ -30469,9 +30421,9 @@ public async System.Threading.Tasks.Task CellsPageBreaksPutV /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPageBreaksPutVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageBreaksPutVerticalPageBreakAsyncWithHttpInfo (string name, string sheetName, string cellname = null, int? column = null, int? row = null, int? startRow = null, int? endRow = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30510,7 +30462,7 @@ public async System.Threading.Tasks.Task> CellsP if (startRow != null) localVarQueryParams.Add("startRow", Configuration.ApiClient.ParameterToString(startRow)); // query parameter if (endRow != null) localVarQueryParams.Add("endRow", Configuration.ApiClient.ParameterToString(endRow)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -30538,12 +30490,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPageSetupDeleteHeaderFooter (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsPageSetupDeleteHeaderFooter (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageSetupDeleteHeaderFooterWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsPageSetupDeleteHeaderFooterWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -30554,9 +30506,9 @@ public CellsCloudResponse CellsPageSetupDeleteHeaderFooter (string name, string /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPageSetupDeleteHeaderFooterWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPageSetupDeleteHeaderFooterWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30590,7 +30542,7 @@ public ApiResponse< CellsCloudResponse > CellsPageSetupDeleteHeaderFooterWithHtt if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -30618,11 +30570,11 @@ public ApiResponse< CellsCloudResponse > CellsPageSetupDeleteHeaderFooterWithHtt /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPageSetupDeleteHeaderFooterAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageSetupDeleteHeaderFooterAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageSetupDeleteHeaderFooterAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsPageSetupDeleteHeaderFooterAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -30634,9 +30586,9 @@ public async System.Threading.Tasks.Task CellsPageSetupDelet /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPageSetupDeleteHeaderFooterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageSetupDeleteHeaderFooterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30670,7 +30622,7 @@ public async System.Threading.Tasks.Task> CellsP if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -30698,12 +30650,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// PageSectionsResponse - public PageSectionsResponse CellsPageSetupGetFooter (string name, string sheetName, string folder = null, string storage = null) + public PageSectionsResponse CellsPageSetupGetFooter (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageSetupGetFooterWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsPageSetupGetFooterWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -30714,9 +30666,9 @@ public PageSectionsResponse CellsPageSetupGetFooter (string name, string sheetNa /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PageSectionsResponse - public ApiResponse< PageSectionsResponse > CellsPageSetupGetFooterWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< PageSectionsResponse > CellsPageSetupGetFooterWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30750,7 +30702,7 @@ public ApiResponse< PageSectionsResponse > CellsPageSetupGetFooterWithHttpInfo ( if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -30778,11 +30730,11 @@ public ApiResponse< PageSectionsResponse > CellsPageSetupGetFooterWithHttpInfo ( /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PageSectionsResponse - public async System.Threading.Tasks.Task CellsPageSetupGetFooterAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageSetupGetFooterAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageSetupGetFooterAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsPageSetupGetFooterAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -30794,9 +30746,9 @@ public async System.Threading.Tasks.Task CellsPageSetupGet /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PageSectionsResponse) - public async System.Threading.Tasks.Task> CellsPageSetupGetFooterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageSetupGetFooterAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30830,7 +30782,7 @@ public async System.Threading.Tasks.Task> Cell if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -30858,12 +30810,12 @@ public async System.Threading.Tasks.Task> Cell /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// PageSectionsResponse - public PageSectionsResponse CellsPageSetupGetHeader (string name, string sheetName, string folder = null, string storage = null) + public PageSectionsResponse CellsPageSetupGetHeader (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageSetupGetHeaderWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsPageSetupGetHeaderWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -30874,9 +30826,9 @@ public PageSectionsResponse CellsPageSetupGetHeader (string name, string sheetNa /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PageSectionsResponse - public ApiResponse< PageSectionsResponse > CellsPageSetupGetHeaderWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< PageSectionsResponse > CellsPageSetupGetHeaderWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30910,7 +30862,7 @@ public ApiResponse< PageSectionsResponse > CellsPageSetupGetHeaderWithHttpInfo ( if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -30938,11 +30890,11 @@ public ApiResponse< PageSectionsResponse > CellsPageSetupGetHeaderWithHttpInfo ( /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PageSectionsResponse - public async System.Threading.Tasks.Task CellsPageSetupGetHeaderAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageSetupGetHeaderAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageSetupGetHeaderAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsPageSetupGetHeaderAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -30954,9 +30906,9 @@ public async System.Threading.Tasks.Task CellsPageSetupGet /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PageSectionsResponse) - public async System.Threading.Tasks.Task> CellsPageSetupGetHeaderAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageSetupGetHeaderAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -30990,7 +30942,7 @@ public async System.Threading.Tasks.Task> Cell if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -31018,12 +30970,12 @@ public async System.Threading.Tasks.Task> Cell /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// PageSetupResponse - public PageSetupResponse CellsPageSetupGetPageSetup (string name, string sheetName, string folder = null, string storage = null) + public PageSetupResponse CellsPageSetupGetPageSetup (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageSetupGetPageSetupWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsPageSetupGetPageSetupWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -31034,9 +30986,9 @@ public PageSetupResponse CellsPageSetupGetPageSetup (string name, string sheetNa /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PageSetupResponse - public ApiResponse< PageSetupResponse > CellsPageSetupGetPageSetupWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< PageSetupResponse > CellsPageSetupGetPageSetupWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -31070,7 +31022,7 @@ public ApiResponse< PageSetupResponse > CellsPageSetupGetPageSetupWithHttpInfo ( if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -31098,11 +31050,11 @@ public ApiResponse< PageSetupResponse > CellsPageSetupGetPageSetupWithHttpInfo ( /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PageSetupResponse - public async System.Threading.Tasks.Task CellsPageSetupGetPageSetupAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageSetupGetPageSetupAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageSetupGetPageSetupAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsPageSetupGetPageSetupAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -31114,9 +31066,9 @@ public async System.Threading.Tasks.Task CellsPageSetupGetPag /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PageSetupResponse) - public async System.Threading.Tasks.Task> CellsPageSetupGetPageSetupAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageSetupGetPageSetupAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -31150,7 +31102,7 @@ public async System.Threading.Tasks.Task> CellsPa if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -31181,12 +31133,12 @@ public async System.Threading.Tasks.Task> CellsPa /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPageSetupPostFooter (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null) + public CellsCloudResponse CellsPageSetupPostFooter (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageSetupPostFooterWithHttpInfo(name, sheetName, section, script, isFirstPage, folder, storage); + ApiResponse localVarResponse = CellsPageSetupPostFooterWithHttpInfo(name, sheetName, section, script, isFirstPage, folder, storageName); return localVarResponse.Data; } @@ -31200,9 +31152,9 @@ public CellsCloudResponse CellsPageSetupPostFooter (string name, string sheetNam /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPageSetupPostFooterWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPageSetupPostFooterWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -31248,7 +31200,7 @@ public ApiResponse< CellsCloudResponse > CellsPageSetupPostFooterWithHttpInfo (s if (script != null) localVarQueryParams.Add("script", Configuration.ApiClient.ParameterToString(script)); // query parameter if (isFirstPage != null) localVarQueryParams.Add("isFirstPage", Configuration.ApiClient.ParameterToString(isFirstPage)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -31279,11 +31231,11 @@ public ApiResponse< CellsCloudResponse > CellsPageSetupPostFooterWithHttpInfo (s /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPageSetupPostFooterAsync (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageSetupPostFooterAsync (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageSetupPostFooterAsyncWithHttpInfo(name, sheetName, section, script, isFirstPage, folder, storage); + ApiResponse localVarResponse = await CellsPageSetupPostFooterAsyncWithHttpInfo(name, sheetName, section, script, isFirstPage, folder, storageName); return localVarResponse.Data; } @@ -31298,9 +31250,9 @@ public async System.Threading.Tasks.Task CellsPageSetupPostF /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPageSetupPostFooterAsyncWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageSetupPostFooterAsyncWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -31346,7 +31298,7 @@ public async System.Threading.Tasks.Task> CellsP if (script != null) localVarQueryParams.Add("script", Configuration.ApiClient.ParameterToString(script)); // query parameter if (isFirstPage != null) localVarQueryParams.Add("isFirstPage", Configuration.ApiClient.ParameterToString(isFirstPage)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -31377,12 +31329,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPageSetupPostHeader (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null) + public CellsCloudResponse CellsPageSetupPostHeader (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageSetupPostHeaderWithHttpInfo(name, sheetName, section, script, isFirstPage, folder, storage); + ApiResponse localVarResponse = CellsPageSetupPostHeaderWithHttpInfo(name, sheetName, section, script, isFirstPage, folder, storageName); return localVarResponse.Data; } @@ -31396,9 +31348,9 @@ public CellsCloudResponse CellsPageSetupPostHeader (string name, string sheetNam /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPageSetupPostHeaderWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPageSetupPostHeaderWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -31444,7 +31396,7 @@ public ApiResponse< CellsCloudResponse > CellsPageSetupPostHeaderWithHttpInfo (s if (script != null) localVarQueryParams.Add("script", Configuration.ApiClient.ParameterToString(script)); // query parameter if (isFirstPage != null) localVarQueryParams.Add("isFirstPage", Configuration.ApiClient.ParameterToString(isFirstPage)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -31475,11 +31427,11 @@ public ApiResponse< CellsCloudResponse > CellsPageSetupPostHeaderWithHttpInfo (s /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPageSetupPostHeaderAsync (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageSetupPostHeaderAsync (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageSetupPostHeaderAsyncWithHttpInfo(name, sheetName, section, script, isFirstPage, folder, storage); + ApiResponse localVarResponse = await CellsPageSetupPostHeaderAsyncWithHttpInfo(name, sheetName, section, script, isFirstPage, folder, storageName); return localVarResponse.Data; } @@ -31494,9 +31446,9 @@ public async System.Threading.Tasks.Task CellsPageSetupPostH /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPageSetupPostHeaderAsyncWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageSetupPostHeaderAsyncWithHttpInfo (string name, string sheetName, int? section, string script, bool? isFirstPage, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -31542,7 +31494,7 @@ public async System.Threading.Tasks.Task> CellsP if (script != null) localVarQueryParams.Add("script", Configuration.ApiClient.ParameterToString(script)); // query parameter if (isFirstPage != null) localVarQueryParams.Add("isFirstPage", Configuration.ApiClient.ParameterToString(isFirstPage)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -31571,12 +31523,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPageSetupPostPageSetup (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPageSetupPostPageSetup (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPageSetupPostPageSetupWithHttpInfo(name, sheetName, pageSetup, folder, storage); + ApiResponse localVarResponse = CellsPageSetupPostPageSetupWithHttpInfo(name, sheetName, pageSetup, folder, storageName); return localVarResponse.Data; } @@ -31588,9 +31540,9 @@ public CellsCloudResponse CellsPageSetupPostPageSetup (string name, string sheet /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPageSetupPostPageSetupWithHttpInfo (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPageSetupPostPageSetupWithHttpInfo (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -31624,7 +31576,7 @@ public ApiResponse< CellsCloudResponse > CellsPageSetupPostPageSetupWithHttpInfo if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (pageSetup != null && pageSetup.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(pageSetup); // http body (model) parameter @@ -31632,10 +31584,6 @@ public ApiResponse< CellsCloudResponse > CellsPageSetupPostPageSetupWithHttpInfo else { localVarPostBody = pageSetup; // byte array - if ( "CellsPageSetupPostPageSetup" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -31665,11 +31613,11 @@ public ApiResponse< CellsCloudResponse > CellsPageSetupPostPageSetupWithHttpInfo /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPageSetupPostPageSetupAsync (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPageSetupPostPageSetupAsync (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPageSetupPostPageSetupAsyncWithHttpInfo(name, sheetName, pageSetup, folder, storage); + ApiResponse localVarResponse = await CellsPageSetupPostPageSetupAsyncWithHttpInfo(name, sheetName, pageSetup, folder, storageName); return localVarResponse.Data; } @@ -31682,9 +31630,9 @@ public async System.Threading.Tasks.Task CellsPageSetupPostP /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPageSetupPostPageSetupAsyncWithHttpInfo (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPageSetupPostPageSetupAsyncWithHttpInfo (string name, string sheetName, PageSetup pageSetup = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -31718,7 +31666,7 @@ public async System.Threading.Tasks.Task> CellsP if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (pageSetup != null && pageSetup.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(pageSetup); // http body (model) parameter @@ -31755,12 +31703,12 @@ public async System.Threading.Tasks.Task> CellsP /// The worsheet name. /// Picture index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPicturesDeleteWorksheetPicture (string name, string sheetName, int? pictureIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsPicturesDeleteWorksheetPicture (string name, string sheetName, int? pictureIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPicturesDeleteWorksheetPictureWithHttpInfo(name, sheetName, pictureIndex, folder, storage); + ApiResponse localVarResponse = CellsPicturesDeleteWorksheetPictureWithHttpInfo(name, sheetName, pictureIndex, folder, storageName); return localVarResponse.Data; } @@ -31772,9 +31720,9 @@ public CellsCloudResponse CellsPicturesDeleteWorksheetPicture (string name, stri /// The worsheet name. /// Picture index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPicturesDeleteWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPicturesDeleteWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -31812,7 +31760,7 @@ public ApiResponse< CellsCloudResponse > CellsPicturesDeleteWorksheetPictureWith if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pictureIndex != null) localVarPathParams.Add("pictureIndex", Configuration.ApiClient.ParameterToString(pictureIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -31841,11 +31789,11 @@ public ApiResponse< CellsCloudResponse > CellsPicturesDeleteWorksheetPictureWith /// The worsheet name. /// Picture index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPicturesDeleteWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPicturesDeleteWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPicturesDeleteWorksheetPictureAsyncWithHttpInfo(name, sheetName, pictureIndex, folder, storage); + ApiResponse localVarResponse = await CellsPicturesDeleteWorksheetPictureAsyncWithHttpInfo(name, sheetName, pictureIndex, folder, storageName); return localVarResponse.Data; } @@ -31858,9 +31806,9 @@ public async System.Threading.Tasks.Task CellsPicturesDelete /// The worsheet name. /// Picture index /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPicturesDeleteWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPicturesDeleteWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -31898,7 +31846,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pictureIndex != null) localVarPathParams.Add("pictureIndex", Configuration.ApiClient.ParameterToString(pictureIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -31926,12 +31874,12 @@ public async System.Threading.Tasks.Task> CellsP /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPicturesDeleteWorksheetPictures (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsPicturesDeleteWorksheetPictures (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPicturesDeleteWorksheetPicturesWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsPicturesDeleteWorksheetPicturesWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -31942,9 +31890,9 @@ public CellsCloudResponse CellsPicturesDeleteWorksheetPictures (string name, str /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPicturesDeleteWorksheetPicturesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPicturesDeleteWorksheetPicturesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -31978,7 +31926,7 @@ public ApiResponse< CellsCloudResponse > CellsPicturesDeleteWorksheetPicturesWit if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -32006,11 +31954,11 @@ public ApiResponse< CellsCloudResponse > CellsPicturesDeleteWorksheetPicturesWit /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPicturesDeleteWorksheetPicturesAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPicturesDeleteWorksheetPicturesAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPicturesDeleteWorksheetPicturesAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsPicturesDeleteWorksheetPicturesAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -32022,9 +31970,9 @@ public async System.Threading.Tasks.Task CellsPicturesDelete /// Document name. /// Worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPicturesDeleteWorksheetPicturesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPicturesDeleteWorksheetPicturesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -32058,7 +32006,7 @@ public async System.Threading.Tasks.Task> CellsP if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -32088,12 +32036,12 @@ public async System.Threading.Tasks.Task> CellsP /// The picture index. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// System.IO.Stream - public System.IO.Stream CellsPicturesGetWorksheetPicture (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storage = null) + public System.IO.Stream CellsPicturesGetWorksheetPicture (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPicturesGetWorksheetPictureWithHttpInfo(name, sheetName, pictureIndex, format, folder, storage); + ApiResponse localVarResponse = CellsPicturesGetWorksheetPictureWithHttpInfo(name, sheetName, pictureIndex, format, folder, storageName); return localVarResponse.Data; } @@ -32106,9 +32054,9 @@ public System.IO.Stream CellsPicturesGetWorksheetPicture (string name, string sh /// The picture index. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of System.IO.Stream - public ApiResponse< System.IO.Stream > CellsPicturesGetWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storage = null) + public ApiResponse< System.IO.Stream > CellsPicturesGetWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -32147,7 +32095,7 @@ public System.IO.Stream CellsPicturesGetWorksheetPicture (string name, string sh if (pictureIndex != null) localVarPathParams.Add("pictureIndex", Configuration.ApiClient.ParameterToString(pictureIndex)); // path parameter if (format != null) localVarQueryParams.Add("format", Configuration.ApiClient.ParameterToString(format)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -32177,11 +32125,11 @@ public System.IO.Stream CellsPicturesGetWorksheetPicture (string name, string sh /// The picture index. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of System.IO.Stream - public async System.Threading.Tasks.Task CellsPicturesGetWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPicturesGetWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPicturesGetWorksheetPictureAsyncWithHttpInfo(name, sheetName, pictureIndex, format, folder, storage); + ApiResponse localVarResponse = await CellsPicturesGetWorksheetPictureAsyncWithHttpInfo(name, sheetName, pictureIndex, format, folder, storageName); return localVarResponse.Data; } @@ -32195,9 +32143,9 @@ public System.IO.Stream CellsPicturesGetWorksheetPicture (string name, string sh /// The picture index. /// The exported object format. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (System.IO.Stream) - public async System.Threading.Tasks.Task> CellsPicturesGetWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPicturesGetWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, string format = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -32236,7 +32184,7 @@ public System.IO.Stream CellsPicturesGetWorksheetPicture (string name, string sh if (pictureIndex != null) localVarPathParams.Add("pictureIndex", Configuration.ApiClient.ParameterToString(pictureIndex)); // path parameter if (format != null) localVarQueryParams.Add("format", Configuration.ApiClient.ParameterToString(format)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -32264,12 +32212,12 @@ public System.IO.Stream CellsPicturesGetWorksheetPicture (string name, string sh /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PicturesResponse - public PicturesResponse CellsPicturesGetWorksheetPictures (string name, string sheetName, string folder = null, string storage = null) + public PicturesResponse CellsPicturesGetWorksheetPictures (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPicturesGetWorksheetPicturesWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsPicturesGetWorksheetPicturesWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -32280,9 +32228,9 @@ public PicturesResponse CellsPicturesGetWorksheetPictures (string name, string s /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PicturesResponse - public ApiResponse< PicturesResponse > CellsPicturesGetWorksheetPicturesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< PicturesResponse > CellsPicturesGetWorksheetPicturesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -32316,7 +32264,7 @@ public ApiResponse< PicturesResponse > CellsPicturesGetWorksheetPicturesWithHttp if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -32344,11 +32292,11 @@ public ApiResponse< PicturesResponse > CellsPicturesGetWorksheetPicturesWithHttp /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PicturesResponse - public async System.Threading.Tasks.Task CellsPicturesGetWorksheetPicturesAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPicturesGetWorksheetPicturesAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPicturesGetWorksheetPicturesAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsPicturesGetWorksheetPicturesAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -32360,9 +32308,9 @@ public async System.Threading.Tasks.Task CellsPicturesGetWorks /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PicturesResponse) - public async System.Threading.Tasks.Task> CellsPicturesGetWorksheetPicturesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPicturesGetWorksheetPicturesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -32396,7 +32344,7 @@ public async System.Threading.Tasks.Task> CellsPic if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -32426,12 +32374,12 @@ public async System.Threading.Tasks.Task> CellsPic /// The picture's index. /// Picture object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PictureResponse - public PictureResponse CellsPicturesPostWorksheetPicture (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storage = null) + public PictureResponse CellsPicturesPostWorksheetPicture (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPicturesPostWorksheetPictureWithHttpInfo(name, sheetName, pictureIndex, picture, folder, storage); + ApiResponse localVarResponse = CellsPicturesPostWorksheetPictureWithHttpInfo(name, sheetName, pictureIndex, picture, folder, storageName); return localVarResponse.Data; } @@ -32444,9 +32392,9 @@ public PictureResponse CellsPicturesPostWorksheetPicture (string name, string sh /// The picture's index. /// Picture object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PictureResponse - public ApiResponse< PictureResponse > CellsPicturesPostWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storage = null) + public ApiResponse< PictureResponse > CellsPicturesPostWorksheetPictureWithHttpInfo (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -32484,7 +32432,7 @@ public ApiResponse< PictureResponse > CellsPicturesPostWorksheetPictureWithHttpI if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pictureIndex != null) localVarPathParams.Add("pictureIndex", Configuration.ApiClient.ParameterToString(pictureIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (picture != null && picture.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(picture); // http body (model) parameter @@ -32492,10 +32440,6 @@ public ApiResponse< PictureResponse > CellsPicturesPostWorksheetPictureWithHttpI else { localVarPostBody = picture; // byte array - if ( "CellsPicturesPostWorksheetPicture" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -32526,11 +32470,11 @@ public ApiResponse< PictureResponse > CellsPicturesPostWorksheetPictureWithHttpI /// The picture's index. /// Picture object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PictureResponse - public async System.Threading.Tasks.Task CellsPicturesPostWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPicturesPostWorksheetPictureAsync (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPicturesPostWorksheetPictureAsyncWithHttpInfo(name, sheetName, pictureIndex, picture, folder, storage); + ApiResponse localVarResponse = await CellsPicturesPostWorksheetPictureAsyncWithHttpInfo(name, sheetName, pictureIndex, picture, folder, storageName); return localVarResponse.Data; } @@ -32544,9 +32488,9 @@ public async System.Threading.Tasks.Task CellsPicturesPostWorks /// The picture's index. /// Picture object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PictureResponse) - public async System.Threading.Tasks.Task> CellsPicturesPostWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPicturesPostWorksheetPictureAsyncWithHttpInfo (string name, string sheetName, int? pictureIndex, Picture picture = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -32584,7 +32528,7 @@ public async System.Threading.Tasks.Task> CellsPict if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pictureIndex != null) localVarPathParams.Add("pictureIndex", Configuration.ApiClient.ParameterToString(pictureIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (picture != null && picture.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(picture); // http body (model) parameter @@ -32626,12 +32570,12 @@ public async System.Threading.Tasks.Task> CellsPict /// The image low right column. (optional, default to 0) /// The picture path, if not provided the picture data is inspected in the request body. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PicturesResponse - public PicturesResponse CellsPicturesPutWorksheetAddPicture (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storage = null) + public PicturesResponse CellsPicturesPutWorksheetAddPicture (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPicturesPutWorksheetAddPictureWithHttpInfo(name, sheetName, picture, upperLeftRow, upperLeftColumn, lowerRightRow, lowerRightColumn, picturePath, folder, storage); + ApiResponse localVarResponse = CellsPicturesPutWorksheetAddPictureWithHttpInfo(name, sheetName, picture, upperLeftRow, upperLeftColumn, lowerRightRow, lowerRightColumn, picturePath, folder, storageName); return localVarResponse.Data; } @@ -32648,9 +32592,9 @@ public PicturesResponse CellsPicturesPutWorksheetAddPicture (string name, string /// The image low right column. (optional, default to 0) /// The picture path, if not provided the picture data is inspected in the request body. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PicturesResponse - public ApiResponse< PicturesResponse > CellsPicturesPutWorksheetAddPictureWithHttpInfo (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storage = null) + public ApiResponse< PicturesResponse > CellsPicturesPutWorksheetAddPictureWithHttpInfo (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -32689,7 +32633,7 @@ public ApiResponse< PicturesResponse > CellsPicturesPutWorksheetAddPictureWithHt if (lowerRightColumn != null) localVarQueryParams.Add("lowerRightColumn", Configuration.ApiClient.ParameterToString(lowerRightColumn)); // query parameter if (picturePath != null) localVarQueryParams.Add("picturePath", Configuration.ApiClient.ParameterToString(picturePath)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (picture != null && picture.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(picture); // http body (model) parameter @@ -32697,10 +32641,6 @@ public ApiResponse< PicturesResponse > CellsPicturesPutWorksheetAddPictureWithHt else { localVarPostBody = picture; // byte array - if ( "CellsPicturesPutWorksheetAddPicture" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -32735,11 +32675,11 @@ public ApiResponse< PicturesResponse > CellsPicturesPutWorksheetAddPictureWithHt /// The image low right column. (optional, default to 0) /// The picture path, if not provided the picture data is inspected in the request body. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PicturesResponse - public async System.Threading.Tasks.Task CellsPicturesPutWorksheetAddPictureAsync (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPicturesPutWorksheetAddPictureAsync (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPicturesPutWorksheetAddPictureAsyncWithHttpInfo(name, sheetName, picture, upperLeftRow, upperLeftColumn, lowerRightRow, lowerRightColumn, picturePath, folder, storage); + ApiResponse localVarResponse = await CellsPicturesPutWorksheetAddPictureAsyncWithHttpInfo(name, sheetName, picture, upperLeftRow, upperLeftColumn, lowerRightRow, lowerRightColumn, picturePath, folder, storageName); return localVarResponse.Data; } @@ -32757,9 +32697,9 @@ public async System.Threading.Tasks.Task CellsPicturesPutWorks /// The image low right column. (optional, default to 0) /// The picture path, if not provided the picture data is inspected in the request body. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PicturesResponse) - public async System.Threading.Tasks.Task> CellsPicturesPutWorksheetAddPictureAsyncWithHttpInfo (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPicturesPutWorksheetAddPictureAsyncWithHttpInfo (string name, string sheetName, Picture picture = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? lowerRightRow = null, int? lowerRightColumn = null, string picturePath = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -32798,7 +32738,7 @@ public async System.Threading.Tasks.Task> CellsPic if (lowerRightColumn != null) localVarQueryParams.Add("lowerRightColumn", Configuration.ApiClient.ParameterToString(lowerRightColumn)); // query parameter if (picturePath != null) localVarQueryParams.Add("picturePath", Configuration.ApiClient.ParameterToString(picturePath)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (picture != null && picture.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(picture); // http body (model) parameter @@ -32837,12 +32777,12 @@ public async System.Threading.Tasks.Task> CellsPic /// The fields area type. /// Dto that conrains field indexes (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesDeletePivotTableField (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesDeletePivotTableField (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesDeletePivotTableFieldWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, request, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesDeletePivotTableFieldWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, request, folder, storageName); return localVarResponse.Data; } @@ -32856,9 +32796,9 @@ public CellsCloudResponse CellsPivotTablesDeletePivotTableField (string name, st /// The fields area type. /// Dto that conrains field indexes (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesDeletePivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesDeletePivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -32900,7 +32840,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesDeletePivotTableFieldWi if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (pivotFieldType != null) localVarQueryParams.Add("pivotFieldType", Configuration.ApiClient.ParameterToString(pivotFieldType)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (request != null && request.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(request); // http body (model) parameter @@ -32908,10 +32848,6 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesDeletePivotTableFieldWi else { localVarPostBody = request; // byte array - if ( "CellsPivotTablesDeletePivotTableField" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -32943,11 +32879,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesDeletePivotTableFieldWi /// The fields area type. /// Dto that conrains field indexes (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesDeletePivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesDeletePivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesDeletePivotTableFieldAsyncWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, request, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesDeletePivotTableFieldAsyncWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, request, folder, storageName); return localVarResponse.Data; } @@ -32962,9 +32898,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesDel /// The fields area type. /// Dto that conrains field indexes (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesDeletePivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesDeletePivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33006,7 +32942,7 @@ public async System.Threading.Tasks.Task> CellsP if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (pivotFieldType != null) localVarQueryParams.Add("pivotFieldType", Configuration.ApiClient.ParameterToString(pivotFieldType)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (request != null && request.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(request); // http body (model) parameter @@ -33043,12 +32979,12 @@ public async System.Threading.Tasks.Task> CellsP /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTable (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTable (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesDeleteWorksheetPivotTableWithHttpInfo(name, sheetName, pivotTableIndex, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesDeleteWorksheetPivotTableWithHttpInfo(name, sheetName, pivotTableIndex, folder, storageName); return localVarResponse.Data; } @@ -33060,9 +32996,9 @@ public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTable (string name /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTableWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTableWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33100,7 +33036,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTab if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -33129,11 +33065,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTab /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesDeleteWorksheetPivotTableAsyncWithHttpInfo(name, sheetName, pivotTableIndex, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesDeleteWorksheetPivotTableAsyncWithHttpInfo(name, sheetName, pivotTableIndex, folder, storageName); return localVarResponse.Data; } @@ -33146,9 +33082,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesDel /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33186,7 +33122,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -33217,12 +33153,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesDeleteWorksheetPivotTableFilterWithHttpInfo(name, sheetName, pivotTableIndex, fieldIndex, needReCalculate, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesDeleteWorksheetPivotTableFilterWithHttpInfo(name, sheetName, pivotTableIndex, fieldIndex, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -33236,9 +33172,9 @@ public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTableFilter (strin /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33281,7 +33217,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTab if (fieldIndex != null) localVarPathParams.Add("fieldIndex", Configuration.ApiClient.ParameterToString(fieldIndex)); // path parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -33312,11 +33248,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTab /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesDeleteWorksheetPivotTableFilterAsyncWithHttpInfo(name, sheetName, pivotTableIndex, fieldIndex, needReCalculate, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesDeleteWorksheetPivotTableFilterAsyncWithHttpInfo(name, sheetName, pivotTableIndex, fieldIndex, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -33331,9 +33267,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesDel /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33376,7 +33312,7 @@ public async System.Threading.Tasks.Task> CellsP if (fieldIndex != null) localVarPathParams.Add("fieldIndex", Configuration.ApiClient.ParameterToString(fieldIndex)); // path parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -33406,12 +33342,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTableFilters (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTableFilters (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesDeleteWorksheetPivotTableFiltersWithHttpInfo(name, sheetName, pivotTableIndex, needReCalculate, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesDeleteWorksheetPivotTableFiltersWithHttpInfo(name, sheetName, pivotTableIndex, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -33424,9 +33360,9 @@ public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTableFilters (stri /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTableFiltersWithHttpInfo (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTableFiltersWithHttpInfo (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33465,7 +33401,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTab if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -33495,11 +33431,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTab /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableFiltersAsync (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTableFiltersAsync (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesDeleteWorksheetPivotTableFiltersAsyncWithHttpInfo(name, sheetName, pivotTableIndex, needReCalculate, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesDeleteWorksheetPivotTableFiltersAsyncWithHttpInfo(name, sheetName, pivotTableIndex, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -33513,9 +33449,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesDel /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableFiltersAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTableFiltersAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33554,7 +33490,7 @@ public async System.Threading.Tasks.Task> CellsP if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -33582,12 +33518,12 @@ public async System.Threading.Tasks.Task> CellsP /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTables (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTables (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesDeleteWorksheetPivotTablesWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesDeleteWorksheetPivotTablesWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -33598,9 +33534,9 @@ public CellsCloudResponse CellsPivotTablesDeleteWorksheetPivotTables (string nam /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTablesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTablesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33634,7 +33570,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTab if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -33662,11 +33598,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesDeleteWorksheetPivotTab /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTablesAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesDeleteWorksheetPivotTablesAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesDeleteWorksheetPivotTablesAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesDeleteWorksheetPivotTablesAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -33678,9 +33614,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesDel /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTablesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesDeleteWorksheetPivotTablesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33714,7 +33650,7 @@ public async System.Threading.Tasks.Task> CellsP if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -33745,12 +33681,12 @@ public async System.Threading.Tasks.Task> CellsP /// The field index in the base fields. /// The fields area type. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PivotFieldResponse - public PivotFieldResponse CellsPivotTablesGetPivotTableField (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storage = null) + public PivotFieldResponse CellsPivotTablesGetPivotTableField (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesGetPivotTableFieldWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldIndex, pivotFieldType, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesGetPivotTableFieldWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldIndex, pivotFieldType, folder, storageName); return localVarResponse.Data; } @@ -33764,9 +33700,9 @@ public PivotFieldResponse CellsPivotTablesGetPivotTableField (string name, strin /// The field index in the base fields. /// The fields area type. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PivotFieldResponse - public ApiResponse< PivotFieldResponse > CellsPivotTablesGetPivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storage = null) + public ApiResponse< PivotFieldResponse > CellsPivotTablesGetPivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33812,7 +33748,7 @@ public ApiResponse< PivotFieldResponse > CellsPivotTablesGetPivotTableFieldWithH if (pivotFieldIndex != null) localVarQueryParams.Add("pivotFieldIndex", Configuration.ApiClient.ParameterToString(pivotFieldIndex)); // query parameter if (pivotFieldType != null) localVarQueryParams.Add("pivotFieldType", Configuration.ApiClient.ParameterToString(pivotFieldType)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -33843,11 +33779,11 @@ public ApiResponse< PivotFieldResponse > CellsPivotTablesGetPivotTableFieldWithH /// The field index in the base fields. /// The fields area type. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PivotFieldResponse - public async System.Threading.Tasks.Task CellsPivotTablesGetPivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesGetPivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesGetPivotTableFieldAsyncWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldIndex, pivotFieldType, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesGetPivotTableFieldAsyncWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldIndex, pivotFieldType, folder, storageName); return localVarResponse.Data; } @@ -33862,9 +33798,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesGet /// The field index in the base fields. /// The fields area type. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PivotFieldResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesGetPivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesGetPivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? pivotFieldIndex, string pivotFieldType, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33910,7 +33846,7 @@ public async System.Threading.Tasks.Task> CellsP if (pivotFieldIndex != null) localVarQueryParams.Add("pivotFieldIndex", Configuration.ApiClient.ParameterToString(pivotFieldIndex)); // query parameter if (pivotFieldType != null) localVarQueryParams.Add("pivotFieldType", Configuration.ApiClient.ParameterToString(pivotFieldType)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -33939,12 +33875,12 @@ public async System.Threading.Tasks.Task> CellsP /// The worksheet name. /// /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PivotTableResponse - public PivotTableResponse CellsPivotTablesGetWorksheetPivotTable (string name, string sheetName, int? pivottableIndex, string folder = null, string storage = null) + public PivotTableResponse CellsPivotTablesGetWorksheetPivotTable (string name, string sheetName, int? pivottableIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesGetWorksheetPivotTableWithHttpInfo(name, sheetName, pivottableIndex, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesGetWorksheetPivotTableWithHttpInfo(name, sheetName, pivottableIndex, folder, storageName); return localVarResponse.Data; } @@ -33956,9 +33892,9 @@ public PivotTableResponse CellsPivotTablesGetWorksheetPivotTable (string name, s /// The worksheet name. /// /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PivotTableResponse - public ApiResponse< PivotTableResponse > CellsPivotTablesGetWorksheetPivotTableWithHttpInfo (string name, string sheetName, int? pivottableIndex, string folder = null, string storage = null) + public ApiResponse< PivotTableResponse > CellsPivotTablesGetWorksheetPivotTableWithHttpInfo (string name, string sheetName, int? pivottableIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -33996,7 +33932,7 @@ public ApiResponse< PivotTableResponse > CellsPivotTablesGetWorksheetPivotTableW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pivottableIndex != null) localVarPathParams.Add("pivottableIndex", Configuration.ApiClient.ParameterToString(pivottableIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -34025,11 +33961,11 @@ public ApiResponse< PivotTableResponse > CellsPivotTablesGetWorksheetPivotTableW /// The worksheet name. /// /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PivotTableResponse - public async System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableAsync (string name, string sheetName, int? pivottableIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableAsync (string name, string sheetName, int? pivottableIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesGetWorksheetPivotTableAsyncWithHttpInfo(name, sheetName, pivottableIndex, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesGetWorksheetPivotTableAsyncWithHttpInfo(name, sheetName, pivottableIndex, folder, storageName); return localVarResponse.Data; } @@ -34042,9 +33978,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesGet /// The worksheet name. /// /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PivotTableResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, int? pivottableIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, int? pivottableIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -34082,7 +34018,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pivottableIndex != null) localVarPathParams.Add("pivottableIndex", Configuration.ApiClient.ParameterToString(pivottableIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -34112,12 +34048,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// PivotFilterResponse - public PivotFilterResponse CellsPivotTablesGetWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storage = null) + public PivotFilterResponse CellsPivotTablesGetWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesGetWorksheetPivotTableFilterWithHttpInfo(name, sheetName, pivotTableIndex, filterIndex, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesGetWorksheetPivotTableFilterWithHttpInfo(name, sheetName, pivotTableIndex, filterIndex, folder, storageName); return localVarResponse.Data; } @@ -34130,9 +34066,9 @@ public PivotFilterResponse CellsPivotTablesGetWorksheetPivotTableFilter (string /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PivotFilterResponse - public ApiResponse< PivotFilterResponse > CellsPivotTablesGetWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storage = null) + public ApiResponse< PivotFilterResponse > CellsPivotTablesGetWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -34174,7 +34110,7 @@ public ApiResponse< PivotFilterResponse > CellsPivotTablesGetWorksheetPivotTable if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (filterIndex != null) localVarPathParams.Add("filterIndex", Configuration.ApiClient.ParameterToString(filterIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -34204,11 +34140,11 @@ public ApiResponse< PivotFilterResponse > CellsPivotTablesGetWorksheetPivotTable /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PivotFilterResponse - public async System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesGetWorksheetPivotTableFilterAsyncWithHttpInfo(name, sheetName, pivotTableIndex, filterIndex, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesGetWorksheetPivotTableFilterAsyncWithHttpInfo(name, sheetName, pivotTableIndex, filterIndex, folder, storageName); return localVarResponse.Data; } @@ -34222,9 +34158,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesGe /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PivotFilterResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? filterIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -34266,7 +34202,7 @@ public async System.Threading.Tasks.Task> Cells if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (filterIndex != null) localVarPathParams.Add("filterIndex", Configuration.ApiClient.ParameterToString(filterIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -34295,12 +34231,12 @@ public async System.Threading.Tasks.Task> Cells /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// PivotFiltersResponse - public PivotFiltersResponse CellsPivotTablesGetWorksheetPivotTableFilters (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public PivotFiltersResponse CellsPivotTablesGetWorksheetPivotTableFilters (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesGetWorksheetPivotTableFiltersWithHttpInfo(name, sheetName, pivotTableIndex, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesGetWorksheetPivotTableFiltersWithHttpInfo(name, sheetName, pivotTableIndex, folder, storageName); return localVarResponse.Data; } @@ -34312,9 +34248,9 @@ public PivotFiltersResponse CellsPivotTablesGetWorksheetPivotTableFilters (strin /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PivotFiltersResponse - public ApiResponse< PivotFiltersResponse > CellsPivotTablesGetWorksheetPivotTableFiltersWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public ApiResponse< PivotFiltersResponse > CellsPivotTablesGetWorksheetPivotTableFiltersWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -34352,7 +34288,7 @@ public ApiResponse< PivotFiltersResponse > CellsPivotTablesGetWorksheetPivotTabl if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -34381,11 +34317,11 @@ public ApiResponse< PivotFiltersResponse > CellsPivotTablesGetWorksheetPivotTabl /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PivotFiltersResponse - public async System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableFiltersAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTableFiltersAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesGetWorksheetPivotTableFiltersAsyncWithHttpInfo(name, sheetName, pivotTableIndex, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesGetWorksheetPivotTableFiltersAsyncWithHttpInfo(name, sheetName, pivotTableIndex, folder, storageName); return localVarResponse.Data; } @@ -34398,9 +34334,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesG /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PivotFiltersResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableFiltersAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTableFiltersAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -34438,7 +34374,7 @@ public async System.Threading.Tasks.Task> Cell if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -34466,12 +34402,12 @@ public async System.Threading.Tasks.Task> Cell /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// PivotTablesResponse - public PivotTablesResponse CellsPivotTablesGetWorksheetPivotTables (string name, string sheetName, string folder = null, string storage = null) + public PivotTablesResponse CellsPivotTablesGetWorksheetPivotTables (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesGetWorksheetPivotTablesWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesGetWorksheetPivotTablesWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -34482,9 +34418,9 @@ public PivotTablesResponse CellsPivotTablesGetWorksheetPivotTables (string name, /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of PivotTablesResponse - public ApiResponse< PivotTablesResponse > CellsPivotTablesGetWorksheetPivotTablesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< PivotTablesResponse > CellsPivotTablesGetWorksheetPivotTablesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -34518,7 +34454,7 @@ public ApiResponse< PivotTablesResponse > CellsPivotTablesGetWorksheetPivotTable if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -34546,11 +34482,11 @@ public ApiResponse< PivotTablesResponse > CellsPivotTablesGetWorksheetPivotTable /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of PivotTablesResponse - public async System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTablesAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesGetWorksheetPivotTablesAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesGetWorksheetPivotTablesAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesGetWorksheetPivotTablesAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -34562,9 +34498,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesGe /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (PivotTablesResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTablesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesGetWorksheetPivotTablesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -34598,7 +34534,7 @@ public async System.Threading.Tasks.Task> Cells if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -34631,12 +34567,12 @@ public async System.Threading.Tasks.Task> Cells /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesPostPivotTableCellStyle (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesPostPivotTableCellStyle (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesPostPivotTableCellStyleWithHttpInfo(name, sheetName, pivotTableIndex, column, row, style, needReCalculate, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesPostPivotTableCellStyleWithHttpInfo(name, sheetName, pivotTableIndex, column, row, style, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -34652,9 +34588,9 @@ public CellsCloudResponse CellsPivotTablesPostPivotTableCellStyle (string name, /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableCellStyleWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableCellStyleWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -34701,7 +34637,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableCellStyle if (row != null) localVarQueryParams.Add("row", Configuration.ApiClient.ParameterToString(row)); // query parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -34709,10 +34645,6 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableCellStyle else { localVarPostBody = style; // byte array - if ( "CellsPivotTablesPostPivotTableCellStyle" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -34746,11 +34678,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableCellStyle /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesPostPivotTableCellStyleAsync (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesPostPivotTableCellStyleAsync (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesPostPivotTableCellStyleAsyncWithHttpInfo(name, sheetName, pivotTableIndex, column, row, style, needReCalculate, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesPostPivotTableCellStyleAsyncWithHttpInfo(name, sheetName, pivotTableIndex, column, row, style, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -34767,9 +34699,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesPos /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableCellStyleAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableCellStyleAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? column, int? row, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -34816,7 +34748,7 @@ public async System.Threading.Tasks.Task> CellsP if (row != null) localVarQueryParams.Add("row", Configuration.ApiClient.ParameterToString(row)); // query parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -34858,12 +34790,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesPostPivotTableFieldHideItem (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesPostPivotTableFieldHideItem (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesPostPivotTableFieldHideItemWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, fieldIndex, itemIndex, isHide, needReCalculate, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesPostPivotTableFieldHideItemWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, fieldIndex, itemIndex, isHide, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -34880,9 +34812,9 @@ public CellsCloudResponse CellsPivotTablesPostPivotTableFieldHideItem (string na /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableFieldHideItemWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableFieldHideItemWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -34937,7 +34869,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableFieldHide if (isHide != null) localVarQueryParams.Add("isHide", Configuration.ApiClient.ParameterToString(isHide)); // query parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -34971,11 +34903,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableFieldHide /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesPostPivotTableFieldHideItemAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesPostPivotTableFieldHideItemAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesPostPivotTableFieldHideItemAsyncWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, fieldIndex, itemIndex, isHide, needReCalculate, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesPostPivotTableFieldHideItemAsyncWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, fieldIndex, itemIndex, isHide, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -34993,9 +34925,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesPos /// /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableFieldHideItemAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableFieldHideItemAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, int? fieldIndex, int? itemIndex, bool? isHide, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -35050,7 +34982,7 @@ public async System.Threading.Tasks.Task> CellsP if (isHide != null) localVarQueryParams.Add("isHide", Configuration.ApiClient.ParameterToString(isHide)); // query parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -35082,12 +35014,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesPostPivotTableFieldMoveTo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesPostPivotTableFieldMoveTo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesPostPivotTableFieldMoveToWithHttpInfo(name, sheetName, pivotTableIndex, fieldIndex, from, to, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesPostPivotTableFieldMoveToWithHttpInfo(name, sheetName, pivotTableIndex, fieldIndex, from, to, folder, storageName); return localVarResponse.Data; } @@ -35102,9 +35034,9 @@ public CellsCloudResponse CellsPivotTablesPostPivotTableFieldMoveTo (string name /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableFieldMoveToWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableFieldMoveToWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -35154,7 +35086,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableFieldMove if (from != null) localVarQueryParams.Add("from", Configuration.ApiClient.ParameterToString(from)); // query parameter if (to != null) localVarQueryParams.Add("to", Configuration.ApiClient.ParameterToString(to)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -35186,11 +35118,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableFieldMove /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesPostPivotTableFieldMoveToAsync (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesPostPivotTableFieldMoveToAsync (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesPostPivotTableFieldMoveToAsyncWithHttpInfo(name, sheetName, pivotTableIndex, fieldIndex, from, to, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesPostPivotTableFieldMoveToAsyncWithHttpInfo(name, sheetName, pivotTableIndex, fieldIndex, from, to, folder, storageName); return localVarResponse.Data; } @@ -35206,9 +35138,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesPos /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableFieldMoveToAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableFieldMoveToAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? fieldIndex, string from, string to, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -35258,7 +35190,7 @@ public async System.Threading.Tasks.Task> CellsP if (from != null) localVarQueryParams.Add("from", Configuration.ApiClient.ParameterToString(from)); // query parameter if (to != null) localVarQueryParams.Add("to", Configuration.ApiClient.ParameterToString(to)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -35289,12 +35221,12 @@ public async System.Threading.Tasks.Task> CellsP /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesPostPivotTableStyle (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesPostPivotTableStyle (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesPostPivotTableStyleWithHttpInfo(name, sheetName, pivotTableIndex, style, needReCalculate, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesPostPivotTableStyleWithHttpInfo(name, sheetName, pivotTableIndex, style, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -35308,9 +35240,9 @@ public CellsCloudResponse CellsPivotTablesPostPivotTableStyle (string name, stri /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableStyleWithHttpInfo (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableStyleWithHttpInfo (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -35349,7 +35281,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableStyleWith if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -35357,10 +35289,6 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableStyleWith else { localVarPostBody = style; // byte array - if ( "CellsPivotTablesPostPivotTableStyle" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -35392,11 +35320,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostPivotTableStyleWith /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesPostPivotTableStyleAsync (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesPostPivotTableStyleAsync (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesPostPivotTableStyleAsyncWithHttpInfo(name, sheetName, pivotTableIndex, style, needReCalculate, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesPostPivotTableStyleAsyncWithHttpInfo(name, sheetName, pivotTableIndex, style, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -35411,9 +35339,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesPos /// Style dto in request body. (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableStyleAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesPostPivotTableStyleAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, Style style = null, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -35452,7 +35380,7 @@ public async System.Threading.Tasks.Task> CellsP if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -35489,12 +35417,12 @@ public async System.Threading.Tasks.Task> CellsP /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesPostWorksheetPivotTableCalculate (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesPostWorksheetPivotTableCalculate (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesPostWorksheetPivotTableCalculateWithHttpInfo(name, sheetName, pivotTableIndex, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesPostWorksheetPivotTableCalculateWithHttpInfo(name, sheetName, pivotTableIndex, folder, storageName); return localVarResponse.Data; } @@ -35506,9 +35434,9 @@ public CellsCloudResponse CellsPivotTablesPostWorksheetPivotTableCalculate (stri /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesPostWorksheetPivotTableCalculateWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesPostWorksheetPivotTableCalculateWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -35546,7 +35474,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostWorksheetPivotTable if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -35575,11 +35503,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostWorksheetPivotTable /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesPostWorksheetPivotTableCalculateAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesPostWorksheetPivotTableCalculateAsync (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesPostWorksheetPivotTableCalculateAsyncWithHttpInfo(name, sheetName, pivotTableIndex, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesPostWorksheetPivotTableCalculateAsyncWithHttpInfo(name, sheetName, pivotTableIndex, folder, storageName); return localVarResponse.Data; } @@ -35592,9 +35520,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesPos /// The worksheet name. /// Pivot table index /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesPostWorksheetPivotTableCalculateAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesPostWorksheetPivotTableCalculateAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -35632,7 +35560,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -35664,12 +35592,12 @@ public async System.Threading.Tasks.Task> CellsP /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesPostWorksheetPivotTableMove (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesPostWorksheetPivotTableMove (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesPostWorksheetPivotTableMoveWithHttpInfo(name, sheetName, pivotTableIndex, row, column, destCellName, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesPostWorksheetPivotTableMoveWithHttpInfo(name, sheetName, pivotTableIndex, row, column, destCellName, folder, storageName); return localVarResponse.Data; } @@ -35684,9 +35612,9 @@ public CellsCloudResponse CellsPivotTablesPostWorksheetPivotTableMove (string na /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesPostWorksheetPivotTableMoveWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesPostWorksheetPivotTableMoveWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -35727,7 +35655,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostWorksheetPivotTable if (column != null) localVarQueryParams.Add("column", Configuration.ApiClient.ParameterToString(column)); // query parameter if (destCellName != null) localVarQueryParams.Add("destCellName", Configuration.ApiClient.ParameterToString(destCellName)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -35759,11 +35687,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPostWorksheetPivotTable /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesPostWorksheetPivotTableMoveAsync (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesPostWorksheetPivotTableMoveAsync (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesPostWorksheetPivotTableMoveAsyncWithHttpInfo(name, sheetName, pivotTableIndex, row, column, destCellName, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesPostWorksheetPivotTableMoveAsyncWithHttpInfo(name, sheetName, pivotTableIndex, row, column, destCellName, folder, storageName); return localVarResponse.Data; } @@ -35779,9 +35707,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesPos /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesPostWorksheetPivotTableMoveAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesPostWorksheetPivotTableMoveAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, int? row = null, int? column = null, string destCellName = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -35822,7 +35750,7 @@ public async System.Threading.Tasks.Task> CellsP if (column != null) localVarQueryParams.Add("column", Configuration.ApiClient.ParameterToString(column)); // query parameter if (destCellName != null) localVarQueryParams.Add("destCellName", Configuration.ApiClient.ParameterToString(destCellName)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -35854,12 +35782,12 @@ public async System.Threading.Tasks.Task> CellsP /// Dto that conrains field indexes (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesPutPivotTableField (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesPutPivotTableField (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesPutPivotTableFieldWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, request, needReCalculate, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesPutPivotTableFieldWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, request, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -35874,9 +35802,9 @@ public CellsCloudResponse CellsPivotTablesPutPivotTableField (string name, strin /// Dto that conrains field indexes (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesPutPivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesPutPivotTableFieldWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -35919,7 +35847,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPutPivotTableFieldWithH if (pivotFieldType != null) localVarQueryParams.Add("pivotFieldType", Configuration.ApiClient.ParameterToString(pivotFieldType)); // query parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (request != null && request.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(request); // http body (model) parameter @@ -35927,10 +35855,6 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPutPivotTableFieldWithH else { localVarPostBody = request; // byte array - if ( "CellsPivotTablesPutPivotTableField" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -35963,11 +35887,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPutPivotTableFieldWithH /// Dto that conrains field indexes (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesPutPivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesPutPivotTableFieldAsync (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesPutPivotTableFieldAsyncWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, request, needReCalculate, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesPutPivotTableFieldAsyncWithHttpInfo(name, sheetName, pivotTableIndex, pivotFieldType, request, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -35983,9 +35907,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesPut /// Dto that conrains field indexes (optional) /// (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesPutPivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesPutPivotTableFieldAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, string pivotFieldType, PivotTableFieldRequest request = null, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -36028,7 +35952,7 @@ public async System.Threading.Tasks.Task> CellsP if (pivotFieldType != null) localVarQueryParams.Add("pivotFieldType", Configuration.ApiClient.ParameterToString(pivotFieldType)); // query parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (request != null && request.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(request); // http body (model) parameter @@ -36065,16 +35989,16 @@ public async System.Threading.Tasks.Task> CellsP /// The worksheet name. /// CreatePivotTableRequest dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The data for the new PivotTable cache. (optional) /// The cell in the upper-left corner of the PivotTable report's destination range. (optional) /// The name of the new PivotTable report. (optional) /// Indicates whether using same data source when another existing pivot table has used this data source. If the property is true, it will save memory. (optional) /// PivotTableResponse - public PivotTableResponse CellsPivotTablesPutWorksheetPivotTable (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null) + public PivotTableResponse CellsPivotTablesPutWorksheetPivotTable (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesPutWorksheetPivotTableWithHttpInfo(name, sheetName, request, folder, storage, sourceData, destCellName, tableName, useSameSource); + ApiResponse localVarResponse = CellsPivotTablesPutWorksheetPivotTableWithHttpInfo(name, sheetName, request, folder, storageName, sourceData, destCellName, tableName, useSameSource); return localVarResponse.Data; } @@ -36086,13 +36010,13 @@ public PivotTableResponse CellsPivotTablesPutWorksheetPivotTable (string name, s /// The worksheet name. /// CreatePivotTableRequest dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The data for the new PivotTable cache. (optional) /// The cell in the upper-left corner of the PivotTable report's destination range. (optional) /// The name of the new PivotTable report. (optional) /// Indicates whether using same data source when another existing pivot table has used this data source. If the property is true, it will save memory. (optional) /// ApiResponse of PivotTableResponse - public ApiResponse< PivotTableResponse > CellsPivotTablesPutWorksheetPivotTableWithHttpInfo (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null) + public ApiResponse< PivotTableResponse > CellsPivotTablesPutWorksheetPivotTableWithHttpInfo (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null) { // verify the required parameter 'name' is set if (name == null) @@ -36126,7 +36050,7 @@ public ApiResponse< PivotTableResponse > CellsPivotTablesPutWorksheetPivotTableW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (sourceData != null) localVarQueryParams.Add("sourceData", Configuration.ApiClient.ParameterToString(sourceData)); // query parameter if (destCellName != null) localVarQueryParams.Add("destCellName", Configuration.ApiClient.ParameterToString(destCellName)); // query parameter if (tableName != null) localVarQueryParams.Add("tableName", Configuration.ApiClient.ParameterToString(tableName)); // query parameter @@ -36138,10 +36062,6 @@ public ApiResponse< PivotTableResponse > CellsPivotTablesPutWorksheetPivotTableW else { localVarPostBody = request; // byte array - if ( "CellsPivotTablesPutWorksheetPivotTable" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -36171,15 +36091,15 @@ public ApiResponse< PivotTableResponse > CellsPivotTablesPutWorksheetPivotTableW /// The worksheet name. /// CreatePivotTableRequest dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The data for the new PivotTable cache. (optional) /// The cell in the upper-left corner of the PivotTable report's destination range. (optional) /// The name of the new PivotTable report. (optional) /// Indicates whether using same data source when another existing pivot table has used this data source. If the property is true, it will save memory. (optional) /// Task of PivotTableResponse - public async System.Threading.Tasks.Task CellsPivotTablesPutWorksheetPivotTableAsync (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null) + public async System.Threading.Tasks.Task CellsPivotTablesPutWorksheetPivotTableAsync (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null) { - ApiResponse localVarResponse = await CellsPivotTablesPutWorksheetPivotTableAsyncWithHttpInfo(name, sheetName, request, folder, storage, sourceData, destCellName, tableName, useSameSource); + ApiResponse localVarResponse = await CellsPivotTablesPutWorksheetPivotTableAsyncWithHttpInfo(name, sheetName, request, folder, storageName, sourceData, destCellName, tableName, useSameSource); return localVarResponse.Data; } @@ -36192,13 +36112,13 @@ public async System.Threading.Tasks.Task CellsPivotTablesPut /// The worksheet name. /// CreatePivotTableRequest dto in request body. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The data for the new PivotTable cache. (optional) /// The cell in the upper-left corner of the PivotTable report's destination range. (optional) /// The name of the new PivotTable report. (optional) /// Indicates whether using same data source when another existing pivot table has used this data source. If the property is true, it will save memory. (optional) /// Task of ApiResponse (PivotTableResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesPutWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storage = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null) + public async System.Threading.Tasks.Task> CellsPivotTablesPutWorksheetPivotTableAsyncWithHttpInfo (string name, string sheetName, CreatePivotTableRequest request = null, string folder = null, string storageName = null, string sourceData = null, string destCellName = null, string tableName = null, bool? useSameSource = null) { // verify the required parameter 'name' is set if (name == null) @@ -36232,7 +36152,7 @@ public async System.Threading.Tasks.Task> CellsP if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (sourceData != null) localVarQueryParams.Add("sourceData", Configuration.ApiClient.ParameterToString(sourceData)); // query parameter if (destCellName != null) localVarQueryParams.Add("destCellName", Configuration.ApiClient.ParameterToString(destCellName)); // query parameter if (tableName != null) localVarQueryParams.Add("tableName", Configuration.ApiClient.ParameterToString(tableName)); // query parameter @@ -36275,12 +36195,12 @@ public async System.Threading.Tasks.Task> CellsP /// (optional) /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPivotTablesPutWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPivotTablesPutWorksheetPivotTableFilter (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPivotTablesPutWorksheetPivotTableFilterWithHttpInfo(name, sheetName, pivotTableIndex, filter, needReCalculate, folder, storage); + ApiResponse localVarResponse = CellsPivotTablesPutWorksheetPivotTableFilterWithHttpInfo(name, sheetName, pivotTableIndex, filter, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -36294,9 +36214,9 @@ public CellsCloudResponse CellsPivotTablesPutWorksheetPivotTableFilter (string n /// (optional) /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPivotTablesPutWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPivotTablesPutWorksheetPivotTableFilterWithHttpInfo (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -36335,7 +36255,7 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPutWorksheetPivotTableF if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (filter != null && filter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(filter); // http body (model) parameter @@ -36343,10 +36263,6 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPutWorksheetPivotTableF else { localVarPostBody = filter; // byte array - if ( "CellsPivotTablesPutWorksheetPivotTableFilter" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -36378,11 +36294,11 @@ public ApiResponse< CellsCloudResponse > CellsPivotTablesPutWorksheetPivotTableF /// (optional) /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPivotTablesPutWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPivotTablesPutWorksheetPivotTableFilterAsync (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPivotTablesPutWorksheetPivotTableFilterAsyncWithHttpInfo(name, sheetName, pivotTableIndex, filter, needReCalculate, folder, storage); + ApiResponse localVarResponse = await CellsPivotTablesPutWorksheetPivotTableFilterAsyncWithHttpInfo(name, sheetName, pivotTableIndex, filter, needReCalculate, folder, storageName); return localVarResponse.Data; } @@ -36397,9 +36313,9 @@ public async System.Threading.Tasks.Task CellsPivotTablesPut /// (optional) /// (optional, default to false) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPivotTablesPutWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPivotTablesPutWorksheetPivotTableFilterAsyncWithHttpInfo (string name, string sheetName, int? pivotTableIndex, PivotFilter filter = null, bool? needReCalculate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -36438,7 +36354,7 @@ public async System.Threading.Tasks.Task> CellsP if (pivotTableIndex != null) localVarPathParams.Add("pivotTableIndex", Configuration.ApiClient.ParameterToString(pivotTableIndex)); // path parameter if (needReCalculate != null) localVarQueryParams.Add("needReCalculate", Configuration.ApiClient.ParameterToString(needReCalculate)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (filter != null && filter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(filter); // http body (model) parameter @@ -36476,12 +36392,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostCellCalculate (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostCellCalculate (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostCellCalculateWithHttpInfo(name, sheetName, cellName, options, folder, storage); + ApiResponse localVarResponse = CellsPostCellCalculateWithHttpInfo(name, sheetName, cellName, options, folder, storageName); return localVarResponse.Data; } @@ -36494,9 +36410,9 @@ public CellsCloudResponse CellsPostCellCalculate (string name, string sheetName, /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostCellCalculateWithHttpInfo (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostCellCalculateWithHttpInfo (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -36534,7 +36450,7 @@ public ApiResponse< CellsCloudResponse > CellsPostCellCalculateWithHttpInfo (str if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (options != null && options.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(options); // http body (model) parameter @@ -36542,10 +36458,6 @@ public ApiResponse< CellsCloudResponse > CellsPostCellCalculateWithHttpInfo (str else { localVarPostBody = options; // byte array - if ( "CellsPostCellCalculate" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -36576,11 +36488,11 @@ public ApiResponse< CellsCloudResponse > CellsPostCellCalculateWithHttpInfo (str /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostCellCalculateAsync (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostCellCalculateAsync (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostCellCalculateAsyncWithHttpInfo(name, sheetName, cellName, options, folder, storage); + ApiResponse localVarResponse = await CellsPostCellCalculateAsyncWithHttpInfo(name, sheetName, cellName, options, folder, storageName); return localVarResponse.Data; } @@ -36594,9 +36506,9 @@ public async System.Threading.Tasks.Task CellsPostCellCalcul /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostCellCalculateAsyncWithHttpInfo (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostCellCalculateAsyncWithHttpInfo (string name, string sheetName, string cellName, CalculationOptions options = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -36634,7 +36546,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (options != null && options.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(options); // http body (model) parameter @@ -36672,12 +36584,12 @@ public async System.Threading.Tasks.Task> CellsP /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostCellCharacters (string name, string sheetName, string cellName, List options = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostCellCharacters (string name, string sheetName, string cellName, List options = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostCellCharactersWithHttpInfo(name, sheetName, cellName, options, folder, storage); + ApiResponse localVarResponse = CellsPostCellCharactersWithHttpInfo(name, sheetName, cellName, options, folder, storageName); return localVarResponse.Data; } @@ -36690,9 +36602,9 @@ public CellsCloudResponse CellsPostCellCharacters (string name, string sheetName /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostCellCharactersWithHttpInfo (string name, string sheetName, string cellName, List options = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostCellCharactersWithHttpInfo (string name, string sheetName, string cellName, List options = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -36730,7 +36642,7 @@ public ApiResponse< CellsCloudResponse > CellsPostCellCharactersWithHttpInfo (st if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (options != null && options.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(options); // http body (model) parameter @@ -36738,10 +36650,6 @@ public ApiResponse< CellsCloudResponse > CellsPostCellCharactersWithHttpInfo (st else { localVarPostBody = options; // byte array - if ( "CellsPostCellCharacters" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -36772,11 +36680,11 @@ public ApiResponse< CellsCloudResponse > CellsPostCellCharactersWithHttpInfo (st /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostCellCharactersAsync (string name, string sheetName, string cellName, List options = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostCellCharactersAsync (string name, string sheetName, string cellName, List options = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostCellCharactersAsyncWithHttpInfo(name, sheetName, cellName, options, folder, storage); + ApiResponse localVarResponse = await CellsPostCellCharactersAsyncWithHttpInfo(name, sheetName, cellName, options, folder, storageName); return localVarResponse.Data; } @@ -36790,9 +36698,9 @@ public async System.Threading.Tasks.Task CellsPostCellCharac /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostCellCharactersAsyncWithHttpInfo (string name, string sheetName, string cellName, List options = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostCellCharactersAsyncWithHttpInfo (string name, string sheetName, string cellName, List options = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -36830,7 +36738,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (options != null && options.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(options); // http body (model) parameter @@ -36871,12 +36779,12 @@ public async System.Threading.Tasks.Task> CellsP /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostClearContents (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostClearContents (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostClearContentsWithHttpInfo(name, sheetName, range, startRow, startColumn, endRow, endColumn, folder, storage); + ApiResponse localVarResponse = CellsPostClearContentsWithHttpInfo(name, sheetName, range, startRow, startColumn, endRow, endColumn, folder, storageName); return localVarResponse.Data; } @@ -36892,9 +36800,9 @@ public CellsCloudResponse CellsPostClearContents (string name, string sheetName, /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostClearContentsWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostClearContentsWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -36933,7 +36841,7 @@ public ApiResponse< CellsCloudResponse > CellsPostClearContentsWithHttpInfo (str if (endRow != null) localVarQueryParams.Add("endRow", Configuration.ApiClient.ParameterToString(endRow)); // query parameter if (endColumn != null) localVarQueryParams.Add("endColumn", Configuration.ApiClient.ParameterToString(endColumn)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -36966,11 +36874,11 @@ public ApiResponse< CellsCloudResponse > CellsPostClearContentsWithHttpInfo (str /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostClearContentsAsync (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostClearContentsAsync (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostClearContentsAsyncWithHttpInfo(name, sheetName, range, startRow, startColumn, endRow, endColumn, folder, storage); + ApiResponse localVarResponse = await CellsPostClearContentsAsyncWithHttpInfo(name, sheetName, range, startRow, startColumn, endRow, endColumn, folder, storageName); return localVarResponse.Data; } @@ -36987,9 +36895,9 @@ public async System.Threading.Tasks.Task CellsPostClearConte /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostClearContentsAsyncWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostClearContentsAsyncWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -37028,7 +36936,7 @@ public async System.Threading.Tasks.Task> CellsP if (endRow != null) localVarQueryParams.Add("endRow", Configuration.ApiClient.ParameterToString(endRow)); // query parameter if (endColumn != null) localVarQueryParams.Add("endColumn", Configuration.ApiClient.ParameterToString(endColumn)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -37061,12 +36969,12 @@ public async System.Threading.Tasks.Task> CellsP /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostClearFormats (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostClearFormats (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostClearFormatsWithHttpInfo(name, sheetName, range, startRow, startColumn, endRow, endColumn, folder, storage); + ApiResponse localVarResponse = CellsPostClearFormatsWithHttpInfo(name, sheetName, range, startRow, startColumn, endRow, endColumn, folder, storageName); return localVarResponse.Data; } @@ -37082,9 +36990,9 @@ public CellsCloudResponse CellsPostClearFormats (string name, string sheetName, /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostClearFormatsWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostClearFormatsWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -37123,7 +37031,7 @@ public ApiResponse< CellsCloudResponse > CellsPostClearFormatsWithHttpInfo (stri if (endRow != null) localVarQueryParams.Add("endRow", Configuration.ApiClient.ParameterToString(endRow)); // query parameter if (endColumn != null) localVarQueryParams.Add("endColumn", Configuration.ApiClient.ParameterToString(endColumn)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -37156,11 +37064,11 @@ public ApiResponse< CellsCloudResponse > CellsPostClearFormatsWithHttpInfo (stri /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostClearFormatsAsync (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostClearFormatsAsync (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostClearFormatsAsyncWithHttpInfo(name, sheetName, range, startRow, startColumn, endRow, endColumn, folder, storage); + ApiResponse localVarResponse = await CellsPostClearFormatsAsyncWithHttpInfo(name, sheetName, range, startRow, startColumn, endRow, endColumn, folder, storageName); return localVarResponse.Data; } @@ -37177,9 +37085,9 @@ public async System.Threading.Tasks.Task CellsPostClearForma /// The end row. (optional) /// The end column. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostClearFormatsAsyncWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostClearFormatsAsyncWithHttpInfo (string name, string sheetName, string range = null, int? startRow = null, int? startColumn = null, int? endRow = null, int? endColumn = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -37218,7 +37126,7 @@ public async System.Threading.Tasks.Task> CellsP if (endRow != null) localVarQueryParams.Add("endRow", Configuration.ApiClient.ParameterToString(endRow)); // query parameter if (endColumn != null) localVarQueryParams.Add("endColumn", Configuration.ApiClient.ParameterToString(endColumn)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -37248,12 +37156,12 @@ public async System.Threading.Tasks.Task> CellsP /// The column index. /// Style dto (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostColumnStyle (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostColumnStyle (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostColumnStyleWithHttpInfo(name, sheetName, columnIndex, style, folder, storage); + ApiResponse localVarResponse = CellsPostColumnStyleWithHttpInfo(name, sheetName, columnIndex, style, folder, storageName); return localVarResponse.Data; } @@ -37266,9 +37174,9 @@ public CellsCloudResponse CellsPostColumnStyle (string name, string sheetName, i /// The column index. /// Style dto (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostColumnStyleWithHttpInfo (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostColumnStyleWithHttpInfo (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -37306,7 +37214,7 @@ public ApiResponse< CellsCloudResponse > CellsPostColumnStyleWithHttpInfo (strin if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (columnIndex != null) localVarPathParams.Add("columnIndex", Configuration.ApiClient.ParameterToString(columnIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -37314,10 +37222,6 @@ public ApiResponse< CellsCloudResponse > CellsPostColumnStyleWithHttpInfo (strin else { localVarPostBody = style; // byte array - if ( "CellsPostColumnStyle" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -37348,11 +37252,11 @@ public ApiResponse< CellsCloudResponse > CellsPostColumnStyleWithHttpInfo (strin /// The column index. /// Style dto (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostColumnStyleAsync (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostColumnStyleAsync (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostColumnStyleAsyncWithHttpInfo(name, sheetName, columnIndex, style, folder, storage); + ApiResponse localVarResponse = await CellsPostColumnStyleAsyncWithHttpInfo(name, sheetName, columnIndex, style, folder, storageName); return localVarResponse.Data; } @@ -37366,9 +37270,9 @@ public async System.Threading.Tasks.Task CellsPostColumnStyl /// The column index. /// Style dto (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostColumnStyleAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostColumnStyleAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, Style style = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -37406,7 +37310,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (columnIndex != null) localVarPathParams.Add("columnIndex", Configuration.ApiClient.ParameterToString(columnIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -37447,12 +37351,12 @@ public async System.Threading.Tasks.Task> CellsP /// Source row (optional) /// Source column (optional) /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostCopyCellIntoCell (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostCopyCellIntoCell (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostCopyCellIntoCellWithHttpInfo(name, destCellName, sheetName, worksheet, cellname, row, column, folder, storage); + ApiResponse localVarResponse = CellsPostCopyCellIntoCellWithHttpInfo(name, destCellName, sheetName, worksheet, cellname, row, column, folder, storageName); return localVarResponse.Data; } @@ -37468,9 +37372,9 @@ public CellsCloudResponse CellsPostCopyCellIntoCell (string name, string destCel /// Source row (optional) /// Source column (optional) /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostCopyCellIntoCellWithHttpInfo (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostCopyCellIntoCellWithHttpInfo (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -37515,7 +37419,7 @@ public ApiResponse< CellsCloudResponse > CellsPostCopyCellIntoCellWithHttpInfo ( if (row != null) localVarQueryParams.Add("row", Configuration.ApiClient.ParameterToString(row)); // query parameter if (column != null) localVarQueryParams.Add("column", Configuration.ApiClient.ParameterToString(column)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -37548,11 +37452,11 @@ public ApiResponse< CellsCloudResponse > CellsPostCopyCellIntoCellWithHttpInfo ( /// Source row (optional) /// Source column (optional) /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostCopyCellIntoCellAsync (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostCopyCellIntoCellAsync (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostCopyCellIntoCellAsyncWithHttpInfo(name, destCellName, sheetName, worksheet, cellname, row, column, folder, storage); + ApiResponse localVarResponse = await CellsPostCopyCellIntoCellAsyncWithHttpInfo(name, destCellName, sheetName, worksheet, cellname, row, column, folder, storageName); return localVarResponse.Data; } @@ -37569,9 +37473,9 @@ public async System.Threading.Tasks.Task CellsPostCopyCellIn /// Source row (optional) /// Source column (optional) /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostCopyCellIntoCellAsyncWithHttpInfo (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostCopyCellIntoCellAsyncWithHttpInfo (string name, string destCellName, string sheetName, string worksheet, string cellname = null, int? row = null, int? column = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -37616,7 +37520,7 @@ public async System.Threading.Tasks.Task> CellsP if (row != null) localVarQueryParams.Add("row", Configuration.ApiClient.ParameterToString(row)); // query parameter if (column != null) localVarQueryParams.Add("column", Configuration.ApiClient.ParameterToString(column)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -37648,12 +37552,12 @@ public async System.Threading.Tasks.Task> CellsP /// The copied column number /// The Worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostCopyWorksheetColumns (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostCopyWorksheetColumns (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostCopyWorksheetColumnsWithHttpInfo(name, sheetName, sourceColumnIndex, destinationColumnIndex, columnNumber, worksheet, folder, storage); + ApiResponse localVarResponse = CellsPostCopyWorksheetColumnsWithHttpInfo(name, sheetName, sourceColumnIndex, destinationColumnIndex, columnNumber, worksheet, folder, storageName); return localVarResponse.Data; } @@ -37668,9 +37572,9 @@ public CellsCloudResponse CellsPostCopyWorksheetColumns (string name, string she /// The copied column number /// The Worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostCopyWorksheetColumnsWithHttpInfo (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostCopyWorksheetColumnsWithHttpInfo (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -37717,7 +37621,7 @@ public ApiResponse< CellsCloudResponse > CellsPostCopyWorksheetColumnsWithHttpIn if (columnNumber != null) localVarQueryParams.Add("columnNumber", Configuration.ApiClient.ParameterToString(columnNumber)); // query parameter if (worksheet != null) localVarQueryParams.Add("worksheet", Configuration.ApiClient.ParameterToString(worksheet)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -37749,11 +37653,11 @@ public ApiResponse< CellsCloudResponse > CellsPostCopyWorksheetColumnsWithHttpIn /// The copied column number /// The Worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostCopyWorksheetColumnsAsync (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostCopyWorksheetColumnsAsync (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostCopyWorksheetColumnsAsyncWithHttpInfo(name, sheetName, sourceColumnIndex, destinationColumnIndex, columnNumber, worksheet, folder, storage); + ApiResponse localVarResponse = await CellsPostCopyWorksheetColumnsAsyncWithHttpInfo(name, sheetName, sourceColumnIndex, destinationColumnIndex, columnNumber, worksheet, folder, storageName); return localVarResponse.Data; } @@ -37769,9 +37673,9 @@ public async System.Threading.Tasks.Task CellsPostCopyWorksh /// The copied column number /// The Worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostCopyWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostCopyWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? sourceColumnIndex, int? destinationColumnIndex, int? columnNumber, string worksheet = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -37818,7 +37722,7 @@ public async System.Threading.Tasks.Task> CellsP if (columnNumber != null) localVarQueryParams.Add("columnNumber", Configuration.ApiClient.ParameterToString(columnNumber)); // query parameter if (worksheet != null) localVarQueryParams.Add("worksheet", Configuration.ApiClient.ParameterToString(worksheet)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -37850,12 +37754,12 @@ public async System.Threading.Tasks.Task> CellsP /// The copied row number /// worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostCopyWorksheetRows (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostCopyWorksheetRows (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostCopyWorksheetRowsWithHttpInfo(name, sheetName, sourceRowIndex, destinationRowIndex, rowNumber, worksheet, folder, storage); + ApiResponse localVarResponse = CellsPostCopyWorksheetRowsWithHttpInfo(name, sheetName, sourceRowIndex, destinationRowIndex, rowNumber, worksheet, folder, storageName); return localVarResponse.Data; } @@ -37870,9 +37774,9 @@ public CellsCloudResponse CellsPostCopyWorksheetRows (string name, string sheetN /// The copied row number /// worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostCopyWorksheetRowsWithHttpInfo (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostCopyWorksheetRowsWithHttpInfo (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -37919,7 +37823,7 @@ public ApiResponse< CellsCloudResponse > CellsPostCopyWorksheetRowsWithHttpInfo if (rowNumber != null) localVarQueryParams.Add("rowNumber", Configuration.ApiClient.ParameterToString(rowNumber)); // query parameter if (worksheet != null) localVarQueryParams.Add("worksheet", Configuration.ApiClient.ParameterToString(worksheet)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -37951,11 +37855,11 @@ public ApiResponse< CellsCloudResponse > CellsPostCopyWorksheetRowsWithHttpInfo /// The copied row number /// worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostCopyWorksheetRowsAsync (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostCopyWorksheetRowsAsync (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostCopyWorksheetRowsAsyncWithHttpInfo(name, sheetName, sourceRowIndex, destinationRowIndex, rowNumber, worksheet, folder, storage); + ApiResponse localVarResponse = await CellsPostCopyWorksheetRowsAsyncWithHttpInfo(name, sheetName, sourceRowIndex, destinationRowIndex, rowNumber, worksheet, folder, storageName); return localVarResponse.Data; } @@ -37971,9 +37875,9 @@ public async System.Threading.Tasks.Task CellsPostCopyWorksh /// The copied row number /// worksheet (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostCopyWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostCopyWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? sourceRowIndex, int? destinationRowIndex, int? rowNumber, string worksheet = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -38020,7 +37924,7 @@ public async System.Threading.Tasks.Task> CellsP if (rowNumber != null) localVarQueryParams.Add("rowNumber", Configuration.ApiClient.ParameterToString(rowNumber)); // query parameter if (worksheet != null) localVarQueryParams.Add("worksheet", Configuration.ApiClient.ParameterToString(worksheet)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -38051,12 +37955,12 @@ public async System.Threading.Tasks.Task> CellsP /// The last column index to be operated. /// columns visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostGroupWorksheetColumns (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostGroupWorksheetColumns (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostGroupWorksheetColumnsWithHttpInfo(name, sheetName, firstIndex, lastIndex, hide, folder, storage); + ApiResponse localVarResponse = CellsPostGroupWorksheetColumnsWithHttpInfo(name, sheetName, firstIndex, lastIndex, hide, folder, storageName); return localVarResponse.Data; } @@ -38070,9 +37974,9 @@ public CellsCloudResponse CellsPostGroupWorksheetColumns (string name, string sh /// The last column index to be operated. /// columns visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostGroupWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostGroupWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -38115,7 +38019,7 @@ public ApiResponse< CellsCloudResponse > CellsPostGroupWorksheetColumnsWithHttpI if (lastIndex != null) localVarQueryParams.Add("lastIndex", Configuration.ApiClient.ParameterToString(lastIndex)); // query parameter if (hide != null) localVarQueryParams.Add("hide", Configuration.ApiClient.ParameterToString(hide)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -38146,11 +38050,11 @@ public ApiResponse< CellsCloudResponse > CellsPostGroupWorksheetColumnsWithHttpI /// The last column index to be operated. /// columns visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostGroupWorksheetColumnsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostGroupWorksheetColumnsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostGroupWorksheetColumnsAsyncWithHttpInfo(name, sheetName, firstIndex, lastIndex, hide, folder, storage); + ApiResponse localVarResponse = await CellsPostGroupWorksheetColumnsAsyncWithHttpInfo(name, sheetName, firstIndex, lastIndex, hide, folder, storageName); return localVarResponse.Data; } @@ -38165,9 +38069,9 @@ public async System.Threading.Tasks.Task CellsPostGroupWorks /// The last column index to be operated. /// columns visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostGroupWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostGroupWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -38210,7 +38114,7 @@ public async System.Threading.Tasks.Task> CellsP if (lastIndex != null) localVarQueryParams.Add("lastIndex", Configuration.ApiClient.ParameterToString(lastIndex)); // query parameter if (hide != null) localVarQueryParams.Add("hide", Configuration.ApiClient.ParameterToString(hide)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -38241,12 +38145,12 @@ public async System.Threading.Tasks.Task> CellsP /// The last row index to be operated. /// rows visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostGroupWorksheetRows (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostGroupWorksheetRows (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostGroupWorksheetRowsWithHttpInfo(name, sheetName, firstIndex, lastIndex, hide, folder, storage); + ApiResponse localVarResponse = CellsPostGroupWorksheetRowsWithHttpInfo(name, sheetName, firstIndex, lastIndex, hide, folder, storageName); return localVarResponse.Data; } @@ -38260,9 +38164,9 @@ public CellsCloudResponse CellsPostGroupWorksheetRows (string name, string sheet /// The last row index to be operated. /// rows visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostGroupWorksheetRowsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostGroupWorksheetRowsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -38305,7 +38209,7 @@ public ApiResponse< CellsCloudResponse > CellsPostGroupWorksheetRowsWithHttpInfo if (lastIndex != null) localVarQueryParams.Add("lastIndex", Configuration.ApiClient.ParameterToString(lastIndex)); // query parameter if (hide != null) localVarQueryParams.Add("hide", Configuration.ApiClient.ParameterToString(hide)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -38336,11 +38240,11 @@ public ApiResponse< CellsCloudResponse > CellsPostGroupWorksheetRowsWithHttpInfo /// The last row index to be operated. /// rows visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostGroupWorksheetRowsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostGroupWorksheetRowsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostGroupWorksheetRowsAsyncWithHttpInfo(name, sheetName, firstIndex, lastIndex, hide, folder, storage); + ApiResponse localVarResponse = await CellsPostGroupWorksheetRowsAsyncWithHttpInfo(name, sheetName, firstIndex, lastIndex, hide, folder, storageName); return localVarResponse.Data; } @@ -38355,9 +38259,9 @@ public async System.Threading.Tasks.Task CellsPostGroupWorks /// The last row index to be operated. /// rows visible state (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostGroupWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostGroupWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? hide = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -38400,7 +38304,7 @@ public async System.Threading.Tasks.Task> CellsP if (lastIndex != null) localVarQueryParams.Add("lastIndex", Configuration.ApiClient.ParameterToString(lastIndex)); // query parameter if (hide != null) localVarQueryParams.Add("hide", Configuration.ApiClient.ParameterToString(hide)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -38430,12 +38334,12 @@ public async System.Threading.Tasks.Task> CellsP /// The begin column index to be operated. /// Number of columns to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostHideWorksheetColumns (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storage = null) + public CellsCloudResponse CellsPostHideWorksheetColumns (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostHideWorksheetColumnsWithHttpInfo(name, sheetName, startColumn, totalColumns, folder, storage); + ApiResponse localVarResponse = CellsPostHideWorksheetColumnsWithHttpInfo(name, sheetName, startColumn, totalColumns, folder, storageName); return localVarResponse.Data; } @@ -38448,9 +38352,9 @@ public CellsCloudResponse CellsPostHideWorksheetColumns (string name, string she /// The begin column index to be operated. /// Number of columns to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostHideWorksheetColumnsWithHttpInfo (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostHideWorksheetColumnsWithHttpInfo (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -38492,7 +38396,7 @@ public ApiResponse< CellsCloudResponse > CellsPostHideWorksheetColumnsWithHttpIn if (startColumn != null) localVarQueryParams.Add("startColumn", Configuration.ApiClient.ParameterToString(startColumn)); // query parameter if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -38522,11 +38426,11 @@ public ApiResponse< CellsCloudResponse > CellsPostHideWorksheetColumnsWithHttpIn /// The begin column index to be operated. /// Number of columns to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostHideWorksheetColumnsAsync (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostHideWorksheetColumnsAsync (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostHideWorksheetColumnsAsyncWithHttpInfo(name, sheetName, startColumn, totalColumns, folder, storage); + ApiResponse localVarResponse = await CellsPostHideWorksheetColumnsAsyncWithHttpInfo(name, sheetName, startColumn, totalColumns, folder, storageName); return localVarResponse.Data; } @@ -38540,9 +38444,9 @@ public async System.Threading.Tasks.Task CellsPostHideWorksh /// The begin column index to be operated. /// Number of columns to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostHideWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostHideWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? startColumn, int? totalColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -38584,7 +38488,7 @@ public async System.Threading.Tasks.Task> CellsP if (startColumn != null) localVarQueryParams.Add("startColumn", Configuration.ApiClient.ParameterToString(startColumn)); // query parameter if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -38614,12 +38518,12 @@ public async System.Threading.Tasks.Task> CellsP /// The begin row index to be operated. /// Number of rows to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostHideWorksheetRows (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storage = null) + public CellsCloudResponse CellsPostHideWorksheetRows (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostHideWorksheetRowsWithHttpInfo(name, sheetName, startrow, totalRows, folder, storage); + ApiResponse localVarResponse = CellsPostHideWorksheetRowsWithHttpInfo(name, sheetName, startrow, totalRows, folder, storageName); return localVarResponse.Data; } @@ -38632,9 +38536,9 @@ public CellsCloudResponse CellsPostHideWorksheetRows (string name, string sheetN /// The begin row index to be operated. /// Number of rows to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostHideWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostHideWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -38676,7 +38580,7 @@ public ApiResponse< CellsCloudResponse > CellsPostHideWorksheetRowsWithHttpInfo if (startrow != null) localVarQueryParams.Add("startrow", Configuration.ApiClient.ParameterToString(startrow)); // query parameter if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -38706,11 +38610,11 @@ public ApiResponse< CellsCloudResponse > CellsPostHideWorksheetRowsWithHttpInfo /// The begin row index to be operated. /// Number of rows to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostHideWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostHideWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostHideWorksheetRowsAsyncWithHttpInfo(name, sheetName, startrow, totalRows, folder, storage); + ApiResponse localVarResponse = await CellsPostHideWorksheetRowsAsyncWithHttpInfo(name, sheetName, startrow, totalRows, folder, storageName); return localVarResponse.Data; } @@ -38724,9 +38628,9 @@ public async System.Threading.Tasks.Task CellsPostHideWorksh /// The begin row index to be operated. /// Number of rows to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostHideWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostHideWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -38768,7 +38672,7 @@ public async System.Threading.Tasks.Task> CellsP if (startrow != null) localVarQueryParams.Add("startrow", Configuration.ApiClient.ParameterToString(startrow)); // query parameter if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -38798,12 +38702,12 @@ public async System.Threading.Tasks.Task> CellsP /// The row index. /// Style dto (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostRowStyle (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostRowStyle (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostRowStyleWithHttpInfo(name, sheetName, rowIndex, style, folder, storage); + ApiResponse localVarResponse = CellsPostRowStyleWithHttpInfo(name, sheetName, rowIndex, style, folder, storageName); return localVarResponse.Data; } @@ -38816,9 +38720,9 @@ public CellsCloudResponse CellsPostRowStyle (string name, string sheetName, int? /// The row index. /// Style dto (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostRowStyleWithHttpInfo (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostRowStyleWithHttpInfo (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -38856,7 +38760,7 @@ public ApiResponse< CellsCloudResponse > CellsPostRowStyleWithHttpInfo (string n if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (rowIndex != null) localVarPathParams.Add("rowIndex", Configuration.ApiClient.ParameterToString(rowIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -38864,10 +38768,6 @@ public ApiResponse< CellsCloudResponse > CellsPostRowStyleWithHttpInfo (string n else { localVarPostBody = style; // byte array - if ( "CellsPostRowStyle" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -38898,11 +38798,11 @@ public ApiResponse< CellsCloudResponse > CellsPostRowStyleWithHttpInfo (string n /// The row index. /// Style dto (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostRowStyleAsync (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostRowStyleAsync (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostRowStyleAsyncWithHttpInfo(name, sheetName, rowIndex, style, folder, storage); + ApiResponse localVarResponse = await CellsPostRowStyleAsyncWithHttpInfo(name, sheetName, rowIndex, style, folder, storageName); return localVarResponse.Data; } @@ -38916,9 +38816,9 @@ public async System.Threading.Tasks.Task CellsPostRowStyleAs /// The row index. /// Style dto (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostRowStyleAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostRowStyleAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, Style style = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -38956,7 +38856,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (rowIndex != null) localVarPathParams.Add("rowIndex", Configuration.ApiClient.ParameterToString(rowIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -38994,12 +38894,12 @@ public async System.Threading.Tasks.Task> CellsP /// The cell name. /// /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellResponse - public CellResponse CellsPostSetCellHtmlString (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storage = null) + public CellResponse CellsPostSetCellHtmlString (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostSetCellHtmlStringWithHttpInfo(name, sheetName, cellName, htmlString, folder, storage); + ApiResponse localVarResponse = CellsPostSetCellHtmlStringWithHttpInfo(name, sheetName, cellName, htmlString, folder, storageName); return localVarResponse.Data; } @@ -39012,9 +38912,9 @@ public CellResponse CellsPostSetCellHtmlString (string name, string sheetName, s /// The cell name. /// /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellResponse - public ApiResponse< CellResponse > CellsPostSetCellHtmlStringWithHttpInfo (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storage = null) + public ApiResponse< CellResponse > CellsPostSetCellHtmlStringWithHttpInfo (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -39055,7 +38955,7 @@ public ApiResponse< CellResponse > CellsPostSetCellHtmlStringWithHttpInfo (strin if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (htmlString != null && htmlString.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(htmlString); // http body (model) parameter @@ -39063,10 +38963,6 @@ public ApiResponse< CellResponse > CellsPostSetCellHtmlStringWithHttpInfo (strin else { localVarPostBody = htmlString; // byte array - if ( "CellsPostSetCellHtmlString" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -39097,11 +38993,11 @@ public ApiResponse< CellResponse > CellsPostSetCellHtmlStringWithHttpInfo (strin /// The cell name. /// /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellResponse - public async System.Threading.Tasks.Task CellsPostSetCellHtmlStringAsync (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostSetCellHtmlStringAsync (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostSetCellHtmlStringAsyncWithHttpInfo(name, sheetName, cellName, htmlString, folder, storage); + ApiResponse localVarResponse = await CellsPostSetCellHtmlStringAsyncWithHttpInfo(name, sheetName, cellName, htmlString, folder, storageName); return localVarResponse.Data; } @@ -39115,9 +39011,9 @@ public async System.Threading.Tasks.Task CellsPostSetCellHtmlStrin /// The cell name. /// /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellResponse) - public async System.Threading.Tasks.Task> CellsPostSetCellHtmlStringAsyncWithHttpInfo (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostSetCellHtmlStringAsyncWithHttpInfo (string name, string sheetName, string cellName, byte[] htmlString, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -39158,7 +39054,7 @@ public async System.Threading.Tasks.Task> CellsPostSet if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (htmlString != null && htmlString.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(htmlString); // http body (model) parameter @@ -39197,12 +39093,12 @@ public async System.Threading.Tasks.Task> CellsPostSet /// Range value /// Value data type (like \"int\") /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostSetCellRangeValue (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storage = null) + public CellsCloudResponse CellsPostSetCellRangeValue (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostSetCellRangeValueWithHttpInfo(name, sheetName, cellarea, value, type, folder, storage); + ApiResponse localVarResponse = CellsPostSetCellRangeValueWithHttpInfo(name, sheetName, cellarea, value, type, folder, storageName); return localVarResponse.Data; } @@ -39216,9 +39112,9 @@ public CellsCloudResponse CellsPostSetCellRangeValue (string name, string sheetN /// Range value /// Value data type (like \"int\") /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostSetCellRangeValueWithHttpInfo (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostSetCellRangeValueWithHttpInfo (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -39264,7 +39160,7 @@ public ApiResponse< CellsCloudResponse > CellsPostSetCellRangeValueWithHttpInfo if (value != null) localVarQueryParams.Add("value", Configuration.ApiClient.ParameterToString(value)); // query parameter if (type != null) localVarQueryParams.Add("type", Configuration.ApiClient.ParameterToString(type)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -39295,11 +39191,11 @@ public ApiResponse< CellsCloudResponse > CellsPostSetCellRangeValueWithHttpInfo /// Range value /// Value data type (like \"int\") /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostSetCellRangeValueAsync (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostSetCellRangeValueAsync (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostSetCellRangeValueAsyncWithHttpInfo(name, sheetName, cellarea, value, type, folder, storage); + ApiResponse localVarResponse = await CellsPostSetCellRangeValueAsyncWithHttpInfo(name, sheetName, cellarea, value, type, folder, storageName); return localVarResponse.Data; } @@ -39314,9 +39210,9 @@ public async System.Threading.Tasks.Task CellsPostSetCellRan /// Range value /// Value data type (like \"int\") /// Folder name (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostSetCellRangeValueAsyncWithHttpInfo (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostSetCellRangeValueAsyncWithHttpInfo (string name, string sheetName, string cellarea, string value, string type, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -39362,7 +39258,7 @@ public async System.Threading.Tasks.Task> CellsP if (value != null) localVarQueryParams.Add("value", Configuration.ApiClient.ParameterToString(value)); // query parameter if (type != null) localVarQueryParams.Add("type", Configuration.ApiClient.ParameterToString(type)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -39392,12 +39288,12 @@ public async System.Threading.Tasks.Task> CellsP /// The column index. /// The width. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ColumnResponse - public ColumnResponse CellsPostSetWorksheetColumnWidth (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storage = null) + public ColumnResponse CellsPostSetWorksheetColumnWidth (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostSetWorksheetColumnWidthWithHttpInfo(name, sheetName, columnIndex, width, folder, storage); + ApiResponse localVarResponse = CellsPostSetWorksheetColumnWidthWithHttpInfo(name, sheetName, columnIndex, width, folder, storageName); return localVarResponse.Data; } @@ -39410,9 +39306,9 @@ public ColumnResponse CellsPostSetWorksheetColumnWidth (string name, string shee /// The column index. /// The width. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ColumnResponse - public ApiResponse< ColumnResponse > CellsPostSetWorksheetColumnWidthWithHttpInfo (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storage = null) + public ApiResponse< ColumnResponse > CellsPostSetWorksheetColumnWidthWithHttpInfo (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -39454,7 +39350,7 @@ public ApiResponse< ColumnResponse > CellsPostSetWorksheetColumnWidthWithHttpInf if (columnIndex != null) localVarPathParams.Add("columnIndex", Configuration.ApiClient.ParameterToString(columnIndex)); // path parameter if (width != null) localVarQueryParams.Add("width", Configuration.ApiClient.ParameterToString(width)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -39484,11 +39380,11 @@ public ApiResponse< ColumnResponse > CellsPostSetWorksheetColumnWidthWithHttpInf /// The column index. /// The width. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ColumnResponse - public async System.Threading.Tasks.Task CellsPostSetWorksheetColumnWidthAsync (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostSetWorksheetColumnWidthAsync (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostSetWorksheetColumnWidthAsyncWithHttpInfo(name, sheetName, columnIndex, width, folder, storage); + ApiResponse localVarResponse = await CellsPostSetWorksheetColumnWidthAsyncWithHttpInfo(name, sheetName, columnIndex, width, folder, storageName); return localVarResponse.Data; } @@ -39502,9 +39398,9 @@ public async System.Threading.Tasks.Task CellsPostSetWorksheetCo /// The column index. /// The width. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ColumnResponse) - public async System.Threading.Tasks.Task> CellsPostSetWorksheetColumnWidthAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostSetWorksheetColumnWidthAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, double? width, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -39546,7 +39442,7 @@ public async System.Threading.Tasks.Task> CellsPostS if (columnIndex != null) localVarPathParams.Add("columnIndex", Configuration.ApiClient.ParameterToString(columnIndex)); // path parameter if (width != null) localVarQueryParams.Add("width", Configuration.ApiClient.ParameterToString(width)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -39576,12 +39472,12 @@ public async System.Threading.Tasks.Task> CellsPostS /// The first column index to be operated. /// The last column index to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostUngroupWorksheetColumns (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storage = null) + public CellsCloudResponse CellsPostUngroupWorksheetColumns (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostUngroupWorksheetColumnsWithHttpInfo(name, sheetName, firstIndex, lastIndex, folder, storage); + ApiResponse localVarResponse = CellsPostUngroupWorksheetColumnsWithHttpInfo(name, sheetName, firstIndex, lastIndex, folder, storageName); return localVarResponse.Data; } @@ -39594,9 +39490,9 @@ public CellsCloudResponse CellsPostUngroupWorksheetColumns (string name, string /// The first column index to be operated. /// The last column index to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostUngroupWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostUngroupWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -39638,7 +39534,7 @@ public ApiResponse< CellsCloudResponse > CellsPostUngroupWorksheetColumnsWithHtt if (firstIndex != null) localVarQueryParams.Add("firstIndex", Configuration.ApiClient.ParameterToString(firstIndex)); // query parameter if (lastIndex != null) localVarQueryParams.Add("lastIndex", Configuration.ApiClient.ParameterToString(lastIndex)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -39668,11 +39564,11 @@ public ApiResponse< CellsCloudResponse > CellsPostUngroupWorksheetColumnsWithHtt /// The first column index to be operated. /// The last column index to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostUngroupWorksheetColumnsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostUngroupWorksheetColumnsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostUngroupWorksheetColumnsAsyncWithHttpInfo(name, sheetName, firstIndex, lastIndex, folder, storage); + ApiResponse localVarResponse = await CellsPostUngroupWorksheetColumnsAsyncWithHttpInfo(name, sheetName, firstIndex, lastIndex, folder, storageName); return localVarResponse.Data; } @@ -39686,9 +39582,9 @@ public async System.Threading.Tasks.Task CellsPostUngroupWor /// The first column index to be operated. /// The last column index to be operated. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostUngroupWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostUngroupWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -39730,7 +39626,7 @@ public async System.Threading.Tasks.Task> CellsP if (firstIndex != null) localVarQueryParams.Add("firstIndex", Configuration.ApiClient.ParameterToString(firstIndex)); // query parameter if (lastIndex != null) localVarQueryParams.Add("lastIndex", Configuration.ApiClient.ParameterToString(lastIndex)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -39761,12 +39657,12 @@ public async System.Threading.Tasks.Task> CellsP /// The last row index to be operated. /// Is all row to be operated (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostUngroupWorksheetRows (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostUngroupWorksheetRows (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostUngroupWorksheetRowsWithHttpInfo(name, sheetName, firstIndex, lastIndex, isAll, folder, storage); + ApiResponse localVarResponse = CellsPostUngroupWorksheetRowsWithHttpInfo(name, sheetName, firstIndex, lastIndex, isAll, folder, storageName); return localVarResponse.Data; } @@ -39780,9 +39676,9 @@ public CellsCloudResponse CellsPostUngroupWorksheetRows (string name, string she /// The last row index to be operated. /// Is all row to be operated (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostUngroupWorksheetRowsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostUngroupWorksheetRowsWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -39825,7 +39721,7 @@ public ApiResponse< CellsCloudResponse > CellsPostUngroupWorksheetRowsWithHttpIn if (lastIndex != null) localVarQueryParams.Add("lastIndex", Configuration.ApiClient.ParameterToString(lastIndex)); // query parameter if (isAll != null) localVarQueryParams.Add("isAll", Configuration.ApiClient.ParameterToString(isAll)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -39856,11 +39752,11 @@ public ApiResponse< CellsCloudResponse > CellsPostUngroupWorksheetRowsWithHttpIn /// The last row index to be operated. /// Is all row to be operated (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostUngroupWorksheetRowsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostUngroupWorksheetRowsAsync (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostUngroupWorksheetRowsAsyncWithHttpInfo(name, sheetName, firstIndex, lastIndex, isAll, folder, storage); + ApiResponse localVarResponse = await CellsPostUngroupWorksheetRowsAsyncWithHttpInfo(name, sheetName, firstIndex, lastIndex, isAll, folder, storageName); return localVarResponse.Data; } @@ -39875,9 +39771,9 @@ public async System.Threading.Tasks.Task CellsPostUngroupWor /// The last row index to be operated. /// Is all row to be operated (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostUngroupWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostUngroupWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? firstIndex, int? lastIndex, bool? isAll = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -39920,7 +39816,7 @@ public async System.Threading.Tasks.Task> CellsP if (lastIndex != null) localVarQueryParams.Add("lastIndex", Configuration.ApiClient.ParameterToString(lastIndex)); // query parameter if (isAll != null) localVarQueryParams.Add("isAll", Configuration.ApiClient.ParameterToString(isAll)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -39951,12 +39847,12 @@ public async System.Threading.Tasks.Task> CellsP /// Number of columns to be operated. /// The new column width. (optional, default to 50.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostUnhideWorksheetColumns (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostUnhideWorksheetColumns (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostUnhideWorksheetColumnsWithHttpInfo(name, sheetName, startcolumn, totalColumns, width, folder, storage); + ApiResponse localVarResponse = CellsPostUnhideWorksheetColumnsWithHttpInfo(name, sheetName, startcolumn, totalColumns, width, folder, storageName); return localVarResponse.Data; } @@ -39970,9 +39866,9 @@ public CellsCloudResponse CellsPostUnhideWorksheetColumns (string name, string s /// Number of columns to be operated. /// The new column width. (optional, default to 50.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostUnhideWorksheetColumnsWithHttpInfo (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostUnhideWorksheetColumnsWithHttpInfo (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -40015,7 +39911,7 @@ public ApiResponse< CellsCloudResponse > CellsPostUnhideWorksheetColumnsWithHttp if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (width != null) localVarQueryParams.Add("width", Configuration.ApiClient.ParameterToString(width)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -40046,11 +39942,11 @@ public ApiResponse< CellsCloudResponse > CellsPostUnhideWorksheetColumnsWithHttp /// Number of columns to be operated. /// The new column width. (optional, default to 50.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostUnhideWorksheetColumnsAsync (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostUnhideWorksheetColumnsAsync (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostUnhideWorksheetColumnsAsyncWithHttpInfo(name, sheetName, startcolumn, totalColumns, width, folder, storage); + ApiResponse localVarResponse = await CellsPostUnhideWorksheetColumnsAsyncWithHttpInfo(name, sheetName, startcolumn, totalColumns, width, folder, storageName); return localVarResponse.Data; } @@ -40065,9 +39961,9 @@ public async System.Threading.Tasks.Task CellsPostUnhideWork /// Number of columns to be operated. /// The new column width. (optional, default to 50.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostUnhideWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostUnhideWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? startcolumn, int? totalColumns, double? width = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -40110,7 +40006,7 @@ public async System.Threading.Tasks.Task> CellsP if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (width != null) localVarQueryParams.Add("width", Configuration.ApiClient.ParameterToString(width)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -40141,12 +40037,12 @@ public async System.Threading.Tasks.Task> CellsP /// Number of rows to be operated. /// The new row height. (optional, default to 15.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostUnhideWorksheetRows (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostUnhideWorksheetRows (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostUnhideWorksheetRowsWithHttpInfo(name, sheetName, startrow, totalRows, height, folder, storage); + ApiResponse localVarResponse = CellsPostUnhideWorksheetRowsWithHttpInfo(name, sheetName, startrow, totalRows, height, folder, storageName); return localVarResponse.Data; } @@ -40160,9 +40056,9 @@ public CellsCloudResponse CellsPostUnhideWorksheetRows (string name, string shee /// Number of rows to be operated. /// The new row height. (optional, default to 15.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostUnhideWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostUnhideWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -40205,7 +40101,7 @@ public ApiResponse< CellsCloudResponse > CellsPostUnhideWorksheetRowsWithHttpInf if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (height != null) localVarQueryParams.Add("height", Configuration.ApiClient.ParameterToString(height)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -40236,11 +40132,11 @@ public ApiResponse< CellsCloudResponse > CellsPostUnhideWorksheetRowsWithHttpInf /// Number of rows to be operated. /// The new row height. (optional, default to 15.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostUnhideWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostUnhideWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostUnhideWorksheetRowsAsyncWithHttpInfo(name, sheetName, startrow, totalRows, height, folder, storage); + ApiResponse localVarResponse = await CellsPostUnhideWorksheetRowsAsyncWithHttpInfo(name, sheetName, startrow, totalRows, height, folder, storageName); return localVarResponse.Data; } @@ -40255,9 +40151,9 @@ public async System.Threading.Tasks.Task CellsPostUnhideWork /// Number of rows to be operated. /// The new row height. (optional, default to 15.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostUnhideWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostUnhideWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows, double? height = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -40300,7 +40196,7 @@ public async System.Threading.Tasks.Task> CellsP if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (height != null) localVarQueryParams.Add("height", Configuration.ApiClient.ParameterToString(height)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -40330,12 +40226,12 @@ public async System.Threading.Tasks.Task> CellsP /// The cell name. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// StyleResponse - public StyleResponse CellsPostUpdateWorksheetCellStyle (string name, string sheetName, string cellName, Style style = null, string folder = null, string storage = null) + public StyleResponse CellsPostUpdateWorksheetCellStyle (string name, string sheetName, string cellName, Style style = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostUpdateWorksheetCellStyleWithHttpInfo(name, sheetName, cellName, style, folder, storage); + ApiResponse localVarResponse = CellsPostUpdateWorksheetCellStyleWithHttpInfo(name, sheetName, cellName, style, folder, storageName); return localVarResponse.Data; } @@ -40348,9 +40244,9 @@ public StyleResponse CellsPostUpdateWorksheetCellStyle (string name, string shee /// The cell name. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of StyleResponse - public ApiResponse< StyleResponse > CellsPostUpdateWorksheetCellStyleWithHttpInfo (string name, string sheetName, string cellName, Style style = null, string folder = null, string storage = null) + public ApiResponse< StyleResponse > CellsPostUpdateWorksheetCellStyleWithHttpInfo (string name, string sheetName, string cellName, Style style = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -40388,7 +40284,7 @@ public ApiResponse< StyleResponse > CellsPostUpdateWorksheetCellStyleWithHttpInf if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -40396,10 +40292,6 @@ public ApiResponse< StyleResponse > CellsPostUpdateWorksheetCellStyleWithHttpInf else { localVarPostBody = style; // byte array - if ( "CellsPostUpdateWorksheetCellStyle" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -40430,11 +40322,11 @@ public ApiResponse< StyleResponse > CellsPostUpdateWorksheetCellStyleWithHttpInf /// The cell name. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of StyleResponse - public async System.Threading.Tasks.Task CellsPostUpdateWorksheetCellStyleAsync (string name, string sheetName, string cellName, Style style = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostUpdateWorksheetCellStyleAsync (string name, string sheetName, string cellName, Style style = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostUpdateWorksheetCellStyleAsyncWithHttpInfo(name, sheetName, cellName, style, folder, storage); + ApiResponse localVarResponse = await CellsPostUpdateWorksheetCellStyleAsyncWithHttpInfo(name, sheetName, cellName, style, folder, storageName); return localVarResponse.Data; } @@ -40448,9 +40340,9 @@ public async System.Threading.Tasks.Task CellsPostUpdateWorksheet /// The cell name. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (StyleResponse) - public async System.Threading.Tasks.Task> CellsPostUpdateWorksheetCellStyleAsyncWithHttpInfo (string name, string sheetName, string cellName, Style style = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostUpdateWorksheetCellStyleAsyncWithHttpInfo (string name, string sheetName, string cellName, Style style = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -40488,7 +40380,7 @@ public async System.Threading.Tasks.Task> CellsPostUp if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -40526,12 +40418,12 @@ public async System.Threading.Tasks.Task> CellsPostUp /// The range. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostUpdateWorksheetRangeStyle (string name, string sheetName, string range, Style style = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPostUpdateWorksheetRangeStyle (string name, string sheetName, string range, Style style = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostUpdateWorksheetRangeStyleWithHttpInfo(name, sheetName, range, style, folder, storage); + ApiResponse localVarResponse = CellsPostUpdateWorksheetRangeStyleWithHttpInfo(name, sheetName, range, style, folder, storageName); return localVarResponse.Data; } @@ -40544,9 +40436,9 @@ public CellsCloudResponse CellsPostUpdateWorksheetRangeStyle (string name, strin /// The range. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostUpdateWorksheetRangeStyleWithHttpInfo (string name, string sheetName, string range, Style style = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostUpdateWorksheetRangeStyleWithHttpInfo (string name, string sheetName, string range, Style style = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -40584,7 +40476,7 @@ public ApiResponse< CellsCloudResponse > CellsPostUpdateWorksheetRangeStyleWithH if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (range != null) localVarQueryParams.Add("range", Configuration.ApiClient.ParameterToString(range)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -40592,10 +40484,6 @@ public ApiResponse< CellsCloudResponse > CellsPostUpdateWorksheetRangeStyleWithH else { localVarPostBody = style; // byte array - if ( "CellsPostUpdateWorksheetRangeStyle" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -40626,11 +40514,11 @@ public ApiResponse< CellsCloudResponse > CellsPostUpdateWorksheetRangeStyleWithH /// The range. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostUpdateWorksheetRangeStyleAsync (string name, string sheetName, string range, Style style = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostUpdateWorksheetRangeStyleAsync (string name, string sheetName, string range, Style style = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostUpdateWorksheetRangeStyleAsyncWithHttpInfo(name, sheetName, range, style, folder, storage); + ApiResponse localVarResponse = await CellsPostUpdateWorksheetRangeStyleAsyncWithHttpInfo(name, sheetName, range, style, folder, storageName); return localVarResponse.Data; } @@ -40644,9 +40532,9 @@ public async System.Threading.Tasks.Task CellsPostUpdateWork /// The range. /// with update style settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostUpdateWorksheetRangeStyleAsyncWithHttpInfo (string name, string sheetName, string range, Style style = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostUpdateWorksheetRangeStyleAsyncWithHttpInfo (string name, string sheetName, string range, Style style = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -40684,7 +40572,7 @@ public async System.Threading.Tasks.Task> CellsP if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (range != null) localVarQueryParams.Add("range", Configuration.ApiClient.ParameterToString(range)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (style != null && style.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(style); // http body (model) parameter @@ -40722,12 +40610,12 @@ public async System.Threading.Tasks.Task> CellsP /// The row index. /// The new row height. (optional, default to 0.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RowResponse - public RowResponse CellsPostUpdateWorksheetRow (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storage = null) + public RowResponse CellsPostUpdateWorksheetRow (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostUpdateWorksheetRowWithHttpInfo(name, sheetName, rowIndex, height, folder, storage); + ApiResponse localVarResponse = CellsPostUpdateWorksheetRowWithHttpInfo(name, sheetName, rowIndex, height, folder, storageName); return localVarResponse.Data; } @@ -40740,9 +40628,9 @@ public RowResponse CellsPostUpdateWorksheetRow (string name, string sheetName, i /// The row index. /// The new row height. (optional, default to 0.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RowResponse - public ApiResponse< RowResponse > CellsPostUpdateWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storage = null) + public ApiResponse< RowResponse > CellsPostUpdateWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -40781,7 +40669,7 @@ public ApiResponse< RowResponse > CellsPostUpdateWorksheetRowWithHttpInfo (strin if (rowIndex != null) localVarPathParams.Add("rowIndex", Configuration.ApiClient.ParameterToString(rowIndex)); // path parameter if (height != null) localVarQueryParams.Add("height", Configuration.ApiClient.ParameterToString(height)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -40811,11 +40699,11 @@ public ApiResponse< RowResponse > CellsPostUpdateWorksheetRowWithHttpInfo (strin /// The row index. /// The new row height. (optional, default to 0.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RowResponse - public async System.Threading.Tasks.Task CellsPostUpdateWorksheetRowAsync (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostUpdateWorksheetRowAsync (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostUpdateWorksheetRowAsyncWithHttpInfo(name, sheetName, rowIndex, height, folder, storage); + ApiResponse localVarResponse = await CellsPostUpdateWorksheetRowAsyncWithHttpInfo(name, sheetName, rowIndex, height, folder, storageName); return localVarResponse.Data; } @@ -40829,9 +40717,9 @@ public async System.Threading.Tasks.Task CellsPostUpdateWorksheetRo /// The row index. /// The new row height. (optional, default to 0.0) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RowResponse) - public async System.Threading.Tasks.Task> CellsPostUpdateWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostUpdateWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, double? height = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -40870,7 +40758,7 @@ public async System.Threading.Tasks.Task> CellsPostUpda if (rowIndex != null) localVarPathParams.Add("rowIndex", Configuration.ApiClient.ParameterToString(rowIndex)); // path parameter if (height != null) localVarQueryParams.Add("height", Configuration.ApiClient.ParameterToString(height)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -40902,12 +40790,12 @@ public async System.Threading.Tasks.Task> CellsPostUpda /// The value type. (optional) /// Formula for cell (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellResponse - public CellResponse CellsPostWorksheetCellSetValue (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storage = null) + public CellResponse CellsPostWorksheetCellSetValue (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostWorksheetCellSetValueWithHttpInfo(name, sheetName, cellName, value, type, formula, folder, storage); + ApiResponse localVarResponse = CellsPostWorksheetCellSetValueWithHttpInfo(name, sheetName, cellName, value, type, formula, folder, storageName); return localVarResponse.Data; } @@ -40922,9 +40810,9 @@ public CellResponse CellsPostWorksheetCellSetValue (string name, string sheetNam /// The value type. (optional) /// Formula for cell (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellResponse - public ApiResponse< CellResponse > CellsPostWorksheetCellSetValueWithHttpInfo (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storage = null) + public ApiResponse< CellResponse > CellsPostWorksheetCellSetValueWithHttpInfo (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -40965,7 +40853,7 @@ public ApiResponse< CellResponse > CellsPostWorksheetCellSetValueWithHttpInfo (s if (type != null) localVarQueryParams.Add("type", Configuration.ApiClient.ParameterToString(type)); // query parameter if (formula != null) localVarQueryParams.Add("formula", Configuration.ApiClient.ParameterToString(formula)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -40997,11 +40885,11 @@ public ApiResponse< CellResponse > CellsPostWorksheetCellSetValueWithHttpInfo (s /// The value type. (optional) /// Formula for cell (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellResponse - public async System.Threading.Tasks.Task CellsPostWorksheetCellSetValueAsync (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostWorksheetCellSetValueAsync (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostWorksheetCellSetValueAsyncWithHttpInfo(name, sheetName, cellName, value, type, formula, folder, storage); + ApiResponse localVarResponse = await CellsPostWorksheetCellSetValueAsyncWithHttpInfo(name, sheetName, cellName, value, type, formula, folder, storageName); return localVarResponse.Data; } @@ -41017,9 +40905,9 @@ public async System.Threading.Tasks.Task CellsPostWorksheetCellSet /// The value type. (optional) /// Formula for cell (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellResponse) - public async System.Threading.Tasks.Task> CellsPostWorksheetCellSetValueAsyncWithHttpInfo (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostWorksheetCellSetValueAsyncWithHttpInfo (string name, string sheetName, string cellName, string value = null, string type = null, string formula = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -41060,7 +40948,7 @@ public async System.Threading.Tasks.Task> CellsPostWor if (type != null) localVarQueryParams.Add("type", Configuration.ApiClient.ParameterToString(type)); // query parameter if (formula != null) localVarQueryParams.Add("formula", Configuration.ApiClient.ParameterToString(formula)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -41092,12 +40980,12 @@ public async System.Threading.Tasks.Task> CellsPostWor /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostWorksheetMerge (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public CellsCloudResponse CellsPostWorksheetMerge (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostWorksheetMergeWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storage); + ApiResponse localVarResponse = CellsPostWorksheetMergeWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storageName); return localVarResponse.Data; } @@ -41112,9 +41000,9 @@ public CellsCloudResponse CellsPostWorksheetMerge (string name, string sheetName /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostWorksheetMergeWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostWorksheetMergeWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -41164,7 +41052,7 @@ public ApiResponse< CellsCloudResponse > CellsPostWorksheetMergeWithHttpInfo (st if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -41196,11 +41084,11 @@ public ApiResponse< CellsCloudResponse > CellsPostWorksheetMergeWithHttpInfo (st /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostWorksheetMergeAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostWorksheetMergeAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostWorksheetMergeAsyncWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storage); + ApiResponse localVarResponse = await CellsPostWorksheetMergeAsyncWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storageName); return localVarResponse.Data; } @@ -41216,9 +41104,9 @@ public async System.Threading.Tasks.Task CellsPostWorksheetM /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostWorksheetMergeAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostWorksheetMergeAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -41268,7 +41156,7 @@ public async System.Threading.Tasks.Task> CellsP if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -41300,12 +41188,12 @@ public async System.Threading.Tasks.Task> CellsP /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPostWorksheetUnmerge (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public CellsCloudResponse CellsPostWorksheetUnmerge (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPostWorksheetUnmergeWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storage); + ApiResponse localVarResponse = CellsPostWorksheetUnmergeWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storageName); return localVarResponse.Data; } @@ -41320,9 +41208,9 @@ public CellsCloudResponse CellsPostWorksheetUnmerge (string name, string sheetNa /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPostWorksheetUnmergeWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPostWorksheetUnmergeWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -41372,7 +41260,7 @@ public ApiResponse< CellsCloudResponse > CellsPostWorksheetUnmergeWithHttpInfo ( if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -41404,11 +41292,11 @@ public ApiResponse< CellsCloudResponse > CellsPostWorksheetUnmergeWithHttpInfo ( /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPostWorksheetUnmergeAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPostWorksheetUnmergeAsync (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPostWorksheetUnmergeAsyncWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storage); + ApiResponse localVarResponse = await CellsPostWorksheetUnmergeAsyncWithHttpInfo(name, sheetName, startRow, startColumn, totalRows, totalColumns, folder, storageName); return localVarResponse.Data; } @@ -41424,9 +41312,9 @@ public async System.Threading.Tasks.Task CellsPostWorksheetU /// The total rows /// The total columns. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPostWorksheetUnmergeAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPostWorksheetUnmergeAsyncWithHttpInfo (string name, string sheetName, int? startRow, int? startColumn, int? totalRows, int? totalColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -41476,7 +41364,7 @@ public async System.Threading.Tasks.Task> CellsP if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (totalColumns != null) localVarQueryParams.Add("totalColumns", Configuration.ApiClient.ParameterToString(totalColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -41503,12 +41391,12 @@ public async System.Threading.Tasks.Task> CellsP /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsDocumentPropertiesResponse - public CellsDocumentPropertiesResponse CellsPropertiesDeleteDocumentProperties (string name, string folder = null, string storage = null) + public CellsDocumentPropertiesResponse CellsPropertiesDeleteDocumentProperties (string name, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPropertiesDeleteDocumentPropertiesWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = CellsPropertiesDeleteDocumentPropertiesWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -41518,9 +41406,9 @@ public CellsDocumentPropertiesResponse CellsPropertiesDeleteDocumentProperties ( /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsDocumentPropertiesResponse - public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesDeleteDocumentPropertiesWithHttpInfo (string name, string folder = null, string storage = null) + public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesDeleteDocumentPropertiesWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -41550,7 +41438,7 @@ public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesDeleteDocum if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -41577,11 +41465,11 @@ public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesDeleteDocum /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsDocumentPropertiesResponse - public async System.Threading.Tasks.Task CellsPropertiesDeleteDocumentPropertiesAsync (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPropertiesDeleteDocumentPropertiesAsync (string name, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPropertiesDeleteDocumentPropertiesAsyncWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = await CellsPropertiesDeleteDocumentPropertiesAsyncWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -41592,9 +41480,9 @@ public async System.Threading.Tasks.Task CellsP /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsDocumentPropertiesResponse) - public async System.Threading.Tasks.Task> CellsPropertiesDeleteDocumentPropertiesAsyncWithHttpInfo (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPropertiesDeleteDocumentPropertiesAsyncWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -41624,7 +41512,7 @@ public async System.Threading.Tasks.TaskThe document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsDocumentPropertiesResponse - public CellsDocumentPropertiesResponse CellsPropertiesDeleteDocumentProperty (string name, string propertyName, string folder = null, string storage = null) + public CellsDocumentPropertiesResponse CellsPropertiesDeleteDocumentProperty (string name, string propertyName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPropertiesDeleteDocumentPropertyWithHttpInfo(name, propertyName, folder, storage); + ApiResponse localVarResponse = CellsPropertiesDeleteDocumentPropertyWithHttpInfo(name, propertyName, folder, storageName); return localVarResponse.Data; } @@ -41668,9 +41556,9 @@ public CellsDocumentPropertiesResponse CellsPropertiesDeleteDocumentProperty (st /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsDocumentPropertiesResponse - public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesDeleteDocumentPropertyWithHttpInfo (string name, string propertyName, string folder = null, string storage = null) + public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesDeleteDocumentPropertyWithHttpInfo (string name, string propertyName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -41704,7 +41592,7 @@ public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesDeleteDocum if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (propertyName != null) localVarPathParams.Add("propertyName", Configuration.ApiClient.ParameterToString(propertyName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -41732,11 +41620,11 @@ public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesDeleteDocum /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsDocumentPropertiesResponse - public async System.Threading.Tasks.Task CellsPropertiesDeleteDocumentPropertyAsync (string name, string propertyName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPropertiesDeleteDocumentPropertyAsync (string name, string propertyName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPropertiesDeleteDocumentPropertyAsyncWithHttpInfo(name, propertyName, folder, storage); + ApiResponse localVarResponse = await CellsPropertiesDeleteDocumentPropertyAsyncWithHttpInfo(name, propertyName, folder, storageName); return localVarResponse.Data; } @@ -41748,9 +41636,9 @@ public async System.Threading.Tasks.Task CellsP /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsDocumentPropertiesResponse) - public async System.Threading.Tasks.Task> CellsPropertiesDeleteDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPropertiesDeleteDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -41784,7 +41672,7 @@ public async System.Threading.Tasks.TaskThrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsDocumentPropertiesResponse - public CellsDocumentPropertiesResponse CellsPropertiesGetDocumentProperties (string name, string folder = null, string storage = null) + public CellsDocumentPropertiesResponse CellsPropertiesGetDocumentProperties (string name, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPropertiesGetDocumentPropertiesWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = CellsPropertiesGetDocumentPropertiesWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -41826,9 +41714,9 @@ public CellsDocumentPropertiesResponse CellsPropertiesGetDocumentProperties (str /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsDocumentPropertiesResponse - public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesGetDocumentPropertiesWithHttpInfo (string name, string folder = null, string storage = null) + public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesGetDocumentPropertiesWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -41858,7 +41746,7 @@ public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesGetDocument if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -41885,11 +41773,11 @@ public ApiResponse< CellsDocumentPropertiesResponse > CellsPropertiesGetDocument /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsDocumentPropertiesResponse - public async System.Threading.Tasks.Task CellsPropertiesGetDocumentPropertiesAsync (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPropertiesGetDocumentPropertiesAsync (string name, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPropertiesGetDocumentPropertiesAsyncWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = await CellsPropertiesGetDocumentPropertiesAsyncWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -41900,9 +41788,9 @@ public async System.Threading.Tasks.Task CellsP /// Thrown when fails to make API call /// The document name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsDocumentPropertiesResponse) - public async System.Threading.Tasks.Task> CellsPropertiesGetDocumentPropertiesAsyncWithHttpInfo (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPropertiesGetDocumentPropertiesAsyncWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -41932,7 +41820,7 @@ public async System.Threading.Tasks.TaskThe document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsDocumentPropertyResponse - public CellsDocumentPropertyResponse CellsPropertiesGetDocumentProperty (string name, string propertyName, string folder = null, string storage = null) + public CellsDocumentPropertyResponse CellsPropertiesGetDocumentProperty (string name, string propertyName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPropertiesGetDocumentPropertyWithHttpInfo(name, propertyName, folder, storage); + ApiResponse localVarResponse = CellsPropertiesGetDocumentPropertyWithHttpInfo(name, propertyName, folder, storageName); return localVarResponse.Data; } @@ -41976,9 +41864,9 @@ public CellsDocumentPropertyResponse CellsPropertiesGetDocumentProperty (string /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsDocumentPropertyResponse - public ApiResponse< CellsDocumentPropertyResponse > CellsPropertiesGetDocumentPropertyWithHttpInfo (string name, string propertyName, string folder = null, string storage = null) + public ApiResponse< CellsDocumentPropertyResponse > CellsPropertiesGetDocumentPropertyWithHttpInfo (string name, string propertyName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -42012,7 +41900,7 @@ public ApiResponse< CellsDocumentPropertyResponse > CellsPropertiesGetDocumentPr if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (propertyName != null) localVarPathParams.Add("propertyName", Configuration.ApiClient.ParameterToString(propertyName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -42040,11 +41928,11 @@ public ApiResponse< CellsDocumentPropertyResponse > CellsPropertiesGetDocumentPr /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsDocumentPropertyResponse - public async System.Threading.Tasks.Task CellsPropertiesGetDocumentPropertyAsync (string name, string propertyName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPropertiesGetDocumentPropertyAsync (string name, string propertyName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPropertiesGetDocumentPropertyAsyncWithHttpInfo(name, propertyName, folder, storage); + ApiResponse localVarResponse = await CellsPropertiesGetDocumentPropertyAsyncWithHttpInfo(name, propertyName, folder, storageName); return localVarResponse.Data; } @@ -42056,9 +41944,9 @@ public async System.Threading.Tasks.Task CellsPro /// The document name. /// The property name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsDocumentPropertyResponse) - public async System.Threading.Tasks.Task> CellsPropertiesGetDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPropertiesGetDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -42092,7 +41980,7 @@ public async System.Threading.Tasks.TaskThe property name. /// with new property value. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsDocumentPropertyResponse - public CellsDocumentPropertyResponse CellsPropertiesPutDocumentProperty (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storage = null) + public CellsDocumentPropertyResponse CellsPropertiesPutDocumentProperty (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPropertiesPutDocumentPropertyWithHttpInfo(name, propertyName, property, folder, storage); + ApiResponse localVarResponse = CellsPropertiesPutDocumentPropertyWithHttpInfo(name, propertyName, property, folder, storageName); return localVarResponse.Data; } @@ -42138,9 +42026,9 @@ public CellsDocumentPropertyResponse CellsPropertiesPutDocumentProperty (string /// The property name. /// with new property value. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsDocumentPropertyResponse - public ApiResponse< CellsDocumentPropertyResponse > CellsPropertiesPutDocumentPropertyWithHttpInfo (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storage = null) + public ApiResponse< CellsDocumentPropertyResponse > CellsPropertiesPutDocumentPropertyWithHttpInfo (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -42174,7 +42062,7 @@ public ApiResponse< CellsDocumentPropertyResponse > CellsPropertiesPutDocumentPr if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (propertyName != null) localVarPathParams.Add("propertyName", Configuration.ApiClient.ParameterToString(propertyName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (property != null && property.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(property); // http body (model) parameter @@ -42182,10 +42070,6 @@ public ApiResponse< CellsDocumentPropertyResponse > CellsPropertiesPutDocumentPr else { localVarPostBody = property; // byte array - if ( "CellsPropertiesPutDocumentProperty" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -42215,11 +42099,11 @@ public ApiResponse< CellsDocumentPropertyResponse > CellsPropertiesPutDocumentPr /// The property name. /// with new property value. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsDocumentPropertyResponse - public async System.Threading.Tasks.Task CellsPropertiesPutDocumentPropertyAsync (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPropertiesPutDocumentPropertyAsync (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPropertiesPutDocumentPropertyAsyncWithHttpInfo(name, propertyName, property, folder, storage); + ApiResponse localVarResponse = await CellsPropertiesPutDocumentPropertyAsyncWithHttpInfo(name, propertyName, property, folder, storageName); return localVarResponse.Data; } @@ -42232,9 +42116,9 @@ public async System.Threading.Tasks.Task CellsPro /// The property name. /// with new property value. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsDocumentPropertyResponse) - public async System.Threading.Tasks.Task> CellsPropertiesPutDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPropertiesPutDocumentPropertyAsyncWithHttpInfo (string name, string propertyName, CellsDocumentProperty property = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -42268,7 +42152,7 @@ public async System.Threading.Tasks.TaskThe columns. /// The update reference. (optional, default to true) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ColumnsResponse - public ColumnsResponse CellsPutInsertWorksheetColumns (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storage = null) + public ColumnsResponse CellsPutInsertWorksheetColumns (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPutInsertWorksheetColumnsWithHttpInfo(name, sheetName, columnIndex, columns, updateReference, folder, storage); + ApiResponse localVarResponse = CellsPutInsertWorksheetColumnsWithHttpInfo(name, sheetName, columnIndex, columns, updateReference, folder, storageName); return localVarResponse.Data; } @@ -42326,9 +42210,9 @@ public ColumnsResponse CellsPutInsertWorksheetColumns (string name, string sheet /// The columns. /// The update reference. (optional, default to true) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ColumnsResponse - public ApiResponse< ColumnsResponse > CellsPutInsertWorksheetColumnsWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storage = null) + public ApiResponse< ColumnsResponse > CellsPutInsertWorksheetColumnsWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -42371,7 +42255,7 @@ public ApiResponse< ColumnsResponse > CellsPutInsertWorksheetColumnsWithHttpInfo if (columns != null) localVarQueryParams.Add("columns", Configuration.ApiClient.ParameterToString(columns)); // query parameter if (updateReference != null) localVarQueryParams.Add("updateReference", Configuration.ApiClient.ParameterToString(updateReference)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -42402,11 +42286,11 @@ public ApiResponse< ColumnsResponse > CellsPutInsertWorksheetColumnsWithHttpInfo /// The columns. /// The update reference. (optional, default to true) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ColumnsResponse - public async System.Threading.Tasks.Task CellsPutInsertWorksheetColumnsAsync (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPutInsertWorksheetColumnsAsync (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPutInsertWorksheetColumnsAsyncWithHttpInfo(name, sheetName, columnIndex, columns, updateReference, folder, storage); + ApiResponse localVarResponse = await CellsPutInsertWorksheetColumnsAsyncWithHttpInfo(name, sheetName, columnIndex, columns, updateReference, folder, storageName); return localVarResponse.Data; } @@ -42421,9 +42305,9 @@ public async System.Threading.Tasks.Task CellsPutInsertWorkshee /// The columns. /// The update reference. (optional, default to true) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ColumnsResponse) - public async System.Threading.Tasks.Task> CellsPutInsertWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPutInsertWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? columnIndex, int? columns, bool? updateReference = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -42466,7 +42350,7 @@ public async System.Threading.Tasks.Task> CellsPutI if (columns != null) localVarQueryParams.Add("columns", Configuration.ApiClient.ParameterToString(columns)); // query parameter if (updateReference != null) localVarQueryParams.Add("updateReference", Configuration.ApiClient.ParameterToString(updateReference)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -42495,12 +42379,12 @@ public async System.Threading.Tasks.Task> CellsPutI /// The worksheet name. /// The new row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RowResponse - public RowResponse CellsPutInsertWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public RowResponse CellsPutInsertWorksheetRow (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPutInsertWorksheetRowWithHttpInfo(name, sheetName, rowIndex, folder, storage); + ApiResponse localVarResponse = CellsPutInsertWorksheetRowWithHttpInfo(name, sheetName, rowIndex, folder, storageName); return localVarResponse.Data; } @@ -42512,9 +42396,9 @@ public RowResponse CellsPutInsertWorksheetRow (string name, string sheetName, in /// The worksheet name. /// The new row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RowResponse - public ApiResponse< RowResponse > CellsPutInsertWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public ApiResponse< RowResponse > CellsPutInsertWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -42552,7 +42436,7 @@ public ApiResponse< RowResponse > CellsPutInsertWorksheetRowWithHttpInfo (string if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (rowIndex != null) localVarPathParams.Add("rowIndex", Configuration.ApiClient.ParameterToString(rowIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -42581,11 +42465,11 @@ public ApiResponse< RowResponse > CellsPutInsertWorksheetRowWithHttpInfo (string /// The worksheet name. /// The new row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RowResponse - public async System.Threading.Tasks.Task CellsPutInsertWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPutInsertWorksheetRowAsync (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPutInsertWorksheetRowAsyncWithHttpInfo(name, sheetName, rowIndex, folder, storage); + ApiResponse localVarResponse = await CellsPutInsertWorksheetRowAsyncWithHttpInfo(name, sheetName, rowIndex, folder, storageName); return localVarResponse.Data; } @@ -42598,9 +42482,9 @@ public async System.Threading.Tasks.Task CellsPutInsertWorksheetRow /// The worksheet name. /// The new row index. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RowResponse) - public async System.Threading.Tasks.Task> CellsPutInsertWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPutInsertWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -42638,7 +42522,7 @@ public async System.Threading.Tasks.Task> CellsPutInser if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (rowIndex != null) localVarPathParams.Add("rowIndex", Configuration.ApiClient.ParameterToString(rowIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -42669,12 +42553,12 @@ public async System.Threading.Tasks.Task> CellsPutInser /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsPutInsertWorksheetRows (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null) + public CellsCloudResponse CellsPutInsertWorksheetRows (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsPutInsertWorksheetRowsWithHttpInfo(name, sheetName, startrow, totalRows, updateReference, folder, storage); + ApiResponse localVarResponse = CellsPutInsertWorksheetRowsWithHttpInfo(name, sheetName, startrow, totalRows, updateReference, folder, storageName); return localVarResponse.Data; } @@ -42688,9 +42572,9 @@ public CellsCloudResponse CellsPutInsertWorksheetRows (string name, string sheet /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsPutInsertWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsPutInsertWorksheetRowsWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -42730,7 +42614,7 @@ public ApiResponse< CellsCloudResponse > CellsPutInsertWorksheetRowsWithHttpInfo if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (updateReference != null) localVarQueryParams.Add("updateReference", Configuration.ApiClient.ParameterToString(updateReference)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -42761,11 +42645,11 @@ public ApiResponse< CellsCloudResponse > CellsPutInsertWorksheetRowsWithHttpInfo /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsPutInsertWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsPutInsertWorksheetRowsAsync (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsPutInsertWorksheetRowsAsyncWithHttpInfo(name, sheetName, startrow, totalRows, updateReference, folder, storage); + ApiResponse localVarResponse = await CellsPutInsertWorksheetRowsAsyncWithHttpInfo(name, sheetName, startrow, totalRows, updateReference, folder, storageName); return localVarResponse.Data; } @@ -42780,9 +42664,9 @@ public async System.Threading.Tasks.Task CellsPutInsertWorks /// Number of rows to be operated. (optional, default to 1) /// Indicates if update references in other worksheets. (optional, default to true) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsPutInsertWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsPutInsertWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, int? startrow, int? totalRows = null, bool? updateReference = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -42822,7 +42706,7 @@ public async System.Threading.Tasks.Task> CellsP if (totalRows != null) localVarQueryParams.Add("totalRows", Configuration.ApiClient.ParameterToString(totalRows)); // query parameter if (updateReference != null) localVarQueryParams.Add("updateReference", Configuration.ApiClient.ParameterToString(updateReference)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -42855,12 +42739,12 @@ public async System.Threading.Tasks.Task> CellsP /// the count of rows in the range (optional) /// the count of columns in the range (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RangeValueResponse - public RangeValueResponse CellsRangesGetWorksheetCellsRangeValue (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storage = null) + public RangeValueResponse CellsRangesGetWorksheetCellsRangeValue (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsRangesGetWorksheetCellsRangeValueWithHttpInfo(name, sheetName, namerange, firstRow, firstColumn, rowCount, columnCount, folder, storage); + ApiResponse localVarResponse = CellsRangesGetWorksheetCellsRangeValueWithHttpInfo(name, sheetName, namerange, firstRow, firstColumn, rowCount, columnCount, folder, storageName); return localVarResponse.Data; } @@ -42876,9 +42760,9 @@ public RangeValueResponse CellsRangesGetWorksheetCellsRangeValue (string name, s /// the count of rows in the range (optional) /// the count of columns in the range (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RangeValueResponse - public ApiResponse< RangeValueResponse > CellsRangesGetWorksheetCellsRangeValueWithHttpInfo (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storage = null) + public ApiResponse< RangeValueResponse > CellsRangesGetWorksheetCellsRangeValueWithHttpInfo (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -42917,7 +42801,7 @@ public ApiResponse< RangeValueResponse > CellsRangesGetWorksheetCellsRangeValueW if (rowCount != null) localVarQueryParams.Add("rowCount", Configuration.ApiClient.ParameterToString(rowCount)); // query parameter if (columnCount != null) localVarQueryParams.Add("columnCount", Configuration.ApiClient.ParameterToString(columnCount)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -42950,11 +42834,11 @@ public ApiResponse< RangeValueResponse > CellsRangesGetWorksheetCellsRangeValueW /// the count of rows in the range (optional) /// the count of columns in the range (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RangeValueResponse - public async System.Threading.Tasks.Task CellsRangesGetWorksheetCellsRangeValueAsync (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsRangesGetWorksheetCellsRangeValueAsync (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsRangesGetWorksheetCellsRangeValueAsyncWithHttpInfo(name, sheetName, namerange, firstRow, firstColumn, rowCount, columnCount, folder, storage); + ApiResponse localVarResponse = await CellsRangesGetWorksheetCellsRangeValueAsyncWithHttpInfo(name, sheetName, namerange, firstRow, firstColumn, rowCount, columnCount, folder, storageName); return localVarResponse.Data; } @@ -42971,9 +42855,9 @@ public async System.Threading.Tasks.Task CellsRangesGetWorks /// the count of rows in the range (optional) /// the count of columns in the range (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RangeValueResponse) - public async System.Threading.Tasks.Task> CellsRangesGetWorksheetCellsRangeValueAsyncWithHttpInfo (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsRangesGetWorksheetCellsRangeValueAsyncWithHttpInfo (string name, string sheetName, string namerange = null, int? firstRow = null, int? firstColumn = null, int? rowCount = null, int? columnCount = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -43012,7 +42896,7 @@ public async System.Threading.Tasks.Task> CellsR if (rowCount != null) localVarQueryParams.Add("rowCount", Configuration.ApiClient.ParameterToString(rowCount)); // query parameter if (columnCount != null) localVarQueryParams.Add("columnCount", Configuration.ApiClient.ParameterToString(columnCount)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -43042,12 +42926,12 @@ public async System.Threading.Tasks.Task> CellsR /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsRangesPostWorksheetCellsRangeColumnWidth (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null) + public CellsCloudResponse CellsRangesPostWorksheetCellsRangeColumnWidth (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeColumnWidthWithHttpInfo(name, sheetName, value, range, folder, storage); + ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeColumnWidthWithHttpInfo(name, sheetName, value, range, folder, storageName); return localVarResponse.Data; } @@ -43060,9 +42944,9 @@ public CellsCloudResponse CellsRangesPostWorksheetCellsRangeColumnWidth (string /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeColumnWidthWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeColumnWidthWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -43100,7 +42984,7 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeColum if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (value != null) localVarQueryParams.Add("value", Configuration.ApiClient.ParameterToString(value)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -43108,10 +42992,6 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeColum else { localVarPostBody = range; // byte array - if ( "CellsRangesPostWorksheetCellsRangeColumnWidth" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -43142,11 +43022,11 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeColum /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeColumnWidthAsync (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeColumnWidthAsync (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeColumnWidthAsyncWithHttpInfo(name, sheetName, value, range, folder, storage); + ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeColumnWidthAsyncWithHttpInfo(name, sheetName, value, range, folder, storageName); return localVarResponse.Data; } @@ -43160,9 +43040,9 @@ public async System.Threading.Tasks.Task CellsRangesPostWork /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeColumnWidthAsyncWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeColumnWidthAsyncWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -43200,7 +43080,7 @@ public async System.Threading.Tasks.Task> CellsR if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (value != null) localVarQueryParams.Add("value", Configuration.ApiClient.ParameterToString(value)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -43237,12 +43117,12 @@ public async System.Threading.Tasks.Task> CellsR /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsRangesPostWorksheetCellsRangeMerge (string name, string sheetName, Range range = null, string folder = null, string storage = null) + public CellsCloudResponse CellsRangesPostWorksheetCellsRangeMerge (string name, string sheetName, Range range = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeMergeWithHttpInfo(name, sheetName, range, folder, storage); + ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeMergeWithHttpInfo(name, sheetName, range, folder, storageName); return localVarResponse.Data; } @@ -43254,9 +43134,9 @@ public CellsCloudResponse CellsRangesPostWorksheetCellsRangeMerge (string name, /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeMergeWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeMergeWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -43290,7 +43170,7 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeMerge if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -43298,10 +43178,6 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeMerge else { localVarPostBody = range; // byte array - if ( "CellsRangesPostWorksheetCellsRangeMerge" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -43331,11 +43207,11 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeMerge /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeMergeAsync (string name, string sheetName, Range range = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeMergeAsync (string name, string sheetName, Range range = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeMergeAsyncWithHttpInfo(name, sheetName, range, folder, storage); + ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeMergeAsyncWithHttpInfo(name, sheetName, range, folder, storageName); return localVarResponse.Data; } @@ -43348,9 +43224,9 @@ public async System.Threading.Tasks.Task CellsRangesPostWork /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeMergeAsyncWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeMergeAsyncWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -43384,7 +43260,7 @@ public async System.Threading.Tasks.Task> CellsR if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -43423,12 +43299,12 @@ public async System.Threading.Tasks.Task> CellsR /// The start column of the dest range. /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsRangesPostWorksheetCellsRangeMoveTo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storage = null) + public CellsCloudResponse CellsRangesPostWorksheetCellsRangeMoveTo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeMoveToWithHttpInfo(name, sheetName, destRow, destColumn, range, folder, storage); + ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeMoveToWithHttpInfo(name, sheetName, destRow, destColumn, range, folder, storageName); return localVarResponse.Data; } @@ -43442,9 +43318,9 @@ public CellsCloudResponse CellsRangesPostWorksheetCellsRangeMoveTo (string name, /// The start column of the dest range. /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeMoveToWithHttpInfo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeMoveToWithHttpInfo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -43486,7 +43362,7 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeMoveT if (destRow != null) localVarQueryParams.Add("destRow", Configuration.ApiClient.ParameterToString(destRow)); // query parameter if (destColumn != null) localVarQueryParams.Add("destColumn", Configuration.ApiClient.ParameterToString(destColumn)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -43494,10 +43370,6 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeMoveT else { localVarPostBody = range; // byte array - if ( "CellsRangesPostWorksheetCellsRangeMoveTo" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -43529,11 +43401,11 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeMoveT /// The start column of the dest range. /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeMoveToAsync (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeMoveToAsync (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeMoveToAsyncWithHttpInfo(name, sheetName, destRow, destColumn, range, folder, storage); + ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeMoveToAsyncWithHttpInfo(name, sheetName, destRow, destColumn, range, folder, storageName); return localVarResponse.Data; } @@ -43548,9 +43420,9 @@ public async System.Threading.Tasks.Task CellsRangesPostWork /// The start column of the dest range. /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeMoveToAsyncWithHttpInfo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeMoveToAsyncWithHttpInfo (string name, string sheetName, int? destRow, int? destColumn, Range range = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -43592,7 +43464,7 @@ public async System.Threading.Tasks.Task> CellsR if (destRow != null) localVarQueryParams.Add("destRow", Configuration.ApiClient.ParameterToString(destRow)); // query parameter if (destColumn != null) localVarQueryParams.Add("destColumn", Configuration.ApiClient.ParameterToString(destColumn)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -43629,12 +43501,12 @@ public async System.Threading.Tasks.Task> CellsR /// worksheet name /// Range Set OutlineBorder Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsRangesPostWorksheetCellsRangeOutlineBorder (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storage = null) + public CellsCloudResponse CellsRangesPostWorksheetCellsRangeOutlineBorder (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeOutlineBorderWithHttpInfo(name, sheetName, rangeOperate, folder, storage); + ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeOutlineBorderWithHttpInfo(name, sheetName, rangeOperate, folder, storageName); return localVarResponse.Data; } @@ -43646,9 +43518,9 @@ public CellsCloudResponse CellsRangesPostWorksheetCellsRangeOutlineBorder (strin /// worksheet name /// Range Set OutlineBorder Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeOutlineBorderWithHttpInfo (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeOutlineBorderWithHttpInfo (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -43682,7 +43554,7 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeOutli if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (rangeOperate != null && rangeOperate.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(rangeOperate); // http body (model) parameter @@ -43690,10 +43562,6 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeOutli else { localVarPostBody = rangeOperate; // byte array - if ( "CellsRangesPostWorksheetCellsRangeOutlineBorder" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -43723,11 +43591,11 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeOutli /// worksheet name /// Range Set OutlineBorder Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeOutlineBorderAsync (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeOutlineBorderAsync (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeOutlineBorderAsyncWithHttpInfo(name, sheetName, rangeOperate, folder, storage); + ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeOutlineBorderAsyncWithHttpInfo(name, sheetName, rangeOperate, folder, storageName); return localVarResponse.Data; } @@ -43740,9 +43608,9 @@ public async System.Threading.Tasks.Task CellsRangesPostWork /// worksheet name /// Range Set OutlineBorder Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeOutlineBorderAsyncWithHttpInfo (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeOutlineBorderAsyncWithHttpInfo (string name, string sheetName, RangeSetOutlineBorderRequest rangeOperate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -43776,7 +43644,7 @@ public async System.Threading.Tasks.Task> CellsR if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (rangeOperate != null && rangeOperate.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(rangeOperate); // http body (model) parameter @@ -43814,12 +43682,12 @@ public async System.Threading.Tasks.Task> CellsR /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsRangesPostWorksheetCellsRangeRowHeight (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null) + public CellsCloudResponse CellsRangesPostWorksheetCellsRangeRowHeight (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeRowHeightWithHttpInfo(name, sheetName, value, range, folder, storage); + ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeRowHeightWithHttpInfo(name, sheetName, value, range, folder, storageName); return localVarResponse.Data; } @@ -43832,9 +43700,9 @@ public CellsCloudResponse CellsRangesPostWorksheetCellsRangeRowHeight (string na /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeRowHeightWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeRowHeightWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -43872,7 +43740,7 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeRowHe if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (value != null) localVarQueryParams.Add("value", Configuration.ApiClient.ParameterToString(value)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -43880,10 +43748,6 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeRowHe else { localVarPostBody = range; // byte array - if ( "CellsRangesPostWorksheetCellsRangeRowHeight" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -43914,11 +43778,11 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeRowHe /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeRowHeightAsync (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeRowHeightAsync (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeRowHeightAsyncWithHttpInfo(name, sheetName, value, range, folder, storage); + ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeRowHeightAsyncWithHttpInfo(name, sheetName, value, range, folder, storageName); return localVarResponse.Data; } @@ -43932,9 +43796,9 @@ public async System.Threading.Tasks.Task CellsRangesPostWork /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeRowHeightAsyncWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeRowHeightAsyncWithHttpInfo (string name, string sheetName, double? value, Range range = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -43972,7 +43836,7 @@ public async System.Threading.Tasks.Task> CellsR if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (value != null) localVarQueryParams.Add("value", Configuration.ApiClient.ParameterToString(value)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -44009,12 +43873,12 @@ public async System.Threading.Tasks.Task> CellsR /// worksheet name /// Range Set Style Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsRangesPostWorksheetCellsRangeStyle (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storage = null) + public CellsCloudResponse CellsRangesPostWorksheetCellsRangeStyle (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeStyleWithHttpInfo(name, sheetName, rangeOperate, folder, storage); + ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeStyleWithHttpInfo(name, sheetName, rangeOperate, folder, storageName); return localVarResponse.Data; } @@ -44026,9 +43890,9 @@ public CellsCloudResponse CellsRangesPostWorksheetCellsRangeStyle (string name, /// worksheet name /// Range Set Style Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeStyleWithHttpInfo (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeStyleWithHttpInfo (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -44062,7 +43926,7 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeStyle if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (rangeOperate != null && rangeOperate.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(rangeOperate); // http body (model) parameter @@ -44070,10 +43934,6 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeStyle else { localVarPostBody = rangeOperate; // byte array - if ( "CellsRangesPostWorksheetCellsRangeStyle" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -44103,11 +43963,11 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeStyle /// worksheet name /// Range Set Style Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeStyleAsync (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeStyleAsync (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeStyleAsyncWithHttpInfo(name, sheetName, rangeOperate, folder, storage); + ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeStyleAsyncWithHttpInfo(name, sheetName, rangeOperate, folder, storageName); return localVarResponse.Data; } @@ -44120,9 +43980,9 @@ public async System.Threading.Tasks.Task CellsRangesPostWork /// worksheet name /// Range Set Style Request (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeStyleAsyncWithHttpInfo (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeStyleAsyncWithHttpInfo (string name, string sheetName, RangeSetStyleRequest rangeOperate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -44156,7 +44016,7 @@ public async System.Threading.Tasks.Task> CellsR if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (rangeOperate != null && rangeOperate.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(rangeOperate); // http body (model) parameter @@ -44193,12 +44053,12 @@ public async System.Threading.Tasks.Task> CellsR /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsRangesPostWorksheetCellsRangeUnmerge (string name, string sheetName, Range range = null, string folder = null, string storage = null) + public CellsCloudResponse CellsRangesPostWorksheetCellsRangeUnmerge (string name, string sheetName, Range range = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeUnmergeWithHttpInfo(name, sheetName, range, folder, storage); + ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeUnmergeWithHttpInfo(name, sheetName, range, folder, storageName); return localVarResponse.Data; } @@ -44210,9 +44070,9 @@ public CellsCloudResponse CellsRangesPostWorksheetCellsRangeUnmerge (string name /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeUnmergeWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeUnmergeWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -44246,7 +44106,7 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeUnmer if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -44254,10 +44114,6 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeUnmer else { localVarPostBody = range; // byte array - if ( "CellsRangesPostWorksheetCellsRangeUnmerge" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -44287,11 +44143,11 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeUnmer /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeUnmergeAsync (string name, string sheetName, Range range = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeUnmergeAsync (string name, string sheetName, Range range = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeUnmergeAsyncWithHttpInfo(name, sheetName, range, folder, storage); + ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeUnmergeAsyncWithHttpInfo(name, sheetName, range, folder, storageName); return localVarResponse.Data; } @@ -44304,9 +44160,9 @@ public async System.Threading.Tasks.Task CellsRangesPostWork /// worksheet name /// range in worksheet (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeUnmergeAsyncWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeUnmergeAsyncWithHttpInfo (string name, string sheetName, Range range = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -44340,7 +44196,7 @@ public async System.Threading.Tasks.Task> CellsR if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -44380,12 +44236,12 @@ public async System.Threading.Tasks.Task> CellsR /// True: converted to other data type if appropriate. (optional, default to false) /// True: set the number format to cell's style when converting to other data type (optional, default to false) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsRangesPostWorksheetCellsRangeValue (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storage = null) + public CellsCloudResponse CellsRangesPostWorksheetCellsRangeValue (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeValueWithHttpInfo(name, sheetName, value, range, isConverted, setStyle, folder, storage); + ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangeValueWithHttpInfo(name, sheetName, value, range, isConverted, setStyle, folder, storageName); return localVarResponse.Data; } @@ -44400,9 +44256,9 @@ public CellsCloudResponse CellsRangesPostWorksheetCellsRangeValue (string name, /// True: converted to other data type if appropriate. (optional, default to false) /// True: set the number format to cell's style when converting to other data type (optional, default to false) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeValueWithHttpInfo (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeValueWithHttpInfo (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -44442,7 +44298,7 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeValue if (isConverted != null) localVarQueryParams.Add("isConverted", Configuration.ApiClient.ParameterToString(isConverted)); // query parameter if (setStyle != null) localVarQueryParams.Add("setStyle", Configuration.ApiClient.ParameterToString(setStyle)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -44450,10 +44306,6 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeValue else { localVarPostBody = range; // byte array - if ( "CellsRangesPostWorksheetCellsRangeValue" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -44486,11 +44338,11 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangeValue /// True: converted to other data type if appropriate. (optional, default to false) /// True: set the number format to cell's style when converting to other data type (optional, default to false) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeValueAsync (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangeValueAsync (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeValueAsyncWithHttpInfo(name, sheetName, value, range, isConverted, setStyle, folder, storage); + ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangeValueAsyncWithHttpInfo(name, sheetName, value, range, isConverted, setStyle, folder, storageName); return localVarResponse.Data; } @@ -44506,9 +44358,9 @@ public async System.Threading.Tasks.Task CellsRangesPostWork /// True: converted to other data type if appropriate. (optional, default to false) /// True: set the number format to cell's style when converting to other data type (optional, default to false) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeValueAsyncWithHttpInfo (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangeValueAsyncWithHttpInfo (string name, string sheetName, string value, Range range = null, bool? isConverted = null, bool? setStyle = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -44548,7 +44400,7 @@ public async System.Threading.Tasks.Task> CellsR if (isConverted != null) localVarQueryParams.Add("isConverted", Configuration.ApiClient.ParameterToString(isConverted)); // query parameter if (setStyle != null) localVarQueryParams.Add("setStyle", Configuration.ApiClient.ParameterToString(setStyle)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (range != null && range.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(range); // http body (model) parameter @@ -44585,12 +44437,12 @@ public async System.Threading.Tasks.Task> CellsR /// worksheet name /// copydata,copystyle,copyto,copyvalue (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsRangesPostWorksheetCellsRanges (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storage = null) + public CellsCloudResponse CellsRangesPostWorksheetCellsRanges (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangesWithHttpInfo(name, sheetName, rangeOperate, folder, storage); + ApiResponse localVarResponse = CellsRangesPostWorksheetCellsRangesWithHttpInfo(name, sheetName, rangeOperate, folder, storageName); return localVarResponse.Data; } @@ -44602,9 +44454,9 @@ public CellsCloudResponse CellsRangesPostWorksheetCellsRanges (string name, stri /// worksheet name /// copydata,copystyle,copyto,copyvalue (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangesWithHttpInfo (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangesWithHttpInfo (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -44638,7 +44490,7 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangesWith if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (rangeOperate != null && rangeOperate.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(rangeOperate); // http body (model) parameter @@ -44646,10 +44498,6 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangesWith else { localVarPostBody = rangeOperate; // byte array - if ( "CellsRangesPostWorksheetCellsRanges" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -44679,11 +44527,11 @@ public ApiResponse< CellsCloudResponse > CellsRangesPostWorksheetCellsRangesWith /// worksheet name /// copydata,copystyle,copyto,copyvalue (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangesAsync (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsRangesPostWorksheetCellsRangesAsync (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangesAsyncWithHttpInfo(name, sheetName, rangeOperate, folder, storage); + ApiResponse localVarResponse = await CellsRangesPostWorksheetCellsRangesAsyncWithHttpInfo(name, sheetName, rangeOperate, folder, storageName); return localVarResponse.Data; } @@ -44696,9 +44544,9 @@ public async System.Threading.Tasks.Task CellsRangesPostWork /// worksheet name /// copydata,copystyle,copyto,copyvalue (optional) /// Workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangesAsyncWithHttpInfo (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsRangesPostWorksheetCellsRangesAsyncWithHttpInfo (string name, string sheetName, RangeCopyRequest rangeOperate = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -44732,7 +44580,7 @@ public async System.Threading.Tasks.Task> CellsR if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (rangeOperate != null && rangeOperate.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(rangeOperate); // http body (model) parameter @@ -44771,12 +44619,12 @@ public async System.Threading.Tasks.Task> CellsR /// Autofit rows. (optional, default to false) /// Autofit columns. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// SaveResponse - public SaveResponse CellsSaveAsPostDocumentSaveAs (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storage = null) + public SaveResponse CellsSaveAsPostDocumentSaveAs (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsSaveAsPostDocumentSaveAsWithHttpInfo(name, saveOptions, newfilename, isAutoFitRows, isAutoFitColumns, folder, storage); + ApiResponse localVarResponse = CellsSaveAsPostDocumentSaveAsWithHttpInfo(name, saveOptions, newfilename, isAutoFitRows, isAutoFitColumns, folder, storageName); return localVarResponse.Data; } @@ -44790,9 +44638,9 @@ public SaveResponse CellsSaveAsPostDocumentSaveAs (string name, SaveOptions save /// Autofit rows. (optional, default to false) /// Autofit columns. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of SaveResponse - public ApiResponse< SaveResponse > CellsSaveAsPostDocumentSaveAsWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storage = null) + public ApiResponse< SaveResponse > CellsSaveAsPostDocumentSaveAsWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -44825,7 +44673,7 @@ public ApiResponse< SaveResponse > CellsSaveAsPostDocumentSaveAsWithHttpInfo (st if (isAutoFitRows != null) localVarQueryParams.Add("isAutoFitRows", Configuration.ApiClient.ParameterToString(isAutoFitRows)); // query parameter if (isAutoFitColumns != null) localVarQueryParams.Add("isAutoFitColumns", Configuration.ApiClient.ParameterToString(isAutoFitColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (saveOptions != null && saveOptions.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(saveOptions); // http body (model) parameter @@ -44833,10 +44681,6 @@ public ApiResponse< SaveResponse > CellsSaveAsPostDocumentSaveAsWithHttpInfo (st else { localVarPostBody = saveOptions; // byte array - if ( "CellsSaveAsPostDocumentSaveAs" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -44868,11 +44712,11 @@ public ApiResponse< SaveResponse > CellsSaveAsPostDocumentSaveAsWithHttpInfo (st /// Autofit rows. (optional, default to false) /// Autofit columns. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of SaveResponse - public async System.Threading.Tasks.Task CellsSaveAsPostDocumentSaveAsAsync (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsSaveAsPostDocumentSaveAsAsync (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo(name, saveOptions, newfilename, isAutoFitRows, isAutoFitColumns, folder, storage); + ApiResponse localVarResponse = await CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo(name, saveOptions, newfilename, isAutoFitRows, isAutoFitColumns, folder, storageName); return localVarResponse.Data; } @@ -44887,9 +44731,9 @@ public async System.Threading.Tasks.Task CellsSaveAsPostDocumentSa /// Autofit rows. (optional, default to false) /// Autofit columns. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (SaveResponse) - public async System.Threading.Tasks.Task> CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsSaveAsPostDocumentSaveAsAsyncWithHttpInfo (string name, SaveOptions saveOptions = null, string newfilename = null, bool? isAutoFitRows = null, bool? isAutoFitColumns = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -44922,7 +44766,7 @@ public async System.Threading.Tasks.Task> CellsSaveAsP if (isAutoFitRows != null) localVarQueryParams.Add("isAutoFitRows", Configuration.ApiClient.ParameterToString(isAutoFitRows)); // query parameter if (isAutoFitColumns != null) localVarQueryParams.Add("isAutoFitColumns", Configuration.ApiClient.ParameterToString(isAutoFitColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (saveOptions != null && saveOptions.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(saveOptions); // http body (model) parameter @@ -44959,12 +44803,12 @@ public async System.Threading.Tasks.Task> CellsSaveAsP /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsShapesDeleteWorksheetShape (string name, string sheetName, int? shapeindex, string folder = null, string storage = null) + public CellsCloudResponse CellsShapesDeleteWorksheetShape (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsShapesDeleteWorksheetShapeWithHttpInfo(name, sheetName, shapeindex, folder, storage); + ApiResponse localVarResponse = CellsShapesDeleteWorksheetShapeWithHttpInfo(name, sheetName, shapeindex, folder, storageName); return localVarResponse.Data; } @@ -44976,9 +44820,9 @@ public CellsCloudResponse CellsShapesDeleteWorksheetShape (string name, string s /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsShapesDeleteWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsShapesDeleteWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45016,7 +44860,7 @@ public ApiResponse< CellsCloudResponse > CellsShapesDeleteWorksheetShapeWithHttp if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (shapeindex != null) localVarPathParams.Add("shapeindex", Configuration.ApiClient.ParameterToString(shapeindex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -45045,11 +44889,11 @@ public ApiResponse< CellsCloudResponse > CellsShapesDeleteWorksheetShapeWithHttp /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsShapesDeleteWorksheetShapeAsync (string name, string sheetName, int? shapeindex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsShapesDeleteWorksheetShapeAsync (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsShapesDeleteWorksheetShapeAsyncWithHttpInfo(name, sheetName, shapeindex, folder, storage); + ApiResponse localVarResponse = await CellsShapesDeleteWorksheetShapeAsyncWithHttpInfo(name, sheetName, shapeindex, folder, storageName); return localVarResponse.Data; } @@ -45062,9 +44906,9 @@ public async System.Threading.Tasks.Task CellsShapesDeleteWo /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsShapesDeleteWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsShapesDeleteWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45102,7 +44946,7 @@ public async System.Threading.Tasks.Task> CellsS if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (shapeindex != null) localVarPathParams.Add("shapeindex", Configuration.ApiClient.ParameterToString(shapeindex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -45130,12 +44974,12 @@ public async System.Threading.Tasks.Task> CellsS /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsShapesDeleteWorksheetShapes (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsShapesDeleteWorksheetShapes (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsShapesDeleteWorksheetShapesWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsShapesDeleteWorksheetShapesWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -45146,9 +44990,9 @@ public CellsCloudResponse CellsShapesDeleteWorksheetShapes (string name, string /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsShapesDeleteWorksheetShapesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsShapesDeleteWorksheetShapesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45182,7 +45026,7 @@ public ApiResponse< CellsCloudResponse > CellsShapesDeleteWorksheetShapesWithHtt if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -45210,11 +45054,11 @@ public ApiResponse< CellsCloudResponse > CellsShapesDeleteWorksheetShapesWithHtt /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsShapesDeleteWorksheetShapesAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsShapesDeleteWorksheetShapesAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsShapesDeleteWorksheetShapesAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsShapesDeleteWorksheetShapesAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -45226,9 +45070,9 @@ public async System.Threading.Tasks.Task CellsShapesDeleteWo /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsShapesDeleteWorksheetShapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsShapesDeleteWorksheetShapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45262,7 +45106,7 @@ public async System.Threading.Tasks.Task> CellsS if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -45291,12 +45135,12 @@ public async System.Threading.Tasks.Task> CellsS /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ShapeResponse - public ShapeResponse CellsShapesGetWorksheetShape (string name, string sheetName, int? shapeindex, string folder = null, string storage = null) + public ShapeResponse CellsShapesGetWorksheetShape (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsShapesGetWorksheetShapeWithHttpInfo(name, sheetName, shapeindex, folder, storage); + ApiResponse localVarResponse = CellsShapesGetWorksheetShapeWithHttpInfo(name, sheetName, shapeindex, folder, storageName); return localVarResponse.Data; } @@ -45308,9 +45152,9 @@ public ShapeResponse CellsShapesGetWorksheetShape (string name, string sheetName /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ShapeResponse - public ApiResponse< ShapeResponse > CellsShapesGetWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storage = null) + public ApiResponse< ShapeResponse > CellsShapesGetWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45348,7 +45192,7 @@ public ApiResponse< ShapeResponse > CellsShapesGetWorksheetShapeWithHttpInfo (st if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (shapeindex != null) localVarPathParams.Add("shapeindex", Configuration.ApiClient.ParameterToString(shapeindex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -45377,11 +45221,11 @@ public ApiResponse< ShapeResponse > CellsShapesGetWorksheetShapeWithHttpInfo (st /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ShapeResponse - public async System.Threading.Tasks.Task CellsShapesGetWorksheetShapeAsync (string name, string sheetName, int? shapeindex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsShapesGetWorksheetShapeAsync (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsShapesGetWorksheetShapeAsyncWithHttpInfo(name, sheetName, shapeindex, folder, storage); + ApiResponse localVarResponse = await CellsShapesGetWorksheetShapeAsyncWithHttpInfo(name, sheetName, shapeindex, folder, storageName); return localVarResponse.Data; } @@ -45394,9 +45238,9 @@ public async System.Threading.Tasks.Task CellsShapesGetWorksheetS /// worksheet name. /// shape index in worksheet shapes. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ShapeResponse) - public async System.Threading.Tasks.Task> CellsShapesGetWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsShapesGetWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45434,7 +45278,7 @@ public async System.Threading.Tasks.Task> CellsShapes if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (shapeindex != null) localVarPathParams.Add("shapeindex", Configuration.ApiClient.ParameterToString(shapeindex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -45462,12 +45306,12 @@ public async System.Threading.Tasks.Task> CellsShapes /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ShapesResponse - public ShapesResponse CellsShapesGetWorksheetShapes (string name, string sheetName, string folder = null, string storage = null) + public ShapesResponse CellsShapesGetWorksheetShapes (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsShapesGetWorksheetShapesWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsShapesGetWorksheetShapesWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -45478,9 +45322,9 @@ public ShapesResponse CellsShapesGetWorksheetShapes (string name, string sheetNa /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ShapesResponse - public ApiResponse< ShapesResponse > CellsShapesGetWorksheetShapesWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< ShapesResponse > CellsShapesGetWorksheetShapesWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45514,7 +45358,7 @@ public ApiResponse< ShapesResponse > CellsShapesGetWorksheetShapesWithHttpInfo ( if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -45542,11 +45386,11 @@ public ApiResponse< ShapesResponse > CellsShapesGetWorksheetShapesWithHttpInfo ( /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ShapesResponse - public async System.Threading.Tasks.Task CellsShapesGetWorksheetShapesAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsShapesGetWorksheetShapesAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsShapesGetWorksheetShapesAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsShapesGetWorksheetShapesAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -45558,9 +45402,9 @@ public async System.Threading.Tasks.Task CellsShapesGetWorksheet /// document name. /// worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ShapesResponse) - public async System.Threading.Tasks.Task> CellsShapesGetWorksheetShapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsShapesGetWorksheetShapesAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45594,7 +45438,7 @@ public async System.Threading.Tasks.Task> CellsShape if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -45624,12 +45468,12 @@ public async System.Threading.Tasks.Task> CellsShape /// shape index in worksheet shapes. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsShapesPostWorksheetShape (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storage = null) + public CellsCloudResponse CellsShapesPostWorksheetShape (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsShapesPostWorksheetShapeWithHttpInfo(name, sheetName, shapeindex, dto, folder, storage); + ApiResponse localVarResponse = CellsShapesPostWorksheetShapeWithHttpInfo(name, sheetName, shapeindex, dto, folder, storageName); return localVarResponse.Data; } @@ -45642,9 +45486,9 @@ public CellsCloudResponse CellsShapesPostWorksheetShape (string name, string she /// shape index in worksheet shapes. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsShapesPostWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsShapesPostWorksheetShapeWithHttpInfo (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45682,7 +45526,7 @@ public ApiResponse< CellsCloudResponse > CellsShapesPostWorksheetShapeWithHttpIn if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (shapeindex != null) localVarPathParams.Add("shapeindex", Configuration.ApiClient.ParameterToString(shapeindex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (dto != null && dto.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(dto); // http body (model) parameter @@ -45690,10 +45534,6 @@ public ApiResponse< CellsCloudResponse > CellsShapesPostWorksheetShapeWithHttpIn else { localVarPostBody = dto; // byte array - if ( "CellsShapesPostWorksheetShape" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -45724,11 +45564,11 @@ public ApiResponse< CellsCloudResponse > CellsShapesPostWorksheetShapeWithHttpIn /// shape index in worksheet shapes. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsShapesPostWorksheetShapeAsync (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsShapesPostWorksheetShapeAsync (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsShapesPostWorksheetShapeAsyncWithHttpInfo(name, sheetName, shapeindex, dto, folder, storage); + ApiResponse localVarResponse = await CellsShapesPostWorksheetShapeAsyncWithHttpInfo(name, sheetName, shapeindex, dto, folder, storageName); return localVarResponse.Data; } @@ -45742,9 +45582,9 @@ public async System.Threading.Tasks.Task CellsShapesPostWork /// shape index in worksheet shapes. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsShapesPostWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsShapesPostWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, int? shapeindex, Shape dto = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45782,7 +45622,7 @@ public async System.Threading.Tasks.Task> CellsS if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (shapeindex != null) localVarPathParams.Add("shapeindex", Configuration.ApiClient.ParameterToString(shapeindex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (dto != null && dto.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(dto); // http body (model) parameter @@ -45817,20 +45657,21 @@ public async System.Threading.Tasks.Task> CellsS /// Thrown when fails to make API call /// document name. /// worksheet name. - /// shape object type - /// Upper left row index. - /// Upper left column index. - /// Represents the vertical offset of Spinner from its left row, in unit of pixel. - /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. - /// Represents the height of Spinner, in unit of pixel. - /// Represents the width of Spinner, in unit of pixel. - /// Document's folder. (optional) - /// storage name. (optional) + /// (optional) + /// shape object type (optional) + /// Upper left row index. (optional) + /// Upper left column index. (optional) + /// Represents the vertical offset of Spinner from its left row, in unit of pixel. (optional) + /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. (optional) + /// Represents the height of Spinner, in unit of pixel. (optional) + /// Represents the width of Spinner, in unit of pixel. (optional) + /// Document's folder. (optional) + /// storage name. (optional) /// ShapeResponse - public ShapeResponse CellsShapesPutWorksheetShape (string name, string sheetName, string drawingType, int? upperLeftRow, int? upperLeftColumn, int? top, int? left, int? width, int? height, string folder = null, string storage = null) + public ShapeResponse CellsShapesPutWorksheetShape (string name, string sheetName, Shape shapeDTO = null, string drawingType = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? top = null, int? left = null, int? width = null, int? height = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsShapesPutWorksheetShapeWithHttpInfo(name, sheetName, drawingType, upperLeftRow, upperLeftColumn, top, left, width, height, folder, storage); + ApiResponse localVarResponse = CellsShapesPutWorksheetShapeWithHttpInfo(name, sheetName, shapeDTO, drawingType, upperLeftRow, upperLeftColumn, top, left, width, height, folder, storageName); return localVarResponse.Data; } @@ -45840,17 +45681,18 @@ public ShapeResponse CellsShapesPutWorksheetShape (string name, string sheetName /// Thrown when fails to make API call /// document name. /// worksheet name. - /// shape object type - /// Upper left row index. - /// Upper left column index. - /// Represents the vertical offset of Spinner from its left row, in unit of pixel. - /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. - /// Represents the height of Spinner, in unit of pixel. - /// Represents the width of Spinner, in unit of pixel. - /// Document's folder. (optional) - /// storage name. (optional) + /// (optional) + /// shape object type (optional) + /// Upper left row index. (optional) + /// Upper left column index. (optional) + /// Represents the vertical offset of Spinner from its left row, in unit of pixel. (optional) + /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. (optional) + /// Represents the height of Spinner, in unit of pixel. (optional) + /// Represents the width of Spinner, in unit of pixel. (optional) + /// Document's folder. (optional) + /// storage name. (optional) /// ApiResponse of ShapeResponse - public ApiResponse< ShapeResponse > CellsShapesPutWorksheetShapeWithHttpInfo (string name, string sheetName, string drawingType, int? upperLeftRow, int? upperLeftColumn, int? top, int? left, int? width, int? height, string folder = null, string storage = null) + public ApiResponse< ShapeResponse > CellsShapesPutWorksheetShapeWithHttpInfo (string name, string sheetName, Shape shapeDTO = null, string drawingType = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? top = null, int? left = null, int? width = null, int? height = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45858,27 +45700,6 @@ public ApiResponse< ShapeResponse > CellsShapesPutWorksheetShapeWithHttpInfo (st // verify the required parameter 'sheetName' is set if (sheetName == null) throw new ApiException(400, "Missing required parameter 'sheetName' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'drawingType' is set - if (drawingType == null) - throw new ApiException(400, "Missing required parameter 'drawingType' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'upperLeftRow' is set - if (upperLeftRow == null) - throw new ApiException(400, "Missing required parameter 'upperLeftRow' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'upperLeftColumn' is set - if (upperLeftColumn == null) - throw new ApiException(400, "Missing required parameter 'upperLeftColumn' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'top' is set - if (top == null) - throw new ApiException(400, "Missing required parameter 'top' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'left' is set - if (left == null) - throw new ApiException(400, "Missing required parameter 'left' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'width' is set - if (width == null) - throw new ApiException(400, "Missing required parameter 'width' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'height' is set - if (height == null) - throw new ApiException(400, "Missing required parameter 'height' when calling CellsApi->CellsShapesPutWorksheetShape"); var localVarPath = "/cells/{name}/worksheets/{sheetName}/shapes"; var localVarPathParams = new Dictionary(); @@ -45912,7 +45733,15 @@ public ApiResponse< ShapeResponse > CellsShapesPutWorksheetShapeWithHttpInfo (st if (width != null) localVarQueryParams.Add("width", Configuration.ApiClient.ParameterToString(width)); // query parameter if (height != null) localVarQueryParams.Add("height", Configuration.ApiClient.ParameterToString(height)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter + if (shapeDTO != null && shapeDTO.GetType() != typeof(byte[])) + { + localVarPostBody = Configuration.ApiClient.Serialize(shapeDTO); // http body (model) parameter + } + else + { + localVarPostBody = shapeDTO; // byte array + } // make the HTTP request @@ -45939,19 +45768,20 @@ public ApiResponse< ShapeResponse > CellsShapesPutWorksheetShapeWithHttpInfo (st /// Thrown when fails to make API call /// document name. /// worksheet name. - /// shape object type - /// Upper left row index. - /// Upper left column index. - /// Represents the vertical offset of Spinner from its left row, in unit of pixel. - /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. - /// Represents the height of Spinner, in unit of pixel. - /// Represents the width of Spinner, in unit of pixel. - /// Document's folder. (optional) - /// storage name. (optional) + /// (optional) + /// shape object type (optional) + /// Upper left row index. (optional) + /// Upper left column index. (optional) + /// Represents the vertical offset of Spinner from its left row, in unit of pixel. (optional) + /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. (optional) + /// Represents the height of Spinner, in unit of pixel. (optional) + /// Represents the width of Spinner, in unit of pixel. (optional) + /// Document's folder. (optional) + /// storage name. (optional) /// Task of ShapeResponse - public async System.Threading.Tasks.Task CellsShapesPutWorksheetShapeAsync (string name, string sheetName, string drawingType, int? upperLeftRow, int? upperLeftColumn, int? top, int? left, int? width, int? height, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsShapesPutWorksheetShapeAsync (string name, string sheetName, Shape shapeDTO = null, string drawingType = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? top = null, int? left = null, int? width = null, int? height = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsShapesPutWorksheetShapeAsyncWithHttpInfo(name, sheetName, drawingType, upperLeftRow, upperLeftColumn, top, left, width, height, folder, storage); + ApiResponse localVarResponse = await CellsShapesPutWorksheetShapeAsyncWithHttpInfo(name, sheetName, shapeDTO, drawingType, upperLeftRow, upperLeftColumn, top, left, width, height, folder, storageName); return localVarResponse.Data; } @@ -45962,17 +45792,18 @@ public async System.Threading.Tasks.Task CellsShapesPutWorksheetS /// Thrown when fails to make API call /// document name. /// worksheet name. - /// shape object type - /// Upper left row index. - /// Upper left column index. - /// Represents the vertical offset of Spinner from its left row, in unit of pixel. - /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. - /// Represents the height of Spinner, in unit of pixel. - /// Represents the width of Spinner, in unit of pixel. - /// Document's folder. (optional) - /// storage name. (optional) + /// (optional) + /// shape object type (optional) + /// Upper left row index. (optional) + /// Upper left column index. (optional) + /// Represents the vertical offset of Spinner from its left row, in unit of pixel. (optional) + /// Represents the horizontal offset of Spinner from its left column, in unit of pixel. (optional) + /// Represents the height of Spinner, in unit of pixel. (optional) + /// Represents the width of Spinner, in unit of pixel. (optional) + /// Document's folder. (optional) + /// storage name. (optional) /// Task of ApiResponse (ShapeResponse) - public async System.Threading.Tasks.Task> CellsShapesPutWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, string drawingType, int? upperLeftRow, int? upperLeftColumn, int? top, int? left, int? width, int? height, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsShapesPutWorksheetShapeAsyncWithHttpInfo (string name, string sheetName, Shape shapeDTO = null, string drawingType = null, int? upperLeftRow = null, int? upperLeftColumn = null, int? top = null, int? left = null, int? width = null, int? height = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -45980,27 +45811,6 @@ public async System.Threading.Tasks.Task> CellsShapes // verify the required parameter 'sheetName' is set if (sheetName == null) throw new ApiException(400, "Missing required parameter 'sheetName' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'drawingType' is set - if (drawingType == null) - throw new ApiException(400, "Missing required parameter 'drawingType' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'upperLeftRow' is set - if (upperLeftRow == null) - throw new ApiException(400, "Missing required parameter 'upperLeftRow' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'upperLeftColumn' is set - if (upperLeftColumn == null) - throw new ApiException(400, "Missing required parameter 'upperLeftColumn' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'top' is set - if (top == null) - throw new ApiException(400, "Missing required parameter 'top' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'left' is set - if (left == null) - throw new ApiException(400, "Missing required parameter 'left' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'width' is set - if (width == null) - throw new ApiException(400, "Missing required parameter 'width' when calling CellsApi->CellsShapesPutWorksheetShape"); - // verify the required parameter 'height' is set - if (height == null) - throw new ApiException(400, "Missing required parameter 'height' when calling CellsApi->CellsShapesPutWorksheetShape"); var localVarPath = "/cells/{name}/worksheets/{sheetName}/shapes"; var localVarPathParams = new Dictionary(); @@ -46034,7 +45844,15 @@ public async System.Threading.Tasks.Task> CellsShapes if (width != null) localVarQueryParams.Add("width", Configuration.ApiClient.ParameterToString(width)); // query parameter if (height != null) localVarQueryParams.Add("height", Configuration.ApiClient.ParameterToString(height)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter + if (shapeDTO != null && shapeDTO.GetType() != typeof(byte[])) + { + localVarPostBody = Configuration.ApiClient.Serialize(shapeDTO); // http body (model) parameter + } + else + { + localVarPostBody = shapeDTO; // byte array + } // make the HTTP request @@ -46109,10 +45927,6 @@ public ApiResponse< Object > CellsTaskPostRunTaskWithHttpInfo (TaskData taskData else { localVarPostBody = taskData; // byte array - if ( "CellsTaskPostRunTask" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -46216,12 +46030,12 @@ public async System.Threading.Tasks.Task> CellsTaskPostRunTa /// The document name. /// Encryption settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookDeleteDecryptDocument (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookDeleteDecryptDocument (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookDeleteDecryptDocumentWithHttpInfo(name, encryption, folder, storage); + ApiResponse localVarResponse = CellsWorkbookDeleteDecryptDocumentWithHttpInfo(name, encryption, folder, storageName); return localVarResponse.Data; } @@ -46232,9 +46046,9 @@ public CellsCloudResponse CellsWorkbookDeleteDecryptDocument (string name, Workb /// The document name. /// Encryption settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteDecryptDocumentWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteDecryptDocumentWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -46264,7 +46078,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteDecryptDocumentWithH if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (encryption != null && encryption.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(encryption); // http body (model) parameter @@ -46272,10 +46086,6 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteDecryptDocumentWithH else { localVarPostBody = encryption; // byte array - if ( "CellsWorkbookDeleteDecryptDocument" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -46304,11 +46114,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteDecryptDocumentWithH /// The document name. /// Encryption settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookDeleteDecryptDocumentAsync (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookDeleteDecryptDocumentAsync (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookDeleteDecryptDocumentAsyncWithHttpInfo(name, encryption, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookDeleteDecryptDocumentAsyncWithHttpInfo(name, encryption, folder, storageName); return localVarResponse.Data; } @@ -46320,9 +46130,9 @@ public async System.Threading.Tasks.Task CellsWorkbookDelete /// The document name. /// Encryption settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookDeleteDecryptDocumentAsyncWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookDeleteDecryptDocumentAsyncWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -46352,7 +46162,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (encryption != null && encryption.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(encryption); // http body (model) parameter @@ -46387,12 +46197,12 @@ public async System.Threading.Tasks.Task> CellsW /// Thrown when fails to make API call /// The document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookDeleteDocumentUnprotectFromChanges (string name, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookDeleteDocumentUnprotectFromChanges (string name, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookDeleteDocumentUnprotectFromChangesWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = CellsWorkbookDeleteDocumentUnprotectFromChangesWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -46402,9 +46212,9 @@ public CellsCloudResponse CellsWorkbookDeleteDocumentUnprotectFromChanges (strin /// Thrown when fails to make API call /// The document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteDocumentUnprotectFromChangesWithHttpInfo (string name, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteDocumentUnprotectFromChangesWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -46434,7 +46244,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteDocumentUnprotectFro if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -46461,11 +46271,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteDocumentUnprotectFro /// Thrown when fails to make API call /// The document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookDeleteDocumentUnprotectFromChangesAsync (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookDeleteDocumentUnprotectFromChangesAsync (string name, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookDeleteDocumentUnprotectFromChangesAsyncWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookDeleteDocumentUnprotectFromChangesAsyncWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -46476,9 +46286,9 @@ public async System.Threading.Tasks.Task CellsWorkbookDelete /// Thrown when fails to make API call /// The document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookDeleteDocumentUnprotectFromChangesAsyncWithHttpInfo (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookDeleteDocumentUnprotectFromChangesAsyncWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -46508,7 +46318,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -46536,12 +46346,12 @@ public async System.Threading.Tasks.Task> CellsW /// The document name. /// Protection settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookDeleteUnprotectDocument (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookDeleteUnprotectDocument (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookDeleteUnprotectDocumentWithHttpInfo(name, protection, folder, storage); + ApiResponse localVarResponse = CellsWorkbookDeleteUnprotectDocumentWithHttpInfo(name, protection, folder, storageName); return localVarResponse.Data; } @@ -46552,9 +46362,9 @@ public CellsCloudResponse CellsWorkbookDeleteUnprotectDocument (string name, Wor /// The document name. /// Protection settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteUnprotectDocumentWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteUnprotectDocumentWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -46584,7 +46394,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteUnprotectDocumentWit if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (protection != null && protection.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(protection); // http body (model) parameter @@ -46592,10 +46402,6 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteUnprotectDocumentWit else { localVarPostBody = protection; // byte array - if ( "CellsWorkbookDeleteUnprotectDocument" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -46624,11 +46430,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteUnprotectDocumentWit /// The document name. /// Protection settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookDeleteUnprotectDocumentAsync (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookDeleteUnprotectDocumentAsync (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookDeleteUnprotectDocumentAsyncWithHttpInfo(name, protection, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookDeleteUnprotectDocumentAsyncWithHttpInfo(name, protection, folder, storageName); return localVarResponse.Data; } @@ -46640,9 +46446,9 @@ public async System.Threading.Tasks.Task CellsWorkbookDelete /// The document name. /// Protection settings, only password can be specified. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookDeleteUnprotectDocumentAsyncWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookDeleteUnprotectDocumentAsyncWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -46672,7 +46478,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (protection != null && protection.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(protection); // http body (model) parameter @@ -46707,12 +46513,12 @@ public async System.Threading.Tasks.Task> CellsW /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookDeleteWorkbookBackground (string name, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookDeleteWorkbookBackground (string name, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookDeleteWorkbookBackgroundWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = CellsWorkbookDeleteWorkbookBackgroundWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -46722,9 +46528,9 @@ public CellsCloudResponse CellsWorkbookDeleteWorkbookBackground (string name, st /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookBackgroundWithHttpInfo (string name, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookBackgroundWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -46754,7 +46560,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookBackgroundWi if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -46781,11 +46587,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookBackgroundWi /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookBackgroundAsync (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookBackgroundAsync (string name, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookDeleteWorkbookBackgroundAsyncWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookDeleteWorkbookBackgroundAsyncWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -46796,9 +46602,9 @@ public async System.Threading.Tasks.Task CellsWorkbookDelete /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookBackgroundAsyncWithHttpInfo (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookBackgroundAsyncWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -46828,7 +46634,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -46856,12 +46662,12 @@ public async System.Threading.Tasks.Task> CellsW /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookDeleteWorkbookName (string name, string nameName, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookDeleteWorkbookName (string name, string nameName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookDeleteWorkbookNameWithHttpInfo(name, nameName, folder, storage); + ApiResponse localVarResponse = CellsWorkbookDeleteWorkbookNameWithHttpInfo(name, nameName, folder, storageName); return localVarResponse.Data; } @@ -46872,9 +46678,9 @@ public CellsCloudResponse CellsWorkbookDeleteWorkbookName (string name, string n /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookNameWithHttpInfo (string name, string nameName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookNameWithHttpInfo (string name, string nameName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -46908,7 +46714,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookNameWithHttp if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (nameName != null) localVarPathParams.Add("nameName", Configuration.ApiClient.ParameterToString(nameName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -46936,11 +46742,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookNameWithHttp /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookNameAsync (string name, string nameName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookNameAsync (string name, string nameName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookDeleteWorkbookNameAsyncWithHttpInfo(name, nameName, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookDeleteWorkbookNameAsyncWithHttpInfo(name, nameName, folder, storageName); return localVarResponse.Data; } @@ -46952,9 +46758,9 @@ public async System.Threading.Tasks.Task CellsWorkbookDelete /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookNameAsyncWithHttpInfo (string name, string nameName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookNameAsyncWithHttpInfo (string name, string nameName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -46988,7 +46794,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (nameName != null) localVarPathParams.Add("nameName", Configuration.ApiClient.ParameterToString(nameName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -47015,12 +46821,12 @@ public async System.Threading.Tasks.Task> CellsW /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookDeleteWorkbookNames (string name, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookDeleteWorkbookNames (string name, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookDeleteWorkbookNamesWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = CellsWorkbookDeleteWorkbookNamesWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -47030,9 +46836,9 @@ public CellsCloudResponse CellsWorkbookDeleteWorkbookNames (string name, string /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookNamesWithHttpInfo (string name, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookNamesWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -47062,7 +46868,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookNamesWithHtt if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -47089,11 +46895,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookDeleteWorkbookNamesWithHtt /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookNamesAsync (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookDeleteWorkbookNamesAsync (string name, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookDeleteWorkbookNamesAsyncWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookDeleteWorkbookNamesAsyncWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -47104,9 +46910,9 @@ public async System.Threading.Tasks.Task CellsWorkbookDelete /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookNamesAsyncWithHttpInfo (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookDeleteWorkbookNamesAsyncWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -47136,7 +46942,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -47167,13 +46973,13 @@ public async System.Threading.Tasks.Task> CellsW /// Set document rows to be autofit. (optional, default to false) /// Only save table data. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The document output folder. (optional) /// System.IO.Stream - public System.IO.Stream CellsWorkbookGetWorkbook (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storage = null, string outPath = null) + public System.IO.Stream CellsWorkbookGetWorkbook (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storageName = null, string outPath = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookGetWorkbookWithHttpInfo(name, password, format, isAutoFit, onlySaveTable, folder, storage, outPath); + ApiResponse localVarResponse = CellsWorkbookGetWorkbookWithHttpInfo(name, password, format, isAutoFit, onlySaveTable, folder, storageName, outPath); return localVarResponse.Data; } @@ -47187,10 +46993,10 @@ public System.IO.Stream CellsWorkbookGetWorkbook (string name, string password = /// Set document rows to be autofit. (optional, default to false) /// Only save table data. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The document output folder. (optional) /// ApiResponse of System.IO.Stream - public ApiResponse< System.IO.Stream > CellsWorkbookGetWorkbookWithHttpInfo (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storage = null, string outPath = null) + public ApiResponse< System.IO.Stream > CellsWorkbookGetWorkbookWithHttpInfo (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storageName = null, string outPath = null) { // verify the required parameter 'name' is set if (name == null) @@ -47224,7 +47030,7 @@ public System.IO.Stream CellsWorkbookGetWorkbook (string name, string password = if (isAutoFit != null) localVarQueryParams.Add("isAutoFit", Configuration.ApiClient.ParameterToString(isAutoFit)); // query parameter if (onlySaveTable != null) localVarQueryParams.Add("onlySaveTable", Configuration.ApiClient.ParameterToString(onlySaveTable)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (outPath != null) localVarQueryParams.Add("outPath", Configuration.ApiClient.ParameterToString(outPath)); // query parameter @@ -47256,12 +47062,12 @@ public System.IO.Stream CellsWorkbookGetWorkbook (string name, string password = /// Set document rows to be autofit. (optional, default to false) /// Only save table data. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The document output folder. (optional) /// Task of System.IO.Stream - public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookAsync (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storage = null, string outPath = null) + public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookAsync (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storageName = null, string outPath = null) { - ApiResponse localVarResponse = await CellsWorkbookGetWorkbookAsyncWithHttpInfo(name, password, format, isAutoFit, onlySaveTable, folder, storage, outPath); + ApiResponse localVarResponse = await CellsWorkbookGetWorkbookAsyncWithHttpInfo(name, password, format, isAutoFit, onlySaveTable, folder, storageName, outPath); return localVarResponse.Data; } @@ -47276,10 +47082,10 @@ public System.IO.Stream CellsWorkbookGetWorkbook (string name, string password = /// Set document rows to be autofit. (optional, default to false) /// Only save table data. (optional, default to false) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// The document output folder. (optional) /// Task of ApiResponse (System.IO.Stream) - public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookAsyncWithHttpInfo (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storage = null, string outPath = null) + public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookAsyncWithHttpInfo (string name, string password = null, string format = null, bool? isAutoFit = null, bool? onlySaveTable = null, string folder = null, string storageName = null, string outPath = null) { // verify the required parameter 'name' is set if (name == null) @@ -47313,7 +47119,7 @@ public System.IO.Stream CellsWorkbookGetWorkbook (string name, string password = if (isAutoFit != null) localVarQueryParams.Add("isAutoFit", Configuration.ApiClient.ParameterToString(isAutoFit)); // query parameter if (onlySaveTable != null) localVarQueryParams.Add("onlySaveTable", Configuration.ApiClient.ParameterToString(onlySaveTable)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (outPath != null) localVarQueryParams.Add("outPath", Configuration.ApiClient.ParameterToString(outPath)); // query parameter @@ -47341,12 +47147,12 @@ public System.IO.Stream CellsWorkbookGetWorkbook (string name, string password = /// Thrown when fails to make API call /// The workbook name. /// The document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// StyleResponse - public StyleResponse CellsWorkbookGetWorkbookDefaultStyle (string name, string folder = null, string storage = null) + public StyleResponse CellsWorkbookGetWorkbookDefaultStyle (string name, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookGetWorkbookDefaultStyleWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = CellsWorkbookGetWorkbookDefaultStyleWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -47356,9 +47162,9 @@ public StyleResponse CellsWorkbookGetWorkbookDefaultStyle (string name, string f /// Thrown when fails to make API call /// The workbook name. /// The document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of StyleResponse - public ApiResponse< StyleResponse > CellsWorkbookGetWorkbookDefaultStyleWithHttpInfo (string name, string folder = null, string storage = null) + public ApiResponse< StyleResponse > CellsWorkbookGetWorkbookDefaultStyleWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -47388,7 +47194,7 @@ public ApiResponse< StyleResponse > CellsWorkbookGetWorkbookDefaultStyleWithHttp if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -47415,11 +47221,11 @@ public ApiResponse< StyleResponse > CellsWorkbookGetWorkbookDefaultStyleWithHttp /// Thrown when fails to make API call /// The workbook name. /// The document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of StyleResponse - public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookDefaultStyleAsync (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookDefaultStyleAsync (string name, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookGetWorkbookDefaultStyleAsyncWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookGetWorkbookDefaultStyleAsyncWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -47430,9 +47236,9 @@ public async System.Threading.Tasks.Task CellsWorkbookGetWorkbook /// Thrown when fails to make API call /// The workbook name. /// The document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (StyleResponse) - public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookDefaultStyleAsyncWithHttpInfo (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookDefaultStyleAsyncWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -47462,7 +47268,7 @@ public async System.Threading.Tasks.Task> CellsWorkbo if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -47490,12 +47296,12 @@ public async System.Threading.Tasks.Task> CellsWorkbo /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// NameResponse - public NameResponse CellsWorkbookGetWorkbookName (string name, string nameName, string folder = null, string storage = null) + public NameResponse CellsWorkbookGetWorkbookName (string name, string nameName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookGetWorkbookNameWithHttpInfo(name, nameName, folder, storage); + ApiResponse localVarResponse = CellsWorkbookGetWorkbookNameWithHttpInfo(name, nameName, folder, storageName); return localVarResponse.Data; } @@ -47506,9 +47312,9 @@ public NameResponse CellsWorkbookGetWorkbookName (string name, string nameName, /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of NameResponse - public ApiResponse< NameResponse > CellsWorkbookGetWorkbookNameWithHttpInfo (string name, string nameName, string folder = null, string storage = null) + public ApiResponse< NameResponse > CellsWorkbookGetWorkbookNameWithHttpInfo (string name, string nameName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -47542,7 +47348,7 @@ public ApiResponse< NameResponse > CellsWorkbookGetWorkbookNameWithHttpInfo (str if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (nameName != null) localVarPathParams.Add("nameName", Configuration.ApiClient.ParameterToString(nameName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -47570,11 +47376,11 @@ public ApiResponse< NameResponse > CellsWorkbookGetWorkbookNameWithHttpInfo (str /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of NameResponse - public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookNameAsync (string name, string nameName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookNameAsync (string name, string nameName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookGetWorkbookNameAsyncWithHttpInfo(name, nameName, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookGetWorkbookNameAsyncWithHttpInfo(name, nameName, folder, storageName); return localVarResponse.Data; } @@ -47586,9 +47392,9 @@ public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookN /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (NameResponse) - public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNameAsyncWithHttpInfo (string name, string nameName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNameAsyncWithHttpInfo (string name, string nameName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -47622,7 +47428,7 @@ public async System.Threading.Tasks.Task> CellsWorkboo if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (nameName != null) localVarPathParams.Add("nameName", Configuration.ApiClient.ParameterToString(nameName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -47650,12 +47456,12 @@ public async System.Threading.Tasks.Task> CellsWorkboo /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RangeValueResponse - public RangeValueResponse CellsWorkbookGetWorkbookNameValue (string name, string nameName, string folder = null, string storage = null) + public RangeValueResponse CellsWorkbookGetWorkbookNameValue (string name, string nameName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookGetWorkbookNameValueWithHttpInfo(name, nameName, folder, storage); + ApiResponse localVarResponse = CellsWorkbookGetWorkbookNameValueWithHttpInfo(name, nameName, folder, storageName); return localVarResponse.Data; } @@ -47666,9 +47472,9 @@ public RangeValueResponse CellsWorkbookGetWorkbookNameValue (string name, string /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RangeValueResponse - public ApiResponse< RangeValueResponse > CellsWorkbookGetWorkbookNameValueWithHttpInfo (string name, string nameName, string folder = null, string storage = null) + public ApiResponse< RangeValueResponse > CellsWorkbookGetWorkbookNameValueWithHttpInfo (string name, string nameName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -47702,7 +47508,7 @@ public ApiResponse< RangeValueResponse > CellsWorkbookGetWorkbookNameValueWithHt if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (nameName != null) localVarPathParams.Add("nameName", Configuration.ApiClient.ParameterToString(nameName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -47730,11 +47536,11 @@ public ApiResponse< RangeValueResponse > CellsWorkbookGetWorkbookNameValueWithHt /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RangeValueResponse - public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookNameValueAsync (string name, string nameName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookNameValueAsync (string name, string nameName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookGetWorkbookNameValueAsyncWithHttpInfo(name, nameName, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookGetWorkbookNameValueAsyncWithHttpInfo(name, nameName, folder, storageName); return localVarResponse.Data; } @@ -47746,9 +47552,9 @@ public async System.Threading.Tasks.Task CellsWorkbookGetWor /// The workbook name. /// The name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RangeValueResponse) - public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNameValueAsyncWithHttpInfo (string name, string nameName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNameValueAsyncWithHttpInfo (string name, string nameName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -47782,7 +47588,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (nameName != null) localVarPathParams.Add("nameName", Configuration.ApiClient.ParameterToString(nameName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -47809,12 +47615,12 @@ public async System.Threading.Tasks.Task> CellsW /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// NamesResponse - public NamesResponse CellsWorkbookGetWorkbookNames (string name, string folder = null, string storage = null) + public NamesResponse CellsWorkbookGetWorkbookNames (string name, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookGetWorkbookNamesWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = CellsWorkbookGetWorkbookNamesWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -47824,9 +47630,9 @@ public NamesResponse CellsWorkbookGetWorkbookNames (string name, string folder = /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of NamesResponse - public ApiResponse< NamesResponse > CellsWorkbookGetWorkbookNamesWithHttpInfo (string name, string folder = null, string storage = null) + public ApiResponse< NamesResponse > CellsWorkbookGetWorkbookNamesWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -47856,7 +47662,7 @@ public ApiResponse< NamesResponse > CellsWorkbookGetWorkbookNamesWithHttpInfo (s if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -47883,11 +47689,11 @@ public ApiResponse< NamesResponse > CellsWorkbookGetWorkbookNamesWithHttpInfo (s /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of NamesResponse - public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookNamesAsync (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookNamesAsync (string name, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookGetWorkbookNamesAsyncWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookGetWorkbookNamesAsyncWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -47898,9 +47704,9 @@ public async System.Threading.Tasks.Task CellsWorkbookGetWorkbook /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (NamesResponse) - public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNamesAsyncWithHttpInfo (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookNamesAsyncWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -47930,7 +47736,7 @@ public async System.Threading.Tasks.Task> CellsWorkbo if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -47957,12 +47763,12 @@ public async System.Threading.Tasks.Task> CellsWorkbo /// Thrown when fails to make API call /// Document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorkbookSettingsResponse - public WorkbookSettingsResponse CellsWorkbookGetWorkbookSettings (string name, string folder = null, string storage = null) + public WorkbookSettingsResponse CellsWorkbookGetWorkbookSettings (string name, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookGetWorkbookSettingsWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = CellsWorkbookGetWorkbookSettingsWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -47972,9 +47778,9 @@ public WorkbookSettingsResponse CellsWorkbookGetWorkbookSettings (string name, s /// Thrown when fails to make API call /// Document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorkbookSettingsResponse - public ApiResponse< WorkbookSettingsResponse > CellsWorkbookGetWorkbookSettingsWithHttpInfo (string name, string folder = null, string storage = null) + public ApiResponse< WorkbookSettingsResponse > CellsWorkbookGetWorkbookSettingsWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48004,7 +47810,7 @@ public ApiResponse< WorkbookSettingsResponse > CellsWorkbookGetWorkbookSettingsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -48031,11 +47837,11 @@ public ApiResponse< WorkbookSettingsResponse > CellsWorkbookGetWorkbookSettingsW /// Thrown when fails to make API call /// Document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorkbookSettingsResponse - public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookSettingsAsync (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookSettingsAsync (string name, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookGetWorkbookSettingsAsyncWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookGetWorkbookSettingsAsyncWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -48046,9 +47852,9 @@ public async System.Threading.Tasks.Task CellsWorkbook /// Thrown when fails to make API call /// Document name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorkbookSettingsResponse) - public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookSettingsAsyncWithHttpInfo (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookSettingsAsyncWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48078,7 +47884,7 @@ public async System.Threading.Tasks.Task> if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -48105,12 +47911,12 @@ public async System.Threading.Tasks.Task> /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TextItemsResponse - public TextItemsResponse CellsWorkbookGetWorkbookTextItems (string name, string folder = null, string storage = null) + public TextItemsResponse CellsWorkbookGetWorkbookTextItems (string name, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookGetWorkbookTextItemsWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = CellsWorkbookGetWorkbookTextItemsWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -48120,9 +47926,9 @@ public TextItemsResponse CellsWorkbookGetWorkbookTextItems (string name, string /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TextItemsResponse - public ApiResponse< TextItemsResponse > CellsWorkbookGetWorkbookTextItemsWithHttpInfo (string name, string folder = null, string storage = null) + public ApiResponse< TextItemsResponse > CellsWorkbookGetWorkbookTextItemsWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48152,7 +47958,7 @@ public ApiResponse< TextItemsResponse > CellsWorkbookGetWorkbookTextItemsWithHtt if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -48179,11 +47985,11 @@ public ApiResponse< TextItemsResponse > CellsWorkbookGetWorkbookTextItemsWithHtt /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TextItemsResponse - public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookTextItemsAsync (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookGetWorkbookTextItemsAsync (string name, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookGetWorkbookTextItemsAsyncWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookGetWorkbookTextItemsAsyncWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -48194,9 +48000,9 @@ public async System.Threading.Tasks.Task CellsWorkbookGetWork /// Thrown when fails to make API call /// The workbook name. /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TextItemsResponse) - public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookTextItemsAsyncWithHttpInfo (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookGetWorkbookTextItemsAsyncWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48226,7 +48032,7 @@ public async System.Threading.Tasks.Task> CellsWo if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -48257,12 +48063,12 @@ public async System.Threading.Tasks.Task> CellsWo /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookPostAutofitWorkbookRows (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookPostAutofitWorkbookRows (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPostAutofitWorkbookRowsWithHttpInfo(name, autoFitterOptions, startRow, endRow, onlyAuto, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPostAutofitWorkbookRowsWithHttpInfo(name, autoFitterOptions, startRow, endRow, onlyAuto, folder, storageName); return localVarResponse.Data; } @@ -48276,9 +48082,9 @@ public CellsCloudResponse CellsWorkbookPostAutofitWorkbookRows (string name, Aut /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookPostAutofitWorkbookRowsWithHttpInfo (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookPostAutofitWorkbookRowsWithHttpInfo (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48311,7 +48117,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostAutofitWorkbookRowsWit if (endRow != null) localVarQueryParams.Add("endRow", Configuration.ApiClient.ParameterToString(endRow)); // query parameter if (onlyAuto != null) localVarQueryParams.Add("onlyAuto", Configuration.ApiClient.ParameterToString(onlyAuto)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (autoFitterOptions != null && autoFitterOptions.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(autoFitterOptions); // http body (model) parameter @@ -48319,10 +48125,6 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostAutofitWorkbookRowsWit else { localVarPostBody = autoFitterOptions; // byte array - if ( "CellsWorkbookPostAutofitWorkbookRows" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -48354,11 +48156,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostAutofitWorkbookRowsWit /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookPostAutofitWorkbookRowsAsync (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPostAutofitWorkbookRowsAsync (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPostAutofitWorkbookRowsAsyncWithHttpInfo(name, autoFitterOptions, startRow, endRow, onlyAuto, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPostAutofitWorkbookRowsAsyncWithHttpInfo(name, autoFitterOptions, startRow, endRow, onlyAuto, folder, storageName); return localVarResponse.Data; } @@ -48373,9 +48175,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPostAu /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPostAutofitWorkbookRowsAsyncWithHttpInfo (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPostAutofitWorkbookRowsAsyncWithHttpInfo (string name, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48408,7 +48210,7 @@ public async System.Threading.Tasks.Task> CellsW if (endRow != null) localVarQueryParams.Add("endRow", Configuration.ApiClient.ParameterToString(endRow)); // query parameter if (onlyAuto != null) localVarQueryParams.Add("onlyAuto", Configuration.ApiClient.ParameterToString(onlyAuto)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (autoFitterOptions != null && autoFitterOptions.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(autoFitterOptions); // http body (model) parameter @@ -48444,12 +48246,12 @@ public async System.Threading.Tasks.Task> CellsW /// The document name. /// Encryption parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookPostEncryptDocument (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookPostEncryptDocument (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPostEncryptDocumentWithHttpInfo(name, encryption, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPostEncryptDocumentWithHttpInfo(name, encryption, folder, storageName); return localVarResponse.Data; } @@ -48460,9 +48262,9 @@ public CellsCloudResponse CellsWorkbookPostEncryptDocument (string name, Workboo /// The document name. /// Encryption parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookPostEncryptDocumentWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookPostEncryptDocumentWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48492,7 +48294,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostEncryptDocumentWithHtt if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (encryption != null && encryption.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(encryption); // http body (model) parameter @@ -48500,10 +48302,6 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostEncryptDocumentWithHtt else { localVarPostBody = encryption; // byte array - if ( "CellsWorkbookPostEncryptDocument" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -48532,11 +48330,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostEncryptDocumentWithHtt /// The document name. /// Encryption parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookPostEncryptDocumentAsync (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPostEncryptDocumentAsync (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPostEncryptDocumentAsyncWithHttpInfo(name, encryption, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPostEncryptDocumentAsyncWithHttpInfo(name, encryption, folder, storageName); return localVarResponse.Data; } @@ -48548,9 +48346,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPostEn /// The document name. /// Encryption parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPostEncryptDocumentAsyncWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPostEncryptDocumentAsyncWithHttpInfo (string name, WorkbookEncryptionRequest encryption = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48580,7 +48378,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (encryption != null && encryption.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(encryption); // http body (model) parameter @@ -48616,12 +48414,12 @@ public async System.Threading.Tasks.Task> CellsW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookPostImportData (string name, ImportOption importData, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookPostImportData (string name, ImportOption importData, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPostImportDataWithHttpInfo(name, importData, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPostImportDataWithHttpInfo(name, importData, folder, storageName); return localVarResponse.Data; } @@ -48632,9 +48430,9 @@ public CellsCloudResponse CellsWorkbookPostImportData (string name, ImportOption /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookPostImportDataWithHttpInfo (string name, ImportOption importData, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookPostImportDataWithHttpInfo (string name, ImportOption importData, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48667,7 +48465,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostImportDataWithHttpInfo if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (importData != null && importData.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(importData); // http body (model) parameter @@ -48675,10 +48473,6 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostImportDataWithHttpInfo else { localVarPostBody = importData; // byte array - if ( "CellsWorkbookPostImportData" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -48707,11 +48501,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostImportDataWithHttpInfo /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookPostImportDataAsync (string name, ImportOption importData, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPostImportDataAsync (string name, ImportOption importData, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPostImportDataAsyncWithHttpInfo(name, importData, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPostImportDataAsyncWithHttpInfo(name, importData, folder, storageName); return localVarResponse.Data; } @@ -48723,9 +48517,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPostIm /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPostImportDataAsyncWithHttpInfo (string name, ImportOption importData, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPostImportDataAsyncWithHttpInfo (string name, ImportOption importData, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48758,7 +48552,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (importData != null && importData.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(importData); // http body (model) parameter @@ -48794,12 +48588,12 @@ public async System.Threading.Tasks.Task> CellsW /// The document name. /// The protection settings. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookPostProtectDocument (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookPostProtectDocument (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPostProtectDocumentWithHttpInfo(name, protection, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPostProtectDocumentWithHttpInfo(name, protection, folder, storageName); return localVarResponse.Data; } @@ -48810,9 +48604,9 @@ public CellsCloudResponse CellsWorkbookPostProtectDocument (string name, Workboo /// The document name. /// The protection settings. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookPostProtectDocumentWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookPostProtectDocumentWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48842,7 +48636,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostProtectDocumentWithHtt if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (protection != null && protection.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(protection); // http body (model) parameter @@ -48850,10 +48644,6 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostProtectDocumentWithHtt else { localVarPostBody = protection; // byte array - if ( "CellsWorkbookPostProtectDocument" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -48882,11 +48672,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostProtectDocumentWithHtt /// The document name. /// The protection settings. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookPostProtectDocumentAsync (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPostProtectDocumentAsync (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPostProtectDocumentAsyncWithHttpInfo(name, protection, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPostProtectDocumentAsyncWithHttpInfo(name, protection, folder, storageName); return localVarResponse.Data; } @@ -48898,9 +48688,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPostPr /// The document name. /// The protection settings. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPostProtectDocumentAsyncWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPostProtectDocumentAsyncWithHttpInfo (string name, WorkbookProtectionRequest protection = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -48930,7 +48720,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (protection != null && protection.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(protection); // http body (model) parameter @@ -48967,12 +48757,12 @@ public async System.Threading.Tasks.Task> CellsW /// Calculation Options. (optional) /// ignore Error. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookPostWorkbookCalculateFormula (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookPostWorkbookCalculateFormula (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPostWorkbookCalculateFormulaWithHttpInfo(name, options, ignoreError, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPostWorkbookCalculateFormulaWithHttpInfo(name, options, ignoreError, folder, storageName); return localVarResponse.Data; } @@ -48984,9 +48774,9 @@ public CellsCloudResponse CellsWorkbookPostWorkbookCalculateFormula (string name /// Calculation Options. (optional) /// ignore Error. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookPostWorkbookCalculateFormulaWithHttpInfo (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookPostWorkbookCalculateFormulaWithHttpInfo (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -49017,7 +48807,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostWorkbookCalculateFormu if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (ignoreError != null) localVarQueryParams.Add("ignoreError", Configuration.ApiClient.ParameterToString(ignoreError)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (options != null && options.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(options); // http body (model) parameter @@ -49025,10 +48815,6 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostWorkbookCalculateFormu else { localVarPostBody = options; // byte array - if ( "CellsWorkbookPostWorkbookCalculateFormula" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -49058,11 +48844,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostWorkbookCalculateFormu /// Calculation Options. (optional) /// ignore Error. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookPostWorkbookCalculateFormulaAsync (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPostWorkbookCalculateFormulaAsync (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPostWorkbookCalculateFormulaAsyncWithHttpInfo(name, options, ignoreError, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPostWorkbookCalculateFormulaAsyncWithHttpInfo(name, options, ignoreError, folder, storageName); return localVarResponse.Data; } @@ -49075,9 +48861,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPostWo /// Calculation Options. (optional) /// ignore Error. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbookCalculateFormulaAsyncWithHttpInfo (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbookCalculateFormulaAsyncWithHttpInfo (string name, CalculationOptions options = null, bool? ignoreError = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -49108,7 +48894,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (ignoreError != null) localVarQueryParams.Add("ignoreError", Configuration.ApiClient.ParameterToString(ignoreError)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (options != null && options.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(options); // http body (model) parameter @@ -49144,13 +48930,13 @@ public async System.Threading.Tasks.Task> CellsW /// The workbook name. /// The xml file full path, if empty the data is read from request body. (optional) /// The workbook folder full path. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Path to save result (optional) /// System.IO.Stream - public System.IO.Stream CellsWorkbookPostWorkbookGetSmartMarkerResult (string name, string xmlFile = null, string folder = null, string storage = null, string outPath = null) + public System.IO.Stream CellsWorkbookPostWorkbookGetSmartMarkerResult (string name, string xmlFile = null, string folder = null, string storageName = null, string outPath = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPostWorkbookGetSmartMarkerResultWithHttpInfo(name, xmlFile, folder, storage, outPath); + ApiResponse localVarResponse = CellsWorkbookPostWorkbookGetSmartMarkerResultWithHttpInfo(name, xmlFile, folder, storageName, outPath); return localVarResponse.Data; } @@ -49161,10 +48947,10 @@ public System.IO.Stream CellsWorkbookPostWorkbookGetSmartMarkerResult (string na /// The workbook name. /// The xml file full path, if empty the data is read from request body. (optional) /// The workbook folder full path. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Path to save result (optional) /// ApiResponse of System.IO.Stream - public ApiResponse< System.IO.Stream > CellsWorkbookPostWorkbookGetSmartMarkerResultWithHttpInfo (string name, string xmlFile = null, string folder = null, string storage = null, string outPath = null) + public ApiResponse< System.IO.Stream > CellsWorkbookPostWorkbookGetSmartMarkerResultWithHttpInfo (string name, string xmlFile = null, string folder = null, string storageName = null, string outPath = null) { // verify the required parameter 'name' is set if (name == null) @@ -49195,7 +48981,7 @@ public System.IO.Stream CellsWorkbookPostWorkbookGetSmartMarkerResult (string na if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (xmlFile != null) localVarQueryParams.Add("xmlFile", Configuration.ApiClient.ParameterToString(xmlFile)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (outPath != null) localVarQueryParams.Add("outPath", Configuration.ApiClient.ParameterToString(outPath)); // query parameter @@ -49224,12 +49010,12 @@ public System.IO.Stream CellsWorkbookPostWorkbookGetSmartMarkerResult (string na /// The workbook name. /// The xml file full path, if empty the data is read from request body. (optional) /// The workbook folder full path. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Path to save result (optional) /// Task of System.IO.Stream - public async System.Threading.Tasks.Task CellsWorkbookPostWorkbookGetSmartMarkerResultAsync (string name, string xmlFile = null, string folder = null, string storage = null, string outPath = null) + public async System.Threading.Tasks.Task CellsWorkbookPostWorkbookGetSmartMarkerResultAsync (string name, string xmlFile = null, string folder = null, string storageName = null, string outPath = null) { - ApiResponse localVarResponse = await CellsWorkbookPostWorkbookGetSmartMarkerResultAsyncWithHttpInfo(name, xmlFile, folder, storage, outPath); + ApiResponse localVarResponse = await CellsWorkbookPostWorkbookGetSmartMarkerResultAsyncWithHttpInfo(name, xmlFile, folder, storageName, outPath); return localVarResponse.Data; } @@ -49241,10 +49027,10 @@ public System.IO.Stream CellsWorkbookPostWorkbookGetSmartMarkerResult (string na /// The workbook name. /// The xml file full path, if empty the data is read from request body. (optional) /// The workbook folder full path. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Path to save result (optional) /// Task of ApiResponse (System.IO.Stream) - public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbookGetSmartMarkerResultAsyncWithHttpInfo (string name, string xmlFile = null, string folder = null, string storage = null, string outPath = null) + public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbookGetSmartMarkerResultAsyncWithHttpInfo (string name, string xmlFile = null, string folder = null, string storageName = null, string outPath = null) { // verify the required parameter 'name' is set if (name == null) @@ -49275,7 +49061,7 @@ public System.IO.Stream CellsWorkbookPostWorkbookGetSmartMarkerResult (string na if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (xmlFile != null) localVarQueryParams.Add("xmlFile", Configuration.ApiClient.ParameterToString(xmlFile)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (outPath != null) localVarQueryParams.Add("outPath", Configuration.ApiClient.ParameterToString(outPath)); // query parameter @@ -49304,12 +49090,12 @@ public System.IO.Stream CellsWorkbookPostWorkbookGetSmartMarkerResult (string na /// Document name. /// Workbook Setting DTO (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookPostWorkbookSettings (string name, WorkbookSettings settings = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookPostWorkbookSettings (string name, WorkbookSettings settings = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPostWorkbookSettingsWithHttpInfo(name, settings, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPostWorkbookSettingsWithHttpInfo(name, settings, folder, storageName); return localVarResponse.Data; } @@ -49320,9 +49106,9 @@ public CellsCloudResponse CellsWorkbookPostWorkbookSettings (string name, Workbo /// Document name. /// Workbook Setting DTO (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookPostWorkbookSettingsWithHttpInfo (string name, WorkbookSettings settings = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookPostWorkbookSettingsWithHttpInfo (string name, WorkbookSettings settings = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -49352,7 +49138,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostWorkbookSettingsWithHt if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (settings != null && settings.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(settings); // http body (model) parameter @@ -49360,10 +49146,6 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostWorkbookSettingsWithHt else { localVarPostBody = settings; // byte array - if ( "CellsWorkbookPostWorkbookSettings" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -49392,11 +49174,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPostWorkbookSettingsWithHt /// Document name. /// Workbook Setting DTO (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookPostWorkbookSettingsAsync (string name, WorkbookSettings settings = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPostWorkbookSettingsAsync (string name, WorkbookSettings settings = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPostWorkbookSettingsAsyncWithHttpInfo(name, settings, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPostWorkbookSettingsAsyncWithHttpInfo(name, settings, folder, storageName); return localVarResponse.Data; } @@ -49408,9 +49190,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPostWo /// Document name. /// Workbook Setting DTO (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbookSettingsAsyncWithHttpInfo (string name, WorkbookSettings settings = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbookSettingsAsyncWithHttpInfo (string name, WorkbookSettings settings = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -49440,7 +49222,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (settings != null && settings.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(settings); // http body (model) parameter @@ -49481,12 +49263,12 @@ public async System.Threading.Tasks.Task> CellsW /// Image vertical resolution. (optional, default to 0) /// The workbook folder. (optional) /// out Folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// SplitResultResponse - public SplitResultResponse CellsWorkbookPostWorkbookSplit (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storage = null) + public SplitResultResponse CellsWorkbookPostWorkbookSplit (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPostWorkbookSplitWithHttpInfo(name, format, from, to, horizontalResolution, verticalResolution, folder, outFolder, storage); + ApiResponse localVarResponse = CellsWorkbookPostWorkbookSplitWithHttpInfo(name, format, from, to, horizontalResolution, verticalResolution, folder, outFolder, storageName); return localVarResponse.Data; } @@ -49502,9 +49284,9 @@ public SplitResultResponse CellsWorkbookPostWorkbookSplit (string name, string f /// Image vertical resolution. (optional, default to 0) /// The workbook folder. (optional) /// out Folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of SplitResultResponse - public ApiResponse< SplitResultResponse > CellsWorkbookPostWorkbookSplitWithHttpInfo (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storage = null) + public ApiResponse< SplitResultResponse > CellsWorkbookPostWorkbookSplitWithHttpInfo (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -49540,7 +49322,7 @@ public ApiResponse< SplitResultResponse > CellsWorkbookPostWorkbookSplitWithHttp if (verticalResolution != null) localVarQueryParams.Add("verticalResolution", Configuration.ApiClient.ParameterToString(verticalResolution)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter if (outFolder != null) localVarQueryParams.Add("outFolder", Configuration.ApiClient.ParameterToString(outFolder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -49573,11 +49355,11 @@ public ApiResponse< SplitResultResponse > CellsWorkbookPostWorkbookSplitWithHttp /// Image vertical resolution. (optional, default to 0) /// The workbook folder. (optional) /// out Folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of SplitResultResponse - public async System.Threading.Tasks.Task CellsWorkbookPostWorkbookSplitAsync (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPostWorkbookSplitAsync (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPostWorkbookSplitAsyncWithHttpInfo(name, format, from, to, horizontalResolution, verticalResolution, folder, outFolder, storage); + ApiResponse localVarResponse = await CellsWorkbookPostWorkbookSplitAsyncWithHttpInfo(name, format, from, to, horizontalResolution, verticalResolution, folder, outFolder, storageName); return localVarResponse.Data; } @@ -49594,9 +49376,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPostW /// Image vertical resolution. (optional, default to 0) /// The workbook folder. (optional) /// out Folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (SplitResultResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbookSplitAsyncWithHttpInfo (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbookSplitAsyncWithHttpInfo (string name, string format = null, int? from = null, int? to = null, int? horizontalResolution = null, int? verticalResolution = null, string folder = null, string outFolder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -49632,7 +49414,7 @@ public async System.Threading.Tasks.Task> Cells if (verticalResolution != null) localVarQueryParams.Add("verticalResolution", Configuration.ApiClient.ParameterToString(verticalResolution)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter if (outFolder != null) localVarQueryParams.Add("outFolder", Configuration.ApiClient.ParameterToString(outFolder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -49660,12 +49442,12 @@ public async System.Threading.Tasks.Task> Cells /// Workbook name. /// The workbook to merge with. /// Source workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorkbookResponse - public WorkbookResponse CellsWorkbookPostWorkbooksMerge (string name, string mergeWith, string folder = null, string storage = null) + public WorkbookResponse CellsWorkbookPostWorkbooksMerge (string name, string mergeWith, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPostWorkbooksMergeWithHttpInfo(name, mergeWith, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPostWorkbooksMergeWithHttpInfo(name, mergeWith, folder, storageName); return localVarResponse.Data; } @@ -49676,9 +49458,9 @@ public WorkbookResponse CellsWorkbookPostWorkbooksMerge (string name, string mer /// Workbook name. /// The workbook to merge with. /// Source workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorkbookResponse - public ApiResponse< WorkbookResponse > CellsWorkbookPostWorkbooksMergeWithHttpInfo (string name, string mergeWith, string folder = null, string storage = null) + public ApiResponse< WorkbookResponse > CellsWorkbookPostWorkbooksMergeWithHttpInfo (string name, string mergeWith, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -49712,7 +49494,7 @@ public ApiResponse< WorkbookResponse > CellsWorkbookPostWorkbooksMergeWithHttpIn if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (mergeWith != null) localVarQueryParams.Add("mergeWith", Configuration.ApiClient.ParameterToString(mergeWith)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -49740,11 +49522,11 @@ public ApiResponse< WorkbookResponse > CellsWorkbookPostWorkbooksMergeWithHttpIn /// Workbook name. /// The workbook to merge with. /// Source workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorkbookResponse - public async System.Threading.Tasks.Task CellsWorkbookPostWorkbooksMergeAsync (string name, string mergeWith, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPostWorkbooksMergeAsync (string name, string mergeWith, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPostWorkbooksMergeAsyncWithHttpInfo(name, mergeWith, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPostWorkbooksMergeAsyncWithHttpInfo(name, mergeWith, folder, storageName); return localVarResponse.Data; } @@ -49756,9 +49538,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPostWork /// Workbook name. /// The workbook to merge with. /// Source workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorkbookResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksMergeAsyncWithHttpInfo (string name, string mergeWith, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksMergeAsyncWithHttpInfo (string name, string mergeWith, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -49792,7 +49574,7 @@ public async System.Threading.Tasks.Task> CellsWor if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (mergeWith != null) localVarQueryParams.Add("mergeWith", Configuration.ApiClient.ParameterToString(mergeWith)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -49821,12 +49603,12 @@ public async System.Threading.Tasks.Task> CellsWor /// The old value. /// The new value. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorkbookReplaceResponse - public WorkbookReplaceResponse CellsWorkbookPostWorkbooksTextReplace (string name, string oldValue, string newValue, string folder = null, string storage = null) + public WorkbookReplaceResponse CellsWorkbookPostWorkbooksTextReplace (string name, string oldValue, string newValue, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPostWorkbooksTextReplaceWithHttpInfo(name, oldValue, newValue, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPostWorkbooksTextReplaceWithHttpInfo(name, oldValue, newValue, folder, storageName); return localVarResponse.Data; } @@ -49838,9 +49620,9 @@ public WorkbookReplaceResponse CellsWorkbookPostWorkbooksTextReplace (string nam /// The old value. /// The new value. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorkbookReplaceResponse - public ApiResponse< WorkbookReplaceResponse > CellsWorkbookPostWorkbooksTextReplaceWithHttpInfo (string name, string oldValue, string newValue, string folder = null, string storage = null) + public ApiResponse< WorkbookReplaceResponse > CellsWorkbookPostWorkbooksTextReplaceWithHttpInfo (string name, string oldValue, string newValue, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -49878,7 +49660,7 @@ public ApiResponse< WorkbookReplaceResponse > CellsWorkbookPostWorkbooksTextRepl if (oldValue != null) localVarQueryParams.Add("oldValue", Configuration.ApiClient.ParameterToString(oldValue)); // query parameter if (newValue != null) localVarQueryParams.Add("newValue", Configuration.ApiClient.ParameterToString(newValue)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -49907,11 +49689,11 @@ public ApiResponse< WorkbookReplaceResponse > CellsWorkbookPostWorkbooksTextRepl /// The old value. /// The new value. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorkbookReplaceResponse - public async System.Threading.Tasks.Task CellsWorkbookPostWorkbooksTextReplaceAsync (string name, string oldValue, string newValue, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPostWorkbooksTextReplaceAsync (string name, string oldValue, string newValue, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPostWorkbooksTextReplaceAsyncWithHttpInfo(name, oldValue, newValue, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPostWorkbooksTextReplaceAsyncWithHttpInfo(name, oldValue, newValue, folder, storageName); return localVarResponse.Data; } @@ -49924,9 +49706,9 @@ public async System.Threading.Tasks.Task CellsWorkbookP /// The old value. /// The new value. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorkbookReplaceResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksTextReplaceAsyncWithHttpInfo (string name, string oldValue, string newValue, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksTextReplaceAsyncWithHttpInfo (string name, string oldValue, string newValue, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -49964,7 +49746,7 @@ public async System.Threading.Tasks.Task> C if (oldValue != null) localVarQueryParams.Add("oldValue", Configuration.ApiClient.ParameterToString(oldValue)); // query parameter if (newValue != null) localVarQueryParams.Add("newValue", Configuration.ApiClient.ParameterToString(newValue)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -49992,12 +49774,12 @@ public async System.Threading.Tasks.Task> C /// Document name. /// Text sample. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TextItemsResponse - public TextItemsResponse CellsWorkbookPostWorkbooksTextSearch (string name, string text, string folder = null, string storage = null) + public TextItemsResponse CellsWorkbookPostWorkbooksTextSearch (string name, string text, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPostWorkbooksTextSearchWithHttpInfo(name, text, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPostWorkbooksTextSearchWithHttpInfo(name, text, folder, storageName); return localVarResponse.Data; } @@ -50008,9 +49790,9 @@ public TextItemsResponse CellsWorkbookPostWorkbooksTextSearch (string name, stri /// Document name. /// Text sample. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TextItemsResponse - public ApiResponse< TextItemsResponse > CellsWorkbookPostWorkbooksTextSearchWithHttpInfo (string name, string text, string folder = null, string storage = null) + public ApiResponse< TextItemsResponse > CellsWorkbookPostWorkbooksTextSearchWithHttpInfo (string name, string text, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -50044,7 +49826,7 @@ public ApiResponse< TextItemsResponse > CellsWorkbookPostWorkbooksTextSearchWith if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (text != null) localVarQueryParams.Add("text", Configuration.ApiClient.ParameterToString(text)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -50072,11 +49854,11 @@ public ApiResponse< TextItemsResponse > CellsWorkbookPostWorkbooksTextSearchWith /// Document name. /// Text sample. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TextItemsResponse - public async System.Threading.Tasks.Task CellsWorkbookPostWorkbooksTextSearchAsync (string name, string text, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPostWorkbooksTextSearchAsync (string name, string text, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPostWorkbooksTextSearchAsyncWithHttpInfo(name, text, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPostWorkbooksTextSearchAsyncWithHttpInfo(name, text, folder, storageName); return localVarResponse.Data; } @@ -50088,9 +49870,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPostWor /// Document name. /// Text sample. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TextItemsResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksTextSearchAsyncWithHttpInfo (string name, string text, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPostWorkbooksTextSearchAsyncWithHttpInfo (string name, string text, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -50124,7 +49906,7 @@ public async System.Threading.Tasks.Task> CellsWo if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (text != null) localVarQueryParams.Add("text", Configuration.ApiClient.ParameterToString(text)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -50306,12 +50088,12 @@ public System.IO.Stream CellsWorkbookPutConvertWorkbook (System.IO.Stream workbo /// Document name. /// Modification password. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookPutDocumentProtectFromChanges (string name, PasswordRequest password = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookPutDocumentProtectFromChanges (string name, PasswordRequest password = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPutDocumentProtectFromChangesWithHttpInfo(name, password, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPutDocumentProtectFromChangesWithHttpInfo(name, password, folder, storageName); return localVarResponse.Data; } @@ -50322,9 +50104,9 @@ public CellsCloudResponse CellsWorkbookPutDocumentProtectFromChanges (string nam /// Document name. /// Modification password. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookPutDocumentProtectFromChangesWithHttpInfo (string name, PasswordRequest password = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookPutDocumentProtectFromChangesWithHttpInfo (string name, PasswordRequest password = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -50354,7 +50136,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPutDocumentProtectFromChan if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (password != null && password.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(password); // http body (model) parameter @@ -50362,10 +50144,6 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPutDocumentProtectFromChan else { localVarPostBody = password; // byte array - if ( "CellsWorkbookPutDocumentProtectFromChanges" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -50394,11 +50172,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPutDocumentProtectFromChan /// Document name. /// Modification password. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookPutDocumentProtectFromChangesAsync (string name, PasswordRequest password = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPutDocumentProtectFromChangesAsync (string name, PasswordRequest password = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPutDocumentProtectFromChangesAsyncWithHttpInfo(name, password, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPutDocumentProtectFromChangesAsyncWithHttpInfo(name, password, folder, storageName); return localVarResponse.Data; } @@ -50410,9 +50188,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPutDoc /// Document name. /// Modification password. (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPutDocumentProtectFromChangesAsyncWithHttpInfo (string name, PasswordRequest password = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPutDocumentProtectFromChangesAsyncWithHttpInfo (string name, PasswordRequest password = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -50442,7 +50220,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (password != null && password.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(password); // http body (model) parameter @@ -50478,12 +50256,12 @@ public async System.Threading.Tasks.Task> CellsW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookPutWorkbookBackground (string name, byte[] png, string folder = null, string storage = null) + public CellsCloudResponse CellsWorkbookPutWorkbookBackground (string name, byte[] png, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPutWorkbookBackgroundWithHttpInfo(name, png, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPutWorkbookBackgroundWithHttpInfo(name, png, folder, storageName); return localVarResponse.Data; } @@ -50494,9 +50272,9 @@ public CellsCloudResponse CellsWorkbookPutWorkbookBackground (string name, byte[ /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookPutWorkbookBackgroundWithHttpInfo (string name, byte[] png, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookPutWorkbookBackgroundWithHttpInfo (string name, byte[] png, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -50529,7 +50307,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPutWorkbookBackgroundWithH if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (png != null && png.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(png); // http body (model) parameter @@ -50537,10 +50315,6 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPutWorkbookBackgroundWithH else { localVarPostBody = png; // byte array - if ( "CellsWorkbookPutWorkbookBackground" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -50569,11 +50343,11 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPutWorkbookBackgroundWithH /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookPutWorkbookBackgroundAsync (string name, byte[] png, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPutWorkbookBackgroundAsync (string name, byte[] png, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPutWorkbookBackgroundAsyncWithHttpInfo(name, png, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPutWorkbookBackgroundAsyncWithHttpInfo(name, png, folder, storageName); return localVarResponse.Data; } @@ -50585,9 +50359,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPutWor /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPutWorkbookBackgroundAsyncWithHttpInfo (string name, byte[] png, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPutWorkbookBackgroundAsyncWithHttpInfo (string name, byte[] png, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -50620,7 +50394,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (png != null && png.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(png); // http body (model) parameter @@ -50658,12 +50432,12 @@ public async System.Threading.Tasks.Task> CellsW /// Smart marker data file, if the data not provided the request content is checked for the data. (optional) /// write over file. (optional) /// The new document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorkbookResponse - public WorkbookResponse CellsWorkbookPutWorkbookCreate (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storage = null) + public WorkbookResponse CellsWorkbookPutWorkbookCreate (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPutWorkbookCreateWithHttpInfo(name, templateFile, dataFile, isWriteOver, folder, storage); + ApiResponse localVarResponse = CellsWorkbookPutWorkbookCreateWithHttpInfo(name, templateFile, dataFile, isWriteOver, folder, storageName); return localVarResponse.Data; } @@ -50676,9 +50450,9 @@ public WorkbookResponse CellsWorkbookPutWorkbookCreate (string name, string temp /// Smart marker data file, if the data not provided the request content is checked for the data. (optional) /// write over file. (optional) /// The new document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorkbookResponse - public ApiResponse< WorkbookResponse > CellsWorkbookPutWorkbookCreateWithHttpInfo (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storage = null) + public ApiResponse< WorkbookResponse > CellsWorkbookPutWorkbookCreateWithHttpInfo (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -50711,7 +50485,7 @@ public ApiResponse< WorkbookResponse > CellsWorkbookPutWorkbookCreateWithHttpInf if (dataFile != null) localVarQueryParams.Add("dataFile", Configuration.ApiClient.ParameterToString(dataFile)); // query parameter if (isWriteOver != null) localVarQueryParams.Add("isWriteOver", Configuration.ApiClient.ParameterToString(isWriteOver)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -50741,11 +50515,11 @@ public ApiResponse< WorkbookResponse > CellsWorkbookPutWorkbookCreateWithHttpInf /// Smart marker data file, if the data not provided the request content is checked for the data. (optional) /// write over file. (optional) /// The new document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorkbookResponse - public async System.Threading.Tasks.Task CellsWorkbookPutWorkbookCreateAsync (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorkbookPutWorkbookCreateAsync (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorkbookPutWorkbookCreateAsyncWithHttpInfo(name, templateFile, dataFile, isWriteOver, folder, storage); + ApiResponse localVarResponse = await CellsWorkbookPutWorkbookCreateAsyncWithHttpInfo(name, templateFile, dataFile, isWriteOver, folder, storageName); return localVarResponse.Data; } @@ -50759,9 +50533,9 @@ public async System.Threading.Tasks.Task CellsWorkbookPutWorkb /// Smart marker data file, if the data not provided the request content is checked for the data. (optional) /// write over file. (optional) /// The new document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorkbookResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPutWorkbookCreateAsyncWithHttpInfo (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorkbookPutWorkbookCreateAsyncWithHttpInfo (string name, string templateFile = null, string dataFile = null, bool? isWriteOver = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -50794,7 +50568,7 @@ public async System.Threading.Tasks.Task> CellsWor if (dataFile != null) localVarQueryParams.Add("dataFile", Configuration.ApiClient.ParameterToString(dataFile)); // query parameter if (isWriteOver != null) localVarQueryParams.Add("isWriteOver", Configuration.ApiClient.ParameterToString(isWriteOver)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -50821,13 +50595,13 @@ public async System.Threading.Tasks.Task> CellsWor /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// The text water marker request. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorkbookPutWorkbookWaterMarker (string name, string folder = null, string storage = null, TextWaterMarkerRequest textWaterMarkerRequest = null) + public CellsCloudResponse CellsWorkbookPutWorkbookWaterMarker (string name, string folder = null, string storageName = null, TextWaterMarkerRequest textWaterMarkerRequest = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorkbookPutWorkbookWaterMarkerWithHttpInfo(name, folder, storage, textWaterMarkerRequest); + ApiResponse localVarResponse = CellsWorkbookPutWorkbookWaterMarkerWithHttpInfo(name, folder, storageName, textWaterMarkerRequest); return localVarResponse.Data; } @@ -50837,10 +50611,10 @@ public CellsCloudResponse CellsWorkbookPutWorkbookWaterMarker (string name, stri /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// The text water marker request. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorkbookPutWorkbookWaterMarkerWithHttpInfo (string name, string folder = null, string storage = null, TextWaterMarkerRequest textWaterMarkerRequest = null) + public ApiResponse< CellsCloudResponse > CellsWorkbookPutWorkbookWaterMarkerWithHttpInfo (string name, string folder = null, string storageName = null, TextWaterMarkerRequest textWaterMarkerRequest = null) { // verify the required parameter 'name' is set if (name == null) @@ -50870,7 +50644,7 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPutWorkbookWaterMarkerWith if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (textWaterMarkerRequest != null && textWaterMarkerRequest.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(textWaterMarkerRequest); // http body (model) parameter @@ -50878,10 +50652,6 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPutWorkbookWaterMarkerWith else { localVarPostBody = textWaterMarkerRequest; // byte array - if ( "CellsWorkbookPutWorkbookWaterMarker" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -50909,12 +50679,12 @@ public ApiResponse< CellsCloudResponse > CellsWorkbookPutWorkbookWaterMarkerWith /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// The text water marker request. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorkbookPutWorkbookWaterMarkerAsync (string name, string folder = null, string storage = null, TextWaterMarkerRequest textWaterMarkerRequest = null) + public async System.Threading.Tasks.Task CellsWorkbookPutWorkbookWaterMarkerAsync (string name, string folder = null, string storageName = null, TextWaterMarkerRequest textWaterMarkerRequest = null) { - ApiResponse localVarResponse = await CellsWorkbookPutWorkbookWaterMarkerAsyncWithHttpInfo(name, folder, storage, textWaterMarkerRequest); + ApiResponse localVarResponse = await CellsWorkbookPutWorkbookWaterMarkerAsyncWithHttpInfo(name, folder, storageName, textWaterMarkerRequest); return localVarResponse.Data; } @@ -50925,10 +50695,10 @@ public async System.Threading.Tasks.Task CellsWorkbookPutWor /// Thrown when fails to make API call /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// The text water marker request. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorkbookPutWorkbookWaterMarkerAsyncWithHttpInfo (string name, string folder = null, string storage = null, TextWaterMarkerRequest textWaterMarkerRequest = null) + public async System.Threading.Tasks.Task> CellsWorkbookPutWorkbookWaterMarkerAsyncWithHttpInfo (string name, string folder = null, string storageName = null, TextWaterMarkerRequest textWaterMarkerRequest = null) { // verify the required parameter 'name' is set if (name == null) @@ -50958,7 +50728,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (textWaterMarkerRequest != null && textWaterMarkerRequest.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(textWaterMarkerRequest); // http body (model) parameter @@ -50995,12 +50765,12 @@ public async System.Threading.Tasks.Task> CellsW /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ValidationResponse - public ValidationResponse CellsWorksheetValidationsDeleteWorksheetValidation (string name, string sheetName, int? validationIndex, string folder = null, string storage = null) + public ValidationResponse CellsWorksheetValidationsDeleteWorksheetValidation (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetValidationsDeleteWorksheetValidationWithHttpInfo(name, sheetName, validationIndex, folder, storage); + ApiResponse localVarResponse = CellsWorksheetValidationsDeleteWorksheetValidationWithHttpInfo(name, sheetName, validationIndex, folder, storageName); return localVarResponse.Data; } @@ -51012,9 +50782,9 @@ public ValidationResponse CellsWorksheetValidationsDeleteWorksheetValidation (st /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ValidationResponse - public ApiResponse< ValidationResponse > CellsWorksheetValidationsDeleteWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storage = null) + public ApiResponse< ValidationResponse > CellsWorksheetValidationsDeleteWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -51052,7 +50822,7 @@ public ApiResponse< ValidationResponse > CellsWorksheetValidationsDeleteWorkshee if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (validationIndex != null) localVarPathParams.Add("validationIndex", Configuration.ApiClient.ParameterToString(validationIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -51081,11 +50851,11 @@ public ApiResponse< ValidationResponse > CellsWorksheetValidationsDeleteWorkshee /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ValidationResponse - public async System.Threading.Tasks.Task CellsWorksheetValidationsDeleteWorksheetValidationAsync (string name, string sheetName, int? validationIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetValidationsDeleteWorksheetValidationAsync (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetValidationsDeleteWorksheetValidationAsyncWithHttpInfo(name, sheetName, validationIndex, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetValidationsDeleteWorksheetValidationAsyncWithHttpInfo(name, sheetName, validationIndex, folder, storageName); return localVarResponse.Data; } @@ -51098,9 +50868,9 @@ public async System.Threading.Tasks.Task CellsWorksheetValid /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ValidationResponse) - public async System.Threading.Tasks.Task> CellsWorksheetValidationsDeleteWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetValidationsDeleteWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -51138,7 +50908,7 @@ public async System.Threading.Tasks.Task> CellsW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (validationIndex != null) localVarPathParams.Add("validationIndex", Configuration.ApiClient.ParameterToString(validationIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -51166,12 +50936,12 @@ public async System.Threading.Tasks.Task> CellsW /// Document name. /// Worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetValidationsDeleteWorksheetValidations (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetValidationsDeleteWorksheetValidations (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetValidationsDeleteWorksheetValidationsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsWorksheetValidationsDeleteWorksheetValidationsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -51182,9 +50952,9 @@ public CellsCloudResponse CellsWorksheetValidationsDeleteWorksheetValidations (s /// Document name. /// Worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetValidationsDeleteWorksheetValidationsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetValidationsDeleteWorksheetValidationsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -51218,7 +50988,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetValidationsDeleteWorkshee if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -51246,11 +51016,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetValidationsDeleteWorkshee /// Document name. /// Worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetValidationsDeleteWorksheetValidationsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetValidationsDeleteWorksheetValidationsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetValidationsDeleteWorksheetValidationsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetValidationsDeleteWorksheetValidationsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -51262,9 +51032,9 @@ public async System.Threading.Tasks.Task CellsWorksheetValid /// Document name. /// Worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetValidationsDeleteWorksheetValidationsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetValidationsDeleteWorksheetValidationsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -51298,7 +51068,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -51327,12 +51097,12 @@ public async System.Threading.Tasks.Task> CellsW /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ValidationResponse - public ValidationResponse CellsWorksheetValidationsGetWorksheetValidation (string name, string sheetName, int? validationIndex, string folder = null, string storage = null) + public ValidationResponse CellsWorksheetValidationsGetWorksheetValidation (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetValidationsGetWorksheetValidationWithHttpInfo(name, sheetName, validationIndex, folder, storage); + ApiResponse localVarResponse = CellsWorksheetValidationsGetWorksheetValidationWithHttpInfo(name, sheetName, validationIndex, folder, storageName); return localVarResponse.Data; } @@ -51344,9 +51114,9 @@ public ValidationResponse CellsWorksheetValidationsGetWorksheetValidation (strin /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ValidationResponse - public ApiResponse< ValidationResponse > CellsWorksheetValidationsGetWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storage = null) + public ApiResponse< ValidationResponse > CellsWorksheetValidationsGetWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -51384,7 +51154,7 @@ public ApiResponse< ValidationResponse > CellsWorksheetValidationsGetWorksheetVa if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (validationIndex != null) localVarPathParams.Add("validationIndex", Configuration.ApiClient.ParameterToString(validationIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -51413,11 +51183,11 @@ public ApiResponse< ValidationResponse > CellsWorksheetValidationsGetWorksheetVa /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ValidationResponse - public async System.Threading.Tasks.Task CellsWorksheetValidationsGetWorksheetValidationAsync (string name, string sheetName, int? validationIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetValidationsGetWorksheetValidationAsync (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetValidationsGetWorksheetValidationAsyncWithHttpInfo(name, sheetName, validationIndex, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetValidationsGetWorksheetValidationAsyncWithHttpInfo(name, sheetName, validationIndex, folder, storageName); return localVarResponse.Data; } @@ -51430,9 +51200,9 @@ public async System.Threading.Tasks.Task CellsWorksheetValid /// Worksheet name. /// The validation index. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ValidationResponse) - public async System.Threading.Tasks.Task> CellsWorksheetValidationsGetWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetValidationsGetWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -51470,7 +51240,7 @@ public async System.Threading.Tasks.Task> CellsW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (validationIndex != null) localVarPathParams.Add("validationIndex", Configuration.ApiClient.ParameterToString(validationIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -51498,12 +51268,12 @@ public async System.Threading.Tasks.Task> CellsW /// Document name. /// Worksheet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ValidationsResponse - public ValidationsResponse CellsWorksheetValidationsGetWorksheetValidations (string name, string sheetName, string folder = null, string storage = null) + public ValidationsResponse CellsWorksheetValidationsGetWorksheetValidations (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetValidationsGetWorksheetValidationsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsWorksheetValidationsGetWorksheetValidationsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -51514,9 +51284,9 @@ public ValidationsResponse CellsWorksheetValidationsGetWorksheetValidations (str /// Document name. /// Worksheet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ValidationsResponse - public ApiResponse< ValidationsResponse > CellsWorksheetValidationsGetWorksheetValidationsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< ValidationsResponse > CellsWorksheetValidationsGetWorksheetValidationsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -51550,7 +51320,7 @@ public ApiResponse< ValidationsResponse > CellsWorksheetValidationsGetWorksheetV if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -51578,11 +51348,11 @@ public ApiResponse< ValidationsResponse > CellsWorksheetValidationsGetWorksheetV /// Document name. /// Worksheet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ValidationsResponse - public async System.Threading.Tasks.Task CellsWorksheetValidationsGetWorksheetValidationsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetValidationsGetWorksheetValidationsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetValidationsGetWorksheetValidationsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetValidationsGetWorksheetValidationsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -51594,9 +51364,9 @@ public async System.Threading.Tasks.Task CellsWorksheetVali /// Document name. /// Worksheet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ValidationsResponse) - public async System.Threading.Tasks.Task> CellsWorksheetValidationsGetWorksheetValidationsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetValidationsGetWorksheetValidationsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -51630,7 +51400,7 @@ public async System.Threading.Tasks.Task> Cells if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -51660,12 +51430,12 @@ public async System.Threading.Tasks.Task> Cells /// The validation index. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ValidationResponse - public ValidationResponse CellsWorksheetValidationsPostWorksheetValidation (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storage = null) + public ValidationResponse CellsWorksheetValidationsPostWorksheetValidation (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetValidationsPostWorksheetValidationWithHttpInfo(name, sheetName, validationIndex, validation, folder, storage); + ApiResponse localVarResponse = CellsWorksheetValidationsPostWorksheetValidationWithHttpInfo(name, sheetName, validationIndex, validation, folder, storageName); return localVarResponse.Data; } @@ -51678,9 +51448,9 @@ public ValidationResponse CellsWorksheetValidationsPostWorksheetValidation (stri /// The validation index. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ValidationResponse - public ApiResponse< ValidationResponse > CellsWorksheetValidationsPostWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storage = null) + public ApiResponse< ValidationResponse > CellsWorksheetValidationsPostWorksheetValidationWithHttpInfo (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -51718,7 +51488,7 @@ public ApiResponse< ValidationResponse > CellsWorksheetValidationsPostWorksheetV if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (validationIndex != null) localVarPathParams.Add("validationIndex", Configuration.ApiClient.ParameterToString(validationIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (validation != null && validation.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(validation); // http body (model) parameter @@ -51726,10 +51496,6 @@ public ApiResponse< ValidationResponse > CellsWorksheetValidationsPostWorksheetV else { localVarPostBody = validation; // byte array - if ( "CellsWorksheetValidationsPostWorksheetValidation" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -51760,11 +51526,11 @@ public ApiResponse< ValidationResponse > CellsWorksheetValidationsPostWorksheetV /// The validation index. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ValidationResponse - public async System.Threading.Tasks.Task CellsWorksheetValidationsPostWorksheetValidationAsync (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetValidationsPostWorksheetValidationAsync (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetValidationsPostWorksheetValidationAsyncWithHttpInfo(name, sheetName, validationIndex, validation, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetValidationsPostWorksheetValidationAsyncWithHttpInfo(name, sheetName, validationIndex, validation, folder, storageName); return localVarResponse.Data; } @@ -51778,9 +51544,9 @@ public async System.Threading.Tasks.Task CellsWorksheetValid /// The validation index. /// (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ValidationResponse) - public async System.Threading.Tasks.Task> CellsWorksheetValidationsPostWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetValidationsPostWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, int? validationIndex, Validation validation = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -51818,7 +51584,7 @@ public async System.Threading.Tasks.Task> CellsW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (validationIndex != null) localVarPathParams.Add("validationIndex", Configuration.ApiClient.ParameterToString(validationIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (validation != null && validation.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(validation); // http body (model) parameter @@ -51856,12 +51622,12 @@ public async System.Threading.Tasks.Task> CellsW /// Specified cells area (optional) /// validation (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ValidationResponse - public ValidationResponse CellsWorksheetValidationsPutWorksheetValidation (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storage = null) + public ValidationResponse CellsWorksheetValidationsPutWorksheetValidation (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetValidationsPutWorksheetValidationWithHttpInfo(name, sheetName, range, validation, folder, storage); + ApiResponse localVarResponse = CellsWorksheetValidationsPutWorksheetValidationWithHttpInfo(name, sheetName, range, validation, folder, storageName); return localVarResponse.Data; } @@ -51874,9 +51640,9 @@ public ValidationResponse CellsWorksheetValidationsPutWorksheetValidation (strin /// Specified cells area (optional) /// validation (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of ValidationResponse - public ApiResponse< ValidationResponse > CellsWorksheetValidationsPutWorksheetValidationWithHttpInfo (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storage = null) + public ApiResponse< ValidationResponse > CellsWorksheetValidationsPutWorksheetValidationWithHttpInfo (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -51911,7 +51677,7 @@ public ApiResponse< ValidationResponse > CellsWorksheetValidationsPutWorksheetVa if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (range != null) localVarQueryParams.Add("range", Configuration.ApiClient.ParameterToString(range)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (validation != null && validation.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(validation); // http body (model) parameter @@ -51919,10 +51685,6 @@ public ApiResponse< ValidationResponse > CellsWorksheetValidationsPutWorksheetVa else { localVarPostBody = validation; // byte array - if ( "CellsWorksheetValidationsPutWorksheetValidation" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -51953,11 +51715,11 @@ public ApiResponse< ValidationResponse > CellsWorksheetValidationsPutWorksheetVa /// Specified cells area (optional) /// validation (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ValidationResponse - public async System.Threading.Tasks.Task CellsWorksheetValidationsPutWorksheetValidationAsync (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetValidationsPutWorksheetValidationAsync (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetValidationsPutWorksheetValidationAsyncWithHttpInfo(name, sheetName, range, validation, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetValidationsPutWorksheetValidationAsyncWithHttpInfo(name, sheetName, range, validation, folder, storageName); return localVarResponse.Data; } @@ -51971,9 +51733,9 @@ public async System.Threading.Tasks.Task CellsWorksheetValid /// Specified cells area (optional) /// validation (optional) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (ValidationResponse) - public async System.Threading.Tasks.Task> CellsWorksheetValidationsPutWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetValidationsPutWorksheetValidationAsyncWithHttpInfo (string name, string sheetName, string range = null, Validation validation = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52008,7 +51770,7 @@ public async System.Threading.Tasks.Task> CellsW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (range != null) localVarQueryParams.Add("range", Configuration.ApiClient.ParameterToString(range)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (validation != null && validation.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(validation); // http body (model) parameter @@ -52045,12 +51807,12 @@ public async System.Threading.Tasks.Task> CellsW /// The worksheet name. /// with protection settings. Only password is used here. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetResponse - public WorksheetResponse CellsWorksheetsDeleteUnprotectWorksheet (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null) + public WorksheetResponse CellsWorksheetsDeleteUnprotectWorksheet (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsDeleteUnprotectWorksheetWithHttpInfo(name, sheetName, protectParameter, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsDeleteUnprotectWorksheetWithHttpInfo(name, sheetName, protectParameter, folder, storageName); return localVarResponse.Data; } @@ -52062,9 +51824,9 @@ public WorksheetResponse CellsWorksheetsDeleteUnprotectWorksheet (string name, s /// The worksheet name. /// with protection settings. Only password is used here. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetResponse - public ApiResponse< WorksheetResponse > CellsWorksheetsDeleteUnprotectWorksheetWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null) + public ApiResponse< WorksheetResponse > CellsWorksheetsDeleteUnprotectWorksheetWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52098,7 +51860,7 @@ public ApiResponse< WorksheetResponse > CellsWorksheetsDeleteUnprotectWorksheetW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (protectParameter != null && protectParameter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(protectParameter); // http body (model) parameter @@ -52106,10 +51868,6 @@ public ApiResponse< WorksheetResponse > CellsWorksheetsDeleteUnprotectWorksheetW else { localVarPostBody = protectParameter; // byte array - if ( "CellsWorksheetsDeleteUnprotectWorksheet" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -52139,11 +51897,11 @@ public ApiResponse< WorksheetResponse > CellsWorksheetsDeleteUnprotectWorksheetW /// The worksheet name. /// with protection settings. Only password is used here. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetResponse - public async System.Threading.Tasks.Task CellsWorksheetsDeleteUnprotectWorksheetAsync (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsDeleteUnprotectWorksheetAsync (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsDeleteUnprotectWorksheetAsyncWithHttpInfo(name, sheetName, protectParameter, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsDeleteUnprotectWorksheetAsyncWithHttpInfo(name, sheetName, protectParameter, folder, storageName); return localVarResponse.Data; } @@ -52156,9 +51914,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsDelet /// The worksheet name. /// with protection settings. Only password is used here. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsDeleteUnprotectWorksheetAsyncWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsDeleteUnprotectWorksheetAsyncWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52192,7 +51950,7 @@ public async System.Threading.Tasks.Task> CellsWo if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (protectParameter != null && protectParameter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(protectParameter); // http body (model) parameter @@ -52228,12 +51986,12 @@ public async System.Threading.Tasks.Task> CellsWo /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetsResponse - public WorksheetsResponse CellsWorksheetsDeleteWorksheet (string name, string sheetName, string folder = null, string storage = null) + public WorksheetsResponse CellsWorksheetsDeleteWorksheet (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsDeleteWorksheetWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsDeleteWorksheetWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -52244,9 +52002,9 @@ public WorksheetsResponse CellsWorksheetsDeleteWorksheet (string name, string sh /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetsResponse - public ApiResponse< WorksheetsResponse > CellsWorksheetsDeleteWorksheetWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< WorksheetsResponse > CellsWorksheetsDeleteWorksheetWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52280,7 +52038,7 @@ public ApiResponse< WorksheetsResponse > CellsWorksheetsDeleteWorksheetWithHttpI if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -52308,11 +52066,11 @@ public ApiResponse< WorksheetsResponse > CellsWorksheetsDeleteWorksheetWithHttpI /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetsResponse - public async System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsDeleteWorksheetAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsDeleteWorksheetAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -52324,9 +52082,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsDele /// Document name. /// The worksheet name. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetsResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52360,7 +52118,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -52388,12 +52146,12 @@ public async System.Threading.Tasks.Task> CellsW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsDeleteWorksheetBackground (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsDeleteWorksheetBackground (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsDeleteWorksheetBackgroundWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsDeleteWorksheetBackgroundWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -52404,9 +52162,9 @@ public CellsCloudResponse CellsWorksheetsDeleteWorksheetBackground (string name, /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetBackgroundWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetBackgroundWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52440,7 +52198,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetBackgroun if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -52468,11 +52226,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetBackgroun /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetBackgroundAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetBackgroundAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsDeleteWorksheetBackgroundAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsDeleteWorksheetBackgroundAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -52484,9 +52242,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsDele /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetBackgroundAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetBackgroundAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52520,7 +52278,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -52549,12 +52307,12 @@ public async System.Threading.Tasks.Task> CellsW /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsDeleteWorksheetComment (string name, string sheetName, string cellName, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsDeleteWorksheetComment (string name, string sheetName, string cellName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsDeleteWorksheetCommentWithHttpInfo(name, sheetName, cellName, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsDeleteWorksheetCommentWithHttpInfo(name, sheetName, cellName, folder, storageName); return localVarResponse.Data; } @@ -52566,9 +52324,9 @@ public CellsCloudResponse CellsWorksheetsDeleteWorksheetComment (string name, st /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52606,7 +52364,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetCommentWi if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -52635,11 +52393,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetCommentWi /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetCommentAsync (string name, string sheetName, string cellName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetCommentAsync (string name, string sheetName, string cellName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsDeleteWorksheetCommentAsyncWithHttpInfo(name, sheetName, cellName, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsDeleteWorksheetCommentAsyncWithHttpInfo(name, sheetName, cellName, folder, storageName); return localVarResponse.Data; } @@ -52652,9 +52410,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsDele /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52692,7 +52450,7 @@ public async System.Threading.Tasks.Task> CellsW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -52720,12 +52478,12 @@ public async System.Threading.Tasks.Task> CellsW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsDeleteWorksheetComments (string name, string sheetName, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsDeleteWorksheetComments (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsDeleteWorksheetCommentsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsDeleteWorksheetCommentsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -52736,9 +52494,9 @@ public CellsCloudResponse CellsWorksheetsDeleteWorksheetComments (string name, s /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetCommentsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetCommentsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52772,7 +52530,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetCommentsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -52800,11 +52558,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetCommentsW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetCommentsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetCommentsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsDeleteWorksheetCommentsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsDeleteWorksheetCommentsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -52816,9 +52574,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsDele /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetCommentsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetCommentsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52852,7 +52610,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -52884,12 +52642,12 @@ public async System.Threading.Tasks.Task> CellsW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsDeleteWorksheetFreezePanes (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsDeleteWorksheetFreezePanes (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsDeleteWorksheetFreezePanesWithHttpInfo(name, sheetName, row, column, freezedRows, freezedColumns, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsDeleteWorksheetFreezePanesWithHttpInfo(name, sheetName, row, column, freezedRows, freezedColumns, folder, storageName); return localVarResponse.Data; } @@ -52904,9 +52662,9 @@ public CellsCloudResponse CellsWorksheetsDeleteWorksheetFreezePanes (string name /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetFreezePanesWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetFreezePanesWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -52956,7 +52714,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetFreezePan if (freezedRows != null) localVarQueryParams.Add("freezedRows", Configuration.ApiClient.ParameterToString(freezedRows)); // query parameter if (freezedColumns != null) localVarQueryParams.Add("freezedColumns", Configuration.ApiClient.ParameterToString(freezedColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -52988,11 +52746,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsDeleteWorksheetFreezePan /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetFreezePanesAsync (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsDeleteWorksheetFreezePanesAsync (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsDeleteWorksheetFreezePanesAsyncWithHttpInfo(name, sheetName, row, column, freezedRows, freezedColumns, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsDeleteWorksheetFreezePanesAsyncWithHttpInfo(name, sheetName, row, column, freezedRows, freezedColumns, folder, storageName); return localVarResponse.Data; } @@ -53008,9 +52766,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsDele /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetFreezePanesAsyncWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsDeleteWorksheetFreezePanesAsyncWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53060,7 +52818,7 @@ public async System.Threading.Tasks.Task> CellsW if (freezedRows != null) localVarQueryParams.Add("freezedRows", Configuration.ApiClient.ParameterToString(freezedRows)); // query parameter if (freezedColumns != null) localVarQueryParams.Add("freezedColumns", Configuration.ApiClient.ParameterToString(freezedColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -53087,12 +52845,12 @@ public async System.Threading.Tasks.Task> CellsW /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// RangesResponse - public RangesResponse CellsWorksheetsGetNamedRanges (string name, string folder = null, string storage = null) + public RangesResponse CellsWorksheetsGetNamedRanges (string name, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsGetNamedRangesWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsGetNamedRangesWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -53102,9 +52860,9 @@ public RangesResponse CellsWorksheetsGetNamedRanges (string name, string folder /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of RangesResponse - public ApiResponse< RangesResponse > CellsWorksheetsGetNamedRangesWithHttpInfo (string name, string folder = null, string storage = null) + public ApiResponse< RangesResponse > CellsWorksheetsGetNamedRangesWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53134,7 +52892,7 @@ public ApiResponse< RangesResponse > CellsWorksheetsGetNamedRangesWithHttpInfo ( if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -53161,11 +52919,11 @@ public ApiResponse< RangesResponse > CellsWorksheetsGetNamedRangesWithHttpInfo ( /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of RangesResponse - public async System.Threading.Tasks.Task CellsWorksheetsGetNamedRangesAsync (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsGetNamedRangesAsync (string name, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsGetNamedRangesAsyncWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsGetNamedRangesAsyncWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -53176,9 +52934,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsGetNamed /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (RangesResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsGetNamedRangesAsyncWithHttpInfo (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsGetNamedRangesAsyncWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53208,7 +52966,7 @@ public async System.Threading.Tasks.Task> CellsWorks if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -53241,12 +52999,12 @@ public async System.Threading.Tasks.Task> CellsWorks /// Exported area. (optional) /// Exported page index. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// System.IO.Stream - public System.IO.Stream CellsWorksheetsGetWorksheet (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storage = null) + public System.IO.Stream CellsWorksheetsGetWorksheet (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsGetWorksheetWithHttpInfo(name, sheetName, format, verticalResolution, horizontalResolution, area, pageIndex, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsGetWorksheetWithHttpInfo(name, sheetName, format, verticalResolution, horizontalResolution, area, pageIndex, folder, storageName); return localVarResponse.Data; } @@ -53262,9 +53020,9 @@ public System.IO.Stream CellsWorksheetsGetWorksheet (string name, string sheetNa /// Exported area. (optional) /// Exported page index. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of System.IO.Stream - public ApiResponse< System.IO.Stream > CellsWorksheetsGetWorksheetWithHttpInfo (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storage = null) + public ApiResponse< System.IO.Stream > CellsWorksheetsGetWorksheetWithHttpInfo (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53303,7 +53061,7 @@ public System.IO.Stream CellsWorksheetsGetWorksheet (string name, string sheetNa if (area != null) localVarQueryParams.Add("area", Configuration.ApiClient.ParameterToString(area)); // query parameter if (pageIndex != null) localVarQueryParams.Add("pageIndex", Configuration.ApiClient.ParameterToString(pageIndex)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -53336,11 +53094,11 @@ public System.IO.Stream CellsWorksheetsGetWorksheet (string name, string sheetNa /// Exported area. (optional) /// Exported page index. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of System.IO.Stream - public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetAsync (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetAsync (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetAsyncWithHttpInfo(name, sheetName, format, verticalResolution, horizontalResolution, area, pageIndex, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetAsyncWithHttpInfo(name, sheetName, format, verticalResolution, horizontalResolution, area, pageIndex, folder, storageName); return localVarResponse.Data; } @@ -53357,9 +53115,9 @@ public System.IO.Stream CellsWorksheetsGetWorksheet (string name, string sheetNa /// Exported area. (optional) /// Exported page index. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (System.IO.Stream) - public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetAsyncWithHttpInfo (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetAsyncWithHttpInfo (string name, string sheetName, string format = null, int? verticalResolution = null, int? horizontalResolution = null, string area = null, int? pageIndex = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53398,7 +53156,7 @@ public System.IO.Stream CellsWorksheetsGetWorksheet (string name, string sheetNa if (area != null) localVarQueryParams.Add("area", Configuration.ApiClient.ParameterToString(area)); // query parameter if (pageIndex != null) localVarQueryParams.Add("pageIndex", Configuration.ApiClient.ParameterToString(pageIndex)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -53427,12 +53185,12 @@ public System.IO.Stream CellsWorksheetsGetWorksheet (string name, string sheetNa /// Worksheet name. /// The formula. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// SingleValueResponse - public SingleValueResponse CellsWorksheetsGetWorksheetCalculateFormula (string name, string sheetName, string formula, string folder = null, string storage = null) + public SingleValueResponse CellsWorksheetsGetWorksheetCalculateFormula (string name, string sheetName, string formula, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsGetWorksheetCalculateFormulaWithHttpInfo(name, sheetName, formula, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsGetWorksheetCalculateFormulaWithHttpInfo(name, sheetName, formula, folder, storageName); return localVarResponse.Data; } @@ -53444,9 +53202,9 @@ public SingleValueResponse CellsWorksheetsGetWorksheetCalculateFormula (string n /// Worksheet name. /// The formula. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of SingleValueResponse - public ApiResponse< SingleValueResponse > CellsWorksheetsGetWorksheetCalculateFormulaWithHttpInfo (string name, string sheetName, string formula, string folder = null, string storage = null) + public ApiResponse< SingleValueResponse > CellsWorksheetsGetWorksheetCalculateFormulaWithHttpInfo (string name, string sheetName, string formula, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53484,7 +53242,7 @@ public ApiResponse< SingleValueResponse > CellsWorksheetsGetWorksheetCalculateFo if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (formula != null) localVarQueryParams.Add("formula", Configuration.ApiClient.ParameterToString(formula)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -53513,11 +53271,11 @@ public ApiResponse< SingleValueResponse > CellsWorksheetsGetWorksheetCalculateFo /// Worksheet name. /// The formula. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of SingleValueResponse - public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCalculateFormulaAsync (string name, string sheetName, string formula, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCalculateFormulaAsync (string name, string sheetName, string formula, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetCalculateFormulaAsyncWithHttpInfo(name, sheetName, formula, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetCalculateFormulaAsyncWithHttpInfo(name, sheetName, formula, folder, storageName); return localVarResponse.Data; } @@ -53530,9 +53288,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsGet /// Worksheet name. /// The formula. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (SingleValueResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCalculateFormulaAsyncWithHttpInfo (string name, string sheetName, string formula, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCalculateFormulaAsyncWithHttpInfo (string name, string sheetName, string formula, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53570,7 +53328,7 @@ public async System.Threading.Tasks.Task> Cells if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (formula != null) localVarQueryParams.Add("formula", Configuration.ApiClient.ParameterToString(formula)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -53599,12 +53357,12 @@ public async System.Threading.Tasks.Task> Cells /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CommentResponse - public CommentResponse CellsWorksheetsGetWorksheetComment (string name, string sheetName, string cellName, string folder = null, string storage = null) + public CommentResponse CellsWorksheetsGetWorksheetComment (string name, string sheetName, string cellName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsGetWorksheetCommentWithHttpInfo(name, sheetName, cellName, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsGetWorksheetCommentWithHttpInfo(name, sheetName, cellName, folder, storageName); return localVarResponse.Data; } @@ -53616,9 +53374,9 @@ public CommentResponse CellsWorksheetsGetWorksheetComment (string name, string s /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CommentResponse - public ApiResponse< CommentResponse > CellsWorksheetsGetWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null) + public ApiResponse< CommentResponse > CellsWorksheetsGetWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53656,7 +53414,7 @@ public ApiResponse< CommentResponse > CellsWorksheetsGetWorksheetCommentWithHttp if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -53685,11 +53443,11 @@ public ApiResponse< CommentResponse > CellsWorksheetsGetWorksheetCommentWithHttp /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CommentResponse - public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCommentAsync (string name, string sheetName, string cellName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCommentAsync (string name, string sheetName, string cellName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetCommentAsyncWithHttpInfo(name, sheetName, cellName, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetCommentAsyncWithHttpInfo(name, sheetName, cellName, folder, storageName); return localVarResponse.Data; } @@ -53702,9 +53460,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsGetWork /// The worksheet name. /// The cell name /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CommentResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53742,7 +53500,7 @@ public async System.Threading.Tasks.Task> CellsWork if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -53770,12 +53528,12 @@ public async System.Threading.Tasks.Task> CellsWork /// Workbook name. /// The worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CommentsResponse - public CommentsResponse CellsWorksheetsGetWorksheetComments (string name, string sheetName, string folder = null, string storage = null) + public CommentsResponse CellsWorksheetsGetWorksheetComments (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsGetWorksheetCommentsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsGetWorksheetCommentsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -53786,9 +53544,9 @@ public CommentsResponse CellsWorksheetsGetWorksheetComments (string name, string /// Workbook name. /// The worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CommentsResponse - public ApiResponse< CommentsResponse > CellsWorksheetsGetWorksheetCommentsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< CommentsResponse > CellsWorksheetsGetWorksheetCommentsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53822,7 +53580,7 @@ public ApiResponse< CommentsResponse > CellsWorksheetsGetWorksheetCommentsWithHt if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -53850,11 +53608,11 @@ public ApiResponse< CommentsResponse > CellsWorksheetsGetWorksheetCommentsWithHt /// Workbook name. /// The worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CommentsResponse - public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCommentsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetCommentsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetCommentsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetCommentsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -53866,9 +53624,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsGetWor /// Workbook name. /// The worksheet name. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CommentsResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCommentsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetCommentsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53902,7 +53660,7 @@ public async System.Threading.Tasks.Task> CellsWor if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -53931,12 +53689,12 @@ public async System.Threading.Tasks.Task> CellsWor /// Worksheet name. /// Merged cell index. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// MergedCellResponse - public MergedCellResponse CellsWorksheetsGetWorksheetMergedCell (string name, string sheetName, int? mergedCellIndex, string folder = null, string storage = null) + public MergedCellResponse CellsWorksheetsGetWorksheetMergedCell (string name, string sheetName, int? mergedCellIndex, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsGetWorksheetMergedCellWithHttpInfo(name, sheetName, mergedCellIndex, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsGetWorksheetMergedCellWithHttpInfo(name, sheetName, mergedCellIndex, folder, storageName); return localVarResponse.Data; } @@ -53948,9 +53706,9 @@ public MergedCellResponse CellsWorksheetsGetWorksheetMergedCell (string name, st /// Worksheet name. /// Merged cell index. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of MergedCellResponse - public ApiResponse< MergedCellResponse > CellsWorksheetsGetWorksheetMergedCellWithHttpInfo (string name, string sheetName, int? mergedCellIndex, string folder = null, string storage = null) + public ApiResponse< MergedCellResponse > CellsWorksheetsGetWorksheetMergedCellWithHttpInfo (string name, string sheetName, int? mergedCellIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -53988,7 +53746,7 @@ public ApiResponse< MergedCellResponse > CellsWorksheetsGetWorksheetMergedCellWi if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (mergedCellIndex != null) localVarPathParams.Add("mergedCellIndex", Configuration.ApiClient.ParameterToString(mergedCellIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -54017,11 +53775,11 @@ public ApiResponse< MergedCellResponse > CellsWorksheetsGetWorksheetMergedCellWi /// Worksheet name. /// Merged cell index. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of MergedCellResponse - public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetMergedCellAsync (string name, string sheetName, int? mergedCellIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetMergedCellAsync (string name, string sheetName, int? mergedCellIndex, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetMergedCellAsyncWithHttpInfo(name, sheetName, mergedCellIndex, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetMergedCellAsyncWithHttpInfo(name, sheetName, mergedCellIndex, folder, storageName); return localVarResponse.Data; } @@ -54034,9 +53792,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsGetW /// Worksheet name. /// Merged cell index. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (MergedCellResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetMergedCellAsyncWithHttpInfo (string name, string sheetName, int? mergedCellIndex, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetMergedCellAsyncWithHttpInfo (string name, string sheetName, int? mergedCellIndex, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -54074,7 +53832,7 @@ public async System.Threading.Tasks.Task> CellsW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (mergedCellIndex != null) localVarPathParams.Add("mergedCellIndex", Configuration.ApiClient.ParameterToString(mergedCellIndex)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -54102,12 +53860,12 @@ public async System.Threading.Tasks.Task> CellsW /// Document name. /// The workseet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// MergedCellsResponse - public MergedCellsResponse CellsWorksheetsGetWorksheetMergedCells (string name, string sheetName, string folder = null, string storage = null) + public MergedCellsResponse CellsWorksheetsGetWorksheetMergedCells (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsGetWorksheetMergedCellsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsGetWorksheetMergedCellsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -54118,9 +53876,9 @@ public MergedCellsResponse CellsWorksheetsGetWorksheetMergedCells (string name, /// Document name. /// The workseet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of MergedCellsResponse - public ApiResponse< MergedCellsResponse > CellsWorksheetsGetWorksheetMergedCellsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< MergedCellsResponse > CellsWorksheetsGetWorksheetMergedCellsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -54154,7 +53912,7 @@ public ApiResponse< MergedCellsResponse > CellsWorksheetsGetWorksheetMergedCells if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -54182,11 +53940,11 @@ public ApiResponse< MergedCellsResponse > CellsWorksheetsGetWorksheetMergedCells /// Document name. /// The workseet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of MergedCellsResponse - public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetMergedCellsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetMergedCellsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetMergedCellsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetMergedCellsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -54198,9 +53956,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsGet /// Document name. /// The workseet name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (MergedCellsResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetMergedCellsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetMergedCellsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -54234,7 +53992,7 @@ public async System.Threading.Tasks.Task> Cells if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -54262,12 +54020,12 @@ public async System.Threading.Tasks.Task> Cells /// Workbook name. /// The worksheet name. /// The workbook's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TextItemsResponse - public TextItemsResponse CellsWorksheetsGetWorksheetTextItems (string name, string sheetName, string folder = null, string storage = null) + public TextItemsResponse CellsWorksheetsGetWorksheetTextItems (string name, string sheetName, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsGetWorksheetTextItemsWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsGetWorksheetTextItemsWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -54278,9 +54036,9 @@ public TextItemsResponse CellsWorksheetsGetWorksheetTextItems (string name, stri /// Workbook name. /// The worksheet name. /// The workbook's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TextItemsResponse - public ApiResponse< TextItemsResponse > CellsWorksheetsGetWorksheetTextItemsWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public ApiResponse< TextItemsResponse > CellsWorksheetsGetWorksheetTextItemsWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -54314,7 +54072,7 @@ public ApiResponse< TextItemsResponse > CellsWorksheetsGetWorksheetTextItemsWith if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -54342,11 +54100,11 @@ public ApiResponse< TextItemsResponse > CellsWorksheetsGetWorksheetTextItemsWith /// Workbook name. /// The worksheet name. /// The workbook's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TextItemsResponse - public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetTextItemsAsync (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetTextItemsAsync (string name, string sheetName, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetTextItemsAsyncWithHttpInfo(name, sheetName, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetTextItemsAsyncWithHttpInfo(name, sheetName, folder, storageName); return localVarResponse.Data; } @@ -54358,9 +54116,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsGetWo /// Workbook name. /// The worksheet name. /// The workbook's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TextItemsResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetTextItemsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetTextItemsAsyncWithHttpInfo (string name, string sheetName, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -54394,7 +54152,7 @@ public async System.Threading.Tasks.Task> CellsWo if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -54421,12 +54179,12 @@ public async System.Threading.Tasks.Task> CellsWo /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetsResponse - public WorksheetsResponse CellsWorksheetsGetWorksheets (string name, string folder = null, string storage = null) + public WorksheetsResponse CellsWorksheetsGetWorksheets (string name, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsGetWorksheetsWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsGetWorksheetsWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -54436,9 +54194,9 @@ public WorksheetsResponse CellsWorksheetsGetWorksheets (string name, string fold /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetsResponse - public ApiResponse< WorksheetsResponse > CellsWorksheetsGetWorksheetsWithHttpInfo (string name, string folder = null, string storage = null) + public ApiResponse< WorksheetsResponse > CellsWorksheetsGetWorksheetsWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -54468,7 +54226,7 @@ public ApiResponse< WorksheetsResponse > CellsWorksheetsGetWorksheetsWithHttpInf if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -54495,11 +54253,11 @@ public ApiResponse< WorksheetsResponse > CellsWorksheetsGetWorksheetsWithHttpInf /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetsResponse - public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetsAsync (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsGetWorksheetsAsync (string name, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetsAsyncWithHttpInfo(name, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsGetWorksheetsAsyncWithHttpInfo(name, folder, storageName); return localVarResponse.Data; } @@ -54510,9 +54268,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsGetW /// Thrown when fails to make API call /// Document name. /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetsResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetsAsyncWithHttpInfo (string name, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsGetWorksheetsAsyncWithHttpInfo (string name, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -54542,7 +54300,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -54575,12 +54333,12 @@ public async System.Threading.Tasks.Task> CellsW /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsPostAutofitWorksheetColumns (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsPostAutofitWorksheetColumns (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostAutofitWorksheetColumnsWithHttpInfo(name, sheetName, firstColumn, lastColumn, autoFitterOptions, firstRow, lastRow, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostAutofitWorksheetColumnsWithHttpInfo(name, sheetName, firstColumn, lastColumn, autoFitterOptions, firstRow, lastRow, folder, storageName); return localVarResponse.Data; } @@ -54596,9 +54354,9 @@ public CellsCloudResponse CellsWorksheetsPostAutofitWorksheetColumns (string nam /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetColumnsWithHttpInfo (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -54642,7 +54400,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetColu if (firstRow != null) localVarQueryParams.Add("firstRow", Configuration.ApiClient.ParameterToString(firstRow)); // query parameter if (lastRow != null) localVarQueryParams.Add("lastRow", Configuration.ApiClient.ParameterToString(lastRow)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (autoFitterOptions != null && autoFitterOptions.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(autoFitterOptions); // http body (model) parameter @@ -54650,10 +54408,6 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetColu else { localVarPostBody = autoFitterOptions; // byte array - if ( "CellsWorksheetsPostAutofitWorksheetColumns" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -54687,11 +54441,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetColu /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetColumnsAsync (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetColumnsAsync (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostAutofitWorksheetColumnsAsyncWithHttpInfo(name, sheetName, firstColumn, lastColumn, autoFitterOptions, firstRow, lastRow, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostAutofitWorksheetColumnsAsyncWithHttpInfo(name, sheetName, firstColumn, lastColumn, autoFitterOptions, firstRow, lastRow, folder, storageName); return localVarResponse.Data; } @@ -54708,9 +54462,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPost /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetColumnsAsyncWithHttpInfo (string name, string sheetName, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, int? firstRow = null, int? lastRow = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -54754,7 +54508,7 @@ public async System.Threading.Tasks.Task> CellsW if (firstRow != null) localVarQueryParams.Add("firstRow", Configuration.ApiClient.ParameterToString(firstRow)); // query parameter if (lastRow != null) localVarQueryParams.Add("lastRow", Configuration.ApiClient.ParameterToString(lastRow)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (autoFitterOptions != null && autoFitterOptions.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(autoFitterOptions); // http body (model) parameter @@ -54794,12 +54548,12 @@ public async System.Threading.Tasks.Task> CellsW /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsPostAutofitWorksheetRow (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsPostAutofitWorksheetRow (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostAutofitWorksheetRowWithHttpInfo(name, sheetName, rowIndex, firstColumn, lastColumn, autoFitterOptions, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostAutofitWorksheetRowWithHttpInfo(name, sheetName, rowIndex, firstColumn, lastColumn, autoFitterOptions, folder, storageName); return localVarResponse.Data; } @@ -54814,9 +54568,9 @@ public CellsCloudResponse CellsWorksheetsPostAutofitWorksheetRow (string name, s /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetRowWithHttpInfo (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -54862,7 +54616,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetRowW if (firstColumn != null) localVarQueryParams.Add("firstColumn", Configuration.ApiClient.ParameterToString(firstColumn)); // query parameter if (lastColumn != null) localVarQueryParams.Add("lastColumn", Configuration.ApiClient.ParameterToString(lastColumn)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (autoFitterOptions != null && autoFitterOptions.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(autoFitterOptions); // http body (model) parameter @@ -54870,10 +54624,6 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetRowW else { localVarPostBody = autoFitterOptions; // byte array - if ( "CellsWorksheetsPostAutofitWorksheetRow" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -54906,11 +54656,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetRowW /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetRowAsync (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetRowAsync (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostAutofitWorksheetRowAsyncWithHttpInfo(name, sheetName, rowIndex, firstColumn, lastColumn, autoFitterOptions, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostAutofitWorksheetRowAsyncWithHttpInfo(name, sheetName, rowIndex, firstColumn, lastColumn, autoFitterOptions, folder, storageName); return localVarResponse.Data; } @@ -54926,9 +54676,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPost /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetRowAsyncWithHttpInfo (string name, string sheetName, int? rowIndex, int? firstColumn, int? lastColumn, AutoFitterOptions autoFitterOptions = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -54974,7 +54724,7 @@ public async System.Threading.Tasks.Task> CellsW if (firstColumn != null) localVarQueryParams.Add("firstColumn", Configuration.ApiClient.ParameterToString(firstColumn)); // query parameter if (lastColumn != null) localVarQueryParams.Add("lastColumn", Configuration.ApiClient.ParameterToString(lastColumn)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (autoFitterOptions != null && autoFitterOptions.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(autoFitterOptions); // http body (model) parameter @@ -55014,12 +54764,12 @@ public async System.Threading.Tasks.Task> CellsW /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsPostAutofitWorksheetRows (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsPostAutofitWorksheetRows (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostAutofitWorksheetRowsWithHttpInfo(name, sheetName, autoFitterOptions, startRow, endRow, onlyAuto, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostAutofitWorksheetRowsWithHttpInfo(name, sheetName, autoFitterOptions, startRow, endRow, onlyAuto, folder, storageName); return localVarResponse.Data; } @@ -55034,9 +54784,9 @@ public CellsCloudResponse CellsWorksheetsPostAutofitWorksheetRows (string name, /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetRowsWithHttpInfo (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetRowsWithHttpInfo (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -55073,7 +54823,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetRows if (endRow != null) localVarQueryParams.Add("endRow", Configuration.ApiClient.ParameterToString(endRow)); // query parameter if (onlyAuto != null) localVarQueryParams.Add("onlyAuto", Configuration.ApiClient.ParameterToString(onlyAuto)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (autoFitterOptions != null && autoFitterOptions.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(autoFitterOptions); // http body (model) parameter @@ -55081,10 +54831,6 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetRows else { localVarPostBody = autoFitterOptions; // byte array - if ( "CellsWorksheetsPostAutofitWorksheetRows" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -55117,11 +54863,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostAutofitWorksheetRows /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetRowsAsync (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostAutofitWorksheetRowsAsync (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostAutofitWorksheetRowsAsyncWithHttpInfo(name, sheetName, autoFitterOptions, startRow, endRow, onlyAuto, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostAutofitWorksheetRowsAsyncWithHttpInfo(name, sheetName, autoFitterOptions, startRow, endRow, onlyAuto, folder, storageName); return localVarResponse.Data; } @@ -55137,9 +54883,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPost /// End row. (optional) /// Only auto. (optional, default to false) /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostAutofitWorksheetRowsAsyncWithHttpInfo (string name, string sheetName, AutoFitterOptions autoFitterOptions = null, int? startRow = null, int? endRow = null, bool? onlyAuto = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -55176,7 +54922,7 @@ public async System.Threading.Tasks.Task> CellsW if (endRow != null) localVarQueryParams.Add("endRow", Configuration.ApiClient.ParameterToString(endRow)); // query parameter if (onlyAuto != null) localVarQueryParams.Add("onlyAuto", Configuration.ApiClient.ParameterToString(onlyAuto)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (autoFitterOptions != null && autoFitterOptions.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(autoFitterOptions); // http body (model) parameter @@ -55216,12 +54962,12 @@ public async System.Threading.Tasks.Task> CellsW /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsPostCopyWorksheet (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsPostCopyWorksheet (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostCopyWorksheetWithHttpInfo(name, sheetName, sourceSheet, options, sourceWorkbook, sourceFolder, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostCopyWorksheetWithHttpInfo(name, sheetName, sourceSheet, options, sourceWorkbook, sourceFolder, folder, storageName); return localVarResponse.Data; } @@ -55236,9 +54982,9 @@ public CellsCloudResponse CellsWorksheetsPostCopyWorksheet (string name, string /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsPostCopyWorksheetWithHttpInfo (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsPostCopyWorksheetWithHttpInfo (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -55278,7 +55024,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostCopyWorksheetWithHtt if (sourceWorkbook != null) localVarQueryParams.Add("sourceWorkbook", Configuration.ApiClient.ParameterToString(sourceWorkbook)); // query parameter if (sourceFolder != null) localVarQueryParams.Add("sourceFolder", Configuration.ApiClient.ParameterToString(sourceFolder)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (options != null && options.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(options); // http body (model) parameter @@ -55286,10 +55032,6 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostCopyWorksheetWithHtt else { localVarPostBody = options; // byte array - if ( "CellsWorksheetsPostCopyWorksheet" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -55322,11 +55064,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostCopyWorksheetWithHtt /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostCopyWorksheetAsync (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostCopyWorksheetAsync (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostCopyWorksheetAsyncWithHttpInfo(name, sheetName, sourceSheet, options, sourceWorkbook, sourceFolder, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostCopyWorksheetAsyncWithHttpInfo(name, sheetName, sourceSheet, options, sourceWorkbook, sourceFolder, folder, storageName); return localVarResponse.Data; } @@ -55342,9 +55084,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPost /// (optional) /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostCopyWorksheetAsyncWithHttpInfo (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostCopyWorksheetAsyncWithHttpInfo (string name, string sheetName, string sourceSheet, CopyOptions options = null, string sourceWorkbook = null, string sourceFolder = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -55384,7 +55126,7 @@ public async System.Threading.Tasks.Task> CellsW if (sourceWorkbook != null) localVarQueryParams.Add("sourceWorkbook", Configuration.ApiClient.ParameterToString(sourceWorkbook)); // query parameter if (sourceFolder != null) localVarQueryParams.Add("sourceFolder", Configuration.ApiClient.ParameterToString(sourceFolder)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (options != null && options.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(options); // http body (model) parameter @@ -55421,12 +55163,12 @@ public async System.Threading.Tasks.Task> CellsW /// The worksheet name. /// with moving parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetsResponse - public WorksheetsResponse CellsWorksheetsPostMoveWorksheet (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storage = null) + public WorksheetsResponse CellsWorksheetsPostMoveWorksheet (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostMoveWorksheetWithHttpInfo(name, sheetName, moving, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostMoveWorksheetWithHttpInfo(name, sheetName, moving, folder, storageName); return localVarResponse.Data; } @@ -55438,9 +55180,9 @@ public WorksheetsResponse CellsWorksheetsPostMoveWorksheet (string name, string /// The worksheet name. /// with moving parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetsResponse - public ApiResponse< WorksheetsResponse > CellsWorksheetsPostMoveWorksheetWithHttpInfo (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storage = null) + public ApiResponse< WorksheetsResponse > CellsWorksheetsPostMoveWorksheetWithHttpInfo (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -55474,7 +55216,7 @@ public ApiResponse< WorksheetsResponse > CellsWorksheetsPostMoveWorksheetWithHtt if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (moving != null && moving.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(moving); // http body (model) parameter @@ -55482,10 +55224,6 @@ public ApiResponse< WorksheetsResponse > CellsWorksheetsPostMoveWorksheetWithHtt else { localVarPostBody = moving; // byte array - if ( "CellsWorksheetsPostMoveWorksheet" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -55515,11 +55253,11 @@ public ApiResponse< WorksheetsResponse > CellsWorksheetsPostMoveWorksheetWithHtt /// The worksheet name. /// with moving parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetsResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostMoveWorksheetAsync (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostMoveWorksheetAsync (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostMoveWorksheetAsyncWithHttpInfo(name, sheetName, moving, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostMoveWorksheetAsyncWithHttpInfo(name, sheetName, moving, folder, storageName); return localVarResponse.Data; } @@ -55532,9 +55270,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPost /// The worksheet name. /// with moving parameters. (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetsResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostMoveWorksheetAsyncWithHttpInfo (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostMoveWorksheetAsyncWithHttpInfo (string name, string sheetName, WorksheetMovingRequest moving = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -55568,7 +55306,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (moving != null && moving.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(moving); // http body (model) parameter @@ -55605,12 +55343,12 @@ public async System.Threading.Tasks.Task> CellsW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsPostRenameWorksheet (string name, string sheetName, string newname, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsPostRenameWorksheet (string name, string sheetName, string newname, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostRenameWorksheetWithHttpInfo(name, sheetName, newname, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostRenameWorksheetWithHttpInfo(name, sheetName, newname, folder, storageName); return localVarResponse.Data; } @@ -55622,9 +55360,9 @@ public CellsCloudResponse CellsWorksheetsPostRenameWorksheet (string name, strin /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsPostRenameWorksheetWithHttpInfo (string name, string sheetName, string newname, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsPostRenameWorksheetWithHttpInfo (string name, string sheetName, string newname, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -55662,7 +55400,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostRenameWorksheetWithH if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (newname != null) localVarQueryParams.Add("newname", Configuration.ApiClient.ParameterToString(newname)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -55691,11 +55429,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostRenameWorksheetWithH /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostRenameWorksheetAsync (string name, string sheetName, string newname, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostRenameWorksheetAsync (string name, string sheetName, string newname, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostRenameWorksheetAsyncWithHttpInfo(name, sheetName, newname, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostRenameWorksheetAsyncWithHttpInfo(name, sheetName, newname, folder, storageName); return localVarResponse.Data; } @@ -55708,9 +55446,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPost /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostRenameWorksheetAsyncWithHttpInfo (string name, string sheetName, string newname, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostRenameWorksheetAsyncWithHttpInfo (string name, string sheetName, string newname, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -55748,7 +55486,7 @@ public async System.Threading.Tasks.Task> CellsW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (newname != null) localVarQueryParams.Add("newname", Configuration.ApiClient.ParameterToString(newname)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -55777,12 +55515,12 @@ public async System.Threading.Tasks.Task> CellsW /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetResponse - public WorksheetResponse CellsWorksheetsPostUpdateWorksheetProperty (string name, string sheetName, Worksheet sheet = null, string folder = null, string storage = null) + public WorksheetResponse CellsWorksheetsPostUpdateWorksheetProperty (string name, string sheetName, Worksheet sheet = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostUpdateWorksheetPropertyWithHttpInfo(name, sheetName, sheet, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostUpdateWorksheetPropertyWithHttpInfo(name, sheetName, sheet, folder, storageName); return localVarResponse.Data; } @@ -55794,9 +55532,9 @@ public WorksheetResponse CellsWorksheetsPostUpdateWorksheetProperty (string name /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetResponse - public ApiResponse< WorksheetResponse > CellsWorksheetsPostUpdateWorksheetPropertyWithHttpInfo (string name, string sheetName, Worksheet sheet = null, string folder = null, string storage = null) + public ApiResponse< WorksheetResponse > CellsWorksheetsPostUpdateWorksheetPropertyWithHttpInfo (string name, string sheetName, Worksheet sheet = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -55830,7 +55568,7 @@ public ApiResponse< WorksheetResponse > CellsWorksheetsPostUpdateWorksheetProper if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (sheet != null && sheet.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(sheet); // http body (model) parameter @@ -55838,10 +55576,6 @@ public ApiResponse< WorksheetResponse > CellsWorksheetsPostUpdateWorksheetProper else { localVarPostBody = sheet; // byte array - if ( "CellsWorksheetsPostUpdateWorksheetProperty" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -55871,11 +55605,11 @@ public ApiResponse< WorksheetResponse > CellsWorksheetsPostUpdateWorksheetProper /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostUpdateWorksheetPropertyAsync (string name, string sheetName, Worksheet sheet = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostUpdateWorksheetPropertyAsync (string name, string sheetName, Worksheet sheet = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostUpdateWorksheetPropertyAsyncWithHttpInfo(name, sheetName, sheet, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostUpdateWorksheetPropertyAsyncWithHttpInfo(name, sheetName, sheet, folder, storageName); return localVarResponse.Data; } @@ -55888,9 +55622,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPostU /// /// (optional) /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostUpdateWorksheetPropertyAsyncWithHttpInfo (string name, string sheetName, Worksheet sheet = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostUpdateWorksheetPropertyAsyncWithHttpInfo (string name, string sheetName, Worksheet sheet = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -55924,7 +55658,7 @@ public async System.Threading.Tasks.Task> CellsWo if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (sheet != null && sheet.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(sheet); // http body (model) parameter @@ -55961,12 +55695,12 @@ public async System.Threading.Tasks.Task> CellsWo /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsPostUpdateWorksheetZoom (string name, string sheetName, int? value, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsPostUpdateWorksheetZoom (string name, string sheetName, int? value, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostUpdateWorksheetZoomWithHttpInfo(name, sheetName, value, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostUpdateWorksheetZoomWithHttpInfo(name, sheetName, value, folder, storageName); return localVarResponse.Data; } @@ -55978,9 +55712,9 @@ public CellsCloudResponse CellsWorksheetsPostUpdateWorksheetZoom (string name, s /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsPostUpdateWorksheetZoomWithHttpInfo (string name, string sheetName, int? value, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsPostUpdateWorksheetZoomWithHttpInfo (string name, string sheetName, int? value, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -56018,7 +55752,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostUpdateWorksheetZoomW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (value != null) localVarQueryParams.Add("value", Configuration.ApiClient.ParameterToString(value)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -56047,11 +55781,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostUpdateWorksheetZoomW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostUpdateWorksheetZoomAsync (string name, string sheetName, int? value, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostUpdateWorksheetZoomAsync (string name, string sheetName, int? value, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostUpdateWorksheetZoomAsyncWithHttpInfo(name, sheetName, value, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostUpdateWorksheetZoomAsyncWithHttpInfo(name, sheetName, value, folder, storageName); return localVarResponse.Data; } @@ -56064,9 +55798,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPost /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostUpdateWorksheetZoomAsyncWithHttpInfo (string name, string sheetName, int? value, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostUpdateWorksheetZoomAsyncWithHttpInfo (string name, string sheetName, int? value, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -56104,7 +55838,7 @@ public async System.Threading.Tasks.Task> CellsW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (value != null) localVarQueryParams.Add("value", Configuration.ApiClient.ParameterToString(value)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -56134,12 +55868,12 @@ public async System.Threading.Tasks.Task> CellsW /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsPostWorksheetComment (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsPostWorksheetComment (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostWorksheetCommentWithHttpInfo(name, sheetName, cellName, comment, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostWorksheetCommentWithHttpInfo(name, sheetName, cellName, comment, folder, storageName); return localVarResponse.Data; } @@ -56152,9 +55886,9 @@ public CellsCloudResponse CellsWorksheetsPostWorksheetComment (string name, stri /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsPostWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsPostWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -56192,7 +55926,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostWorksheetCommentWith if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (comment != null && comment.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(comment); // http body (model) parameter @@ -56200,10 +55934,6 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostWorksheetCommentWith else { localVarPostBody = comment; // byte array - if ( "CellsWorksheetsPostWorksheetComment" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -56234,11 +55964,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostWorksheetCommentWith /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostWorksheetCommentAsync (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostWorksheetCommentAsync (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostWorksheetCommentAsyncWithHttpInfo(name, sheetName, cellName, comment, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostWorksheetCommentAsyncWithHttpInfo(name, sheetName, cellName, comment, folder, storageName); return localVarResponse.Data; } @@ -56252,9 +55982,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPost /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -56292,7 +56022,7 @@ public async System.Threading.Tasks.Task> CellsW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (comment != null && comment.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(comment); // http body (model) parameter @@ -56330,12 +56060,12 @@ public async System.Threading.Tasks.Task> CellsW /// The range to sort. /// with sorting settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsPostWorksheetRangeSort (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsPostWorksheetRangeSort (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostWorksheetRangeSortWithHttpInfo(name, sheetName, cellArea, dataSorter, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostWorksheetRangeSortWithHttpInfo(name, sheetName, cellArea, dataSorter, folder, storageName); return localVarResponse.Data; } @@ -56348,9 +56078,9 @@ public CellsCloudResponse CellsWorksheetsPostWorksheetRangeSort (string name, st /// The range to sort. /// with sorting settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsPostWorksheetRangeSortWithHttpInfo (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsPostWorksheetRangeSortWithHttpInfo (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -56388,7 +56118,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostWorksheetRangeSortWi if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellArea != null) localVarQueryParams.Add("cellArea", Configuration.ApiClient.ParameterToString(cellArea)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (dataSorter != null && dataSorter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(dataSorter); // http body (model) parameter @@ -56396,10 +56126,6 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostWorksheetRangeSortWi else { localVarPostBody = dataSorter; // byte array - if ( "CellsWorksheetsPostWorksheetRangeSort" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -56430,11 +56156,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPostWorksheetRangeSortWi /// The range to sort. /// with sorting settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostWorksheetRangeSortAsync (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostWorksheetRangeSortAsync (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostWorksheetRangeSortAsyncWithHttpInfo(name, sheetName, cellArea, dataSorter, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostWorksheetRangeSortAsyncWithHttpInfo(name, sheetName, cellArea, dataSorter, folder, storageName); return localVarResponse.Data; } @@ -56448,9 +56174,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPost /// The range to sort. /// with sorting settings. (optional) /// The workbook folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetRangeSortAsyncWithHttpInfo (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetRangeSortAsyncWithHttpInfo (string name, string sheetName, string cellArea, DataSorter dataSorter = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -56488,7 +56214,7 @@ public async System.Threading.Tasks.Task> CellsW if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellArea != null) localVarQueryParams.Add("cellArea", Configuration.ApiClient.ParameterToString(cellArea)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (dataSorter != null && dataSorter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(dataSorter); // http body (model) parameter @@ -56525,12 +56251,12 @@ public async System.Threading.Tasks.Task> CellsW /// The worksheet name. /// Text to search. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// TextItemsResponse - public TextItemsResponse CellsWorksheetsPostWorksheetTextSearch (string name, string sheetName, string text, string folder = null, string storage = null) + public TextItemsResponse CellsWorksheetsPostWorksheetTextSearch (string name, string sheetName, string text, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostWorksheetTextSearchWithHttpInfo(name, sheetName, text, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostWorksheetTextSearchWithHttpInfo(name, sheetName, text, folder, storageName); return localVarResponse.Data; } @@ -56542,9 +56268,9 @@ public TextItemsResponse CellsWorksheetsPostWorksheetTextSearch (string name, st /// The worksheet name. /// Text to search. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of TextItemsResponse - public ApiResponse< TextItemsResponse > CellsWorksheetsPostWorksheetTextSearchWithHttpInfo (string name, string sheetName, string text, string folder = null, string storage = null) + public ApiResponse< TextItemsResponse > CellsWorksheetsPostWorksheetTextSearchWithHttpInfo (string name, string sheetName, string text, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -56582,7 +56308,7 @@ public ApiResponse< TextItemsResponse > CellsWorksheetsPostWorksheetTextSearchWi if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (text != null) localVarQueryParams.Add("text", Configuration.ApiClient.ParameterToString(text)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -56611,11 +56337,11 @@ public ApiResponse< TextItemsResponse > CellsWorksheetsPostWorksheetTextSearchWi /// The worksheet name. /// Text to search. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of TextItemsResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostWorksheetTextSearchAsync (string name, string sheetName, string text, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostWorksheetTextSearchAsync (string name, string sheetName, string text, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostWorksheetTextSearchAsyncWithHttpInfo(name, sheetName, text, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostWorksheetTextSearchAsyncWithHttpInfo(name, sheetName, text, folder, storageName); return localVarResponse.Data; } @@ -56628,9 +56354,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPostW /// The worksheet name. /// Text to search. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (TextItemsResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetTextSearchAsyncWithHttpInfo (string name, string sheetName, string text, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostWorksheetTextSearchAsyncWithHttpInfo (string name, string sheetName, string text, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -56668,7 +56394,7 @@ public async System.Threading.Tasks.Task> CellsWo if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (text != null) localVarQueryParams.Add("text", Configuration.ApiClient.ParameterToString(text)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -56698,12 +56424,12 @@ public async System.Threading.Tasks.Task> CellsWo /// The old text to replace. /// The new text to replace by. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetReplaceResponse - public WorksheetReplaceResponse CellsWorksheetsPostWorsheetTextReplace (string name, string sheetName, string oldValue, string newValue, string folder = null, string storage = null) + public WorksheetReplaceResponse CellsWorksheetsPostWorsheetTextReplace (string name, string sheetName, string oldValue, string newValue, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPostWorsheetTextReplaceWithHttpInfo(name, sheetName, oldValue, newValue, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPostWorsheetTextReplaceWithHttpInfo(name, sheetName, oldValue, newValue, folder, storageName); return localVarResponse.Data; } @@ -56716,9 +56442,9 @@ public WorksheetReplaceResponse CellsWorksheetsPostWorsheetTextReplace (string n /// The old text to replace. /// The new text to replace by. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetReplaceResponse - public ApiResponse< WorksheetReplaceResponse > CellsWorksheetsPostWorsheetTextReplaceWithHttpInfo (string name, string sheetName, string oldValue, string newValue, string folder = null, string storage = null) + public ApiResponse< WorksheetReplaceResponse > CellsWorksheetsPostWorsheetTextReplaceWithHttpInfo (string name, string sheetName, string oldValue, string newValue, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -56760,7 +56486,7 @@ public ApiResponse< WorksheetReplaceResponse > CellsWorksheetsPostWorsheetTextRe if (oldValue != null) localVarQueryParams.Add("oldValue", Configuration.ApiClient.ParameterToString(oldValue)); // query parameter if (newValue != null) localVarQueryParams.Add("newValue", Configuration.ApiClient.ParameterToString(newValue)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -56790,11 +56516,11 @@ public ApiResponse< WorksheetReplaceResponse > CellsWorksheetsPostWorsheetTextRe /// The old text to replace. /// The new text to replace by. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetReplaceResponse - public async System.Threading.Tasks.Task CellsWorksheetsPostWorsheetTextReplaceAsync (string name, string sheetName, string oldValue, string newValue, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPostWorsheetTextReplaceAsync (string name, string sheetName, string oldValue, string newValue, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPostWorsheetTextReplaceAsyncWithHttpInfo(name, sheetName, oldValue, newValue, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPostWorsheetTextReplaceAsyncWithHttpInfo(name, sheetName, oldValue, newValue, folder, storageName); return localVarResponse.Data; } @@ -56808,9 +56534,9 @@ public async System.Threading.Tasks.Task CellsWorkshee /// The old text to replace. /// The new text to replace by. /// Document's folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetReplaceResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPostWorsheetTextReplaceAsyncWithHttpInfo (string name, string sheetName, string oldValue, string newValue, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPostWorsheetTextReplaceAsyncWithHttpInfo (string name, string sheetName, string oldValue, string newValue, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -56852,7 +56578,7 @@ public async System.Threading.Tasks.Task> if (oldValue != null) localVarQueryParams.Add("oldValue", Configuration.ApiClient.ParameterToString(oldValue)); // query parameter if (newValue != null) localVarQueryParams.Add("newValue", Configuration.ApiClient.ParameterToString(newValue)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -56882,12 +56608,12 @@ public async System.Threading.Tasks.Task> /// The new sheet position. (optional) /// The new sheet type. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetsResponse - public WorksheetsResponse CellsWorksheetsPutAddNewWorksheet (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storage = null) + public WorksheetsResponse CellsWorksheetsPutAddNewWorksheet (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPutAddNewWorksheetWithHttpInfo(name, sheetName, position, sheettype, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPutAddNewWorksheetWithHttpInfo(name, sheetName, position, sheettype, folder, storageName); return localVarResponse.Data; } @@ -56900,9 +56626,9 @@ public WorksheetsResponse CellsWorksheetsPutAddNewWorksheet (string name, string /// The new sheet position. (optional) /// The new sheet type. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetsResponse - public ApiResponse< WorksheetsResponse > CellsWorksheetsPutAddNewWorksheetWithHttpInfo (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storage = null) + public ApiResponse< WorksheetsResponse > CellsWorksheetsPutAddNewWorksheetWithHttpInfo (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -56938,7 +56664,7 @@ public ApiResponse< WorksheetsResponse > CellsWorksheetsPutAddNewWorksheetWithHt if (position != null) localVarQueryParams.Add("position", Configuration.ApiClient.ParameterToString(position)); // query parameter if (sheettype != null) localVarQueryParams.Add("sheettype", Configuration.ApiClient.ParameterToString(sheettype)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -56968,11 +56694,11 @@ public ApiResponse< WorksheetsResponse > CellsWorksheetsPutAddNewWorksheetWithHt /// The new sheet position. (optional) /// The new sheet type. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetsResponse - public async System.Threading.Tasks.Task CellsWorksheetsPutAddNewWorksheetAsync (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPutAddNewWorksheetAsync (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPutAddNewWorksheetAsyncWithHttpInfo(name, sheetName, position, sheettype, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPutAddNewWorksheetAsyncWithHttpInfo(name, sheetName, position, sheettype, folder, storageName); return localVarResponse.Data; } @@ -56986,9 +56712,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPutA /// The new sheet position. (optional) /// The new sheet type. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetsResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPutAddNewWorksheetAsyncWithHttpInfo (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPutAddNewWorksheetAsyncWithHttpInfo (string name, string sheetName, int? position = null, string sheettype = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -57024,7 +56750,7 @@ public async System.Threading.Tasks.Task> CellsW if (position != null) localVarQueryParams.Add("position", Configuration.ApiClient.ParameterToString(position)); // query parameter if (sheettype != null) localVarQueryParams.Add("sheettype", Configuration.ApiClient.ParameterToString(sheettype)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -57053,12 +56779,12 @@ public async System.Threading.Tasks.Task> CellsW /// Worksheet name. /// New worksheet visibility value. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetResponse - public WorksheetResponse CellsWorksheetsPutChangeVisibilityWorksheet (string name, string sheetName, bool? isVisible, string folder = null, string storage = null) + public WorksheetResponse CellsWorksheetsPutChangeVisibilityWorksheet (string name, string sheetName, bool? isVisible, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPutChangeVisibilityWorksheetWithHttpInfo(name, sheetName, isVisible, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPutChangeVisibilityWorksheetWithHttpInfo(name, sheetName, isVisible, folder, storageName); return localVarResponse.Data; } @@ -57070,9 +56796,9 @@ public WorksheetResponse CellsWorksheetsPutChangeVisibilityWorksheet (string nam /// Worksheet name. /// New worksheet visibility value. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetResponse - public ApiResponse< WorksheetResponse > CellsWorksheetsPutChangeVisibilityWorksheetWithHttpInfo (string name, string sheetName, bool? isVisible, string folder = null, string storage = null) + public ApiResponse< WorksheetResponse > CellsWorksheetsPutChangeVisibilityWorksheetWithHttpInfo (string name, string sheetName, bool? isVisible, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -57110,7 +56836,7 @@ public ApiResponse< WorksheetResponse > CellsWorksheetsPutChangeVisibilityWorksh if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (isVisible != null) localVarQueryParams.Add("isVisible", Configuration.ApiClient.ParameterToString(isVisible)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -57139,11 +56865,11 @@ public ApiResponse< WorksheetResponse > CellsWorksheetsPutChangeVisibilityWorksh /// Worksheet name. /// New worksheet visibility value. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetResponse - public async System.Threading.Tasks.Task CellsWorksheetsPutChangeVisibilityWorksheetAsync (string name, string sheetName, bool? isVisible, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPutChangeVisibilityWorksheetAsync (string name, string sheetName, bool? isVisible, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPutChangeVisibilityWorksheetAsyncWithHttpInfo(name, sheetName, isVisible, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPutChangeVisibilityWorksheetAsyncWithHttpInfo(name, sheetName, isVisible, folder, storageName); return localVarResponse.Data; } @@ -57156,9 +56882,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPutCh /// Worksheet name. /// New worksheet visibility value. /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPutChangeVisibilityWorksheetAsyncWithHttpInfo (string name, string sheetName, bool? isVisible, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPutChangeVisibilityWorksheetAsyncWithHttpInfo (string name, string sheetName, bool? isVisible, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -57196,7 +56922,7 @@ public async System.Threading.Tasks.Task> CellsWo if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (isVisible != null) localVarQueryParams.Add("isVisible", Configuration.ApiClient.ParameterToString(isVisible)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -57225,12 +56951,12 @@ public async System.Threading.Tasks.Task> CellsWo /// The worksheet name. /// with protection settings. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// WorksheetResponse - public WorksheetResponse CellsWorksheetsPutProtectWorksheet (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null) + public WorksheetResponse CellsWorksheetsPutProtectWorksheet (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPutProtectWorksheetWithHttpInfo(name, sheetName, protectParameter, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPutProtectWorksheetWithHttpInfo(name, sheetName, protectParameter, folder, storageName); return localVarResponse.Data; } @@ -57242,9 +56968,9 @@ public WorksheetResponse CellsWorksheetsPutProtectWorksheet (string name, string /// The worksheet name. /// with protection settings. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of WorksheetResponse - public ApiResponse< WorksheetResponse > CellsWorksheetsPutProtectWorksheetWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null) + public ApiResponse< WorksheetResponse > CellsWorksheetsPutProtectWorksheetWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -57278,7 +57004,7 @@ public ApiResponse< WorksheetResponse > CellsWorksheetsPutProtectWorksheetWithHt if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (protectParameter != null && protectParameter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(protectParameter); // http body (model) parameter @@ -57286,10 +57012,6 @@ public ApiResponse< WorksheetResponse > CellsWorksheetsPutProtectWorksheetWithHt else { localVarPostBody = protectParameter; // byte array - if ( "CellsWorksheetsPutProtectWorksheet" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -57319,11 +57041,11 @@ public ApiResponse< WorksheetResponse > CellsWorksheetsPutProtectWorksheetWithHt /// The worksheet name. /// with protection settings. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of WorksheetResponse - public async System.Threading.Tasks.Task CellsWorksheetsPutProtectWorksheetAsync (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPutProtectWorksheetAsync (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPutProtectWorksheetAsyncWithHttpInfo(name, sheetName, protectParameter, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPutProtectWorksheetAsyncWithHttpInfo(name, sheetName, protectParameter, folder, storageName); return localVarResponse.Data; } @@ -57336,9 +57058,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPutPr /// The worksheet name. /// with protection settings. (optional) /// Document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (WorksheetResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPutProtectWorksheetAsyncWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPutProtectWorksheetAsyncWithHttpInfo (string name, string sheetName, ProtectSheetParameter protectParameter = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -57372,7 +57094,7 @@ public async System.Threading.Tasks.Task> CellsWo if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (protectParameter != null && protectParameter.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(protectParameter); // http body (model) parameter @@ -57409,12 +57131,12 @@ public async System.Threading.Tasks.Task> CellsWo /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsPutWorksheetBackground (string name, string sheetName, byte[] png, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsPutWorksheetBackground (string name, string sheetName, byte[] png, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPutWorksheetBackgroundWithHttpInfo(name, sheetName, png, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPutWorksheetBackgroundWithHttpInfo(name, sheetName, png, folder, storageName); return localVarResponse.Data; } @@ -57426,9 +57148,9 @@ public CellsCloudResponse CellsWorksheetsPutWorksheetBackground (string name, st /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsPutWorksheetBackgroundWithHttpInfo (string name, string sheetName, byte[] png, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsPutWorksheetBackgroundWithHttpInfo (string name, string sheetName, byte[] png, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -57465,7 +57187,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPutWorksheetBackgroundWi if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (png != null && png.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(png); // http body (model) parameter @@ -57473,10 +57195,6 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPutWorksheetBackgroundWi else { localVarPostBody = png; // byte array - if ( "CellsWorksheetsPutWorksheetBackground" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -57506,11 +57224,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPutWorksheetBackgroundWi /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsPutWorksheetBackgroundAsync (string name, string sheetName, byte[] png, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPutWorksheetBackgroundAsync (string name, string sheetName, byte[] png, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPutWorksheetBackgroundAsyncWithHttpInfo(name, sheetName, png, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPutWorksheetBackgroundAsyncWithHttpInfo(name, sheetName, png, folder, storageName); return localVarResponse.Data; } @@ -57523,9 +57241,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPutW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetBackgroundAsyncWithHttpInfo (string name, string sheetName, byte[] png, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetBackgroundAsyncWithHttpInfo (string name, string sheetName, byte[] png, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -57562,7 +57280,7 @@ public async System.Threading.Tasks.Task> CellsW if (name != null) localVarPathParams.Add("name", Configuration.ApiClient.ParameterToString(name)); // path parameter if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (png != null && png.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(png); // http body (model) parameter @@ -57600,12 +57318,12 @@ public async System.Threading.Tasks.Task> CellsW /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// CommentResponse - public CommentResponse CellsWorksheetsPutWorksheetComment (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null) + public CommentResponse CellsWorksheetsPutWorksheetComment (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPutWorksheetCommentWithHttpInfo(name, sheetName, cellName, comment, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPutWorksheetCommentWithHttpInfo(name, sheetName, cellName, comment, folder, storageName); return localVarResponse.Data; } @@ -57618,9 +57336,9 @@ public CommentResponse CellsWorksheetsPutWorksheetComment (string name, string s /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CommentResponse - public ApiResponse< CommentResponse > CellsWorksheetsPutWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null) + public ApiResponse< CommentResponse > CellsWorksheetsPutWorksheetCommentWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -57658,7 +57376,7 @@ public ApiResponse< CommentResponse > CellsWorksheetsPutWorksheetCommentWithHttp if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (comment != null && comment.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(comment); // http body (model) parameter @@ -57666,10 +57384,6 @@ public ApiResponse< CommentResponse > CellsWorksheetsPutWorksheetCommentWithHttp else { localVarPostBody = comment; // byte array - if ( "CellsWorksheetsPutWorksheetComment" == "CellsSaveAsPostDocumentSaveAs") - { - localVarHeaderParams.Add("Content-Type", "application/json"); - } } @@ -57700,11 +57414,11 @@ public ApiResponse< CommentResponse > CellsWorksheetsPutWorksheetCommentWithHttp /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CommentResponse - public async System.Threading.Tasks.Task CellsWorksheetsPutWorksheetCommentAsync (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPutWorksheetCommentAsync (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPutWorksheetCommentAsyncWithHttpInfo(name, sheetName, cellName, comment, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPutWorksheetCommentAsyncWithHttpInfo(name, sheetName, cellName, comment, folder, storageName); return localVarResponse.Data; } @@ -57718,9 +57432,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPutWork /// The cell name /// Comment object (optional) /// The document folder. (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CommentResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetCommentAsyncWithHttpInfo (string name, string sheetName, string cellName, Comment comment = null, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -57758,7 +57472,7 @@ public async System.Threading.Tasks.Task> CellsWork if (sheetName != null) localVarPathParams.Add("sheetName", Configuration.ApiClient.ParameterToString(sheetName)); // path parameter if (cellName != null) localVarPathParams.Add("cellName", Configuration.ApiClient.ParameterToString(cellName)); // path parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter if (comment != null && comment.GetType() != typeof(byte[])) { localVarPostBody = Configuration.ApiClient.Serialize(comment); // http body (model) parameter @@ -57798,12 +57512,12 @@ public async System.Threading.Tasks.Task> CellsWork /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// CellsCloudResponse - public CellsCloudResponse CellsWorksheetsPutWorksheetFreezePanes (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null) + public CellsCloudResponse CellsWorksheetsPutWorksheetFreezePanes (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null) { checkAccessToken(); - ApiResponse localVarResponse = CellsWorksheetsPutWorksheetFreezePanesWithHttpInfo(name, sheetName, row, column, freezedRows, freezedColumns, folder, storage); + ApiResponse localVarResponse = CellsWorksheetsPutWorksheetFreezePanesWithHttpInfo(name, sheetName, row, column, freezedRows, freezedColumns, folder, storageName); return localVarResponse.Data; } @@ -57818,9 +57532,9 @@ public CellsCloudResponse CellsWorksheetsPutWorksheetFreezePanes (string name, s /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// ApiResponse of CellsCloudResponse - public ApiResponse< CellsCloudResponse > CellsWorksheetsPutWorksheetFreezePanesWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null) + public ApiResponse< CellsCloudResponse > CellsWorksheetsPutWorksheetFreezePanesWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -57870,7 +57584,7 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPutWorksheetFreezePanesW if (freezedRows != null) localVarQueryParams.Add("freezedRows", Configuration.ApiClient.ParameterToString(freezedRows)); // query parameter if (freezedColumns != null) localVarQueryParams.Add("freezedColumns", Configuration.ApiClient.ParameterToString(freezedColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request @@ -57902,11 +57616,11 @@ public ApiResponse< CellsCloudResponse > CellsWorksheetsPutWorksheetFreezePanesW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of CellsCloudResponse - public async System.Threading.Tasks.Task CellsWorksheetsPutWorksheetFreezePanesAsync (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task CellsWorksheetsPutWorksheetFreezePanesAsync (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null) { - ApiResponse localVarResponse = await CellsWorksheetsPutWorksheetFreezePanesAsyncWithHttpInfo(name, sheetName, row, column, freezedRows, freezedColumns, folder, storage); + ApiResponse localVarResponse = await CellsWorksheetsPutWorksheetFreezePanesAsyncWithHttpInfo(name, sheetName, row, column, freezedRows, freezedColumns, folder, storageName); return localVarResponse.Data; } @@ -57922,9 +57636,9 @@ public async System.Threading.Tasks.Task CellsWorksheetsPutW /// /// /// (optional) - /// storage name. (optional) + /// storage name. (optional) /// Task of ApiResponse (CellsCloudResponse) - public async System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetFreezePanesAsyncWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storage = null) + public async System.Threading.Tasks.Task> CellsWorksheetsPutWorksheetFreezePanesAsyncWithHttpInfo (string name, string sheetName, int? row, int? column, int? freezedRows, int? freezedColumns, string folder = null, string storageName = null) { // verify the required parameter 'name' is set if (name == null) @@ -57974,7 +57688,7 @@ public async System.Threading.Tasks.Task> CellsW if (freezedRows != null) localVarQueryParams.Add("freezedRows", Configuration.ApiClient.ParameterToString(freezedRows)); // query parameter if (freezedColumns != null) localVarQueryParams.Add("freezedColumns", Configuration.ApiClient.ParameterToString(freezedColumns)); // query parameter if (folder != null) localVarQueryParams.Add("folder", Configuration.ApiClient.ParameterToString(folder)); // query parameter - if (storage != null) localVarQueryParams.Add("storage", Configuration.ApiClient.ParameterToString(storage)); // query parameter + if (storageName != null) localVarQueryParams.Add("storageName", Configuration.ApiClient.ParameterToString(storageName)); // query parameter // make the HTTP request diff --git a/Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj b/Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj index f4aff016..169eafa3 100644 --- a/Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj +++ b/Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj @@ -11,9 +11,9 @@ This SDK allows you to work with Aspose.Cells Cloud REST APIs in your .NET applications quickly and easily, with zero initial cost. MIT false - 20.6 - 20.6 - 20.6 + 20.8 + 20.8 + 20.8 diff --git a/Aspose.Cells.Cloud.SDK/Client/Configuration.cs b/Aspose.Cells.Cloud.SDK/Client/Configuration.cs index ee1cdbbc..53c7ea61 100644 --- a/Aspose.Cells.Cloud.SDK/Client/Configuration.cs +++ b/Aspose.Cells.Cloud.SDK/Client/Configuration.cs @@ -59,7 +59,7 @@ public Configuration(ApiClient apiClient = null, string tempFolderPath = null, string dateTimeFormat = null, int timeout = 100000, - string userAgent = "Swagger-Codegen/20.7/csharp" + string userAgent = "Swagger-Codegen/20.8/csharp" ) { setApiClientUsingDefault(apiClient); @@ -94,7 +94,7 @@ public Configuration(ApiClient apiClient) /// Version of the package. /// /// Version of the package. - public const string Version = "20.7"; + public const string Version = "20.8"; /// /// Gets or sets the default Configuration. @@ -338,7 +338,7 @@ public static String ToDebugReport() .GetExecutingAssembly() .GetReferencedAssemblies() .Where(x => x.Name == "System.Core").First().Version.ToString() + "\n"; - report += " SDK Package Version: 20.7\n"; + report += " SDK Package Version: 20.8\n"; return report; } diff --git a/README.md b/README.md index 71aee3e0..6e6ebf97 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,11 @@ This Cloud SDK enhances your C#, ASP.NET, & other .NET cloud-based apps to [proc - Cloud SDK to Read & Process Excel Worksheets. - Leverage the Power of Pivot Tables & Ranges. -## Feature & Enhancements in Version 20.7 +## Feature & Enhancements in Version 20.8 -- Enhancement for CellsApi constructor. +- Aspose.Cells Cloud API calls are not working with explicit storage name but only default storage. +- Get output file size without downloading during conversion. +- Enhancement for CellsShapesPutWorksheetShape API. ## Read & Write Spreadsheet Formats