Skip to content

Commit 922c276

Browse files
committed
2023-09-08 : There are 6 files that was modified in the project. Respectively are api_cells.go, model_auto_fitter_options.go, model_calculation_options.go, and so on. There is 1 file that was deleted in the project. It is request_get_extract_barcodes_request.go There are 14 files that was added in the project. Respectively are model_abstract_calculation_engine.go, model_abstract_calculation_monitor.go, model_chart_globalization_settings.go, and so on.
1 parent 8916d16 commit 922c276

20 files changed

+640
-7
lines changed

api_cells.go

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15055,6 +15055,32 @@ func (a *CellsApiService) CellsRangesPostWorksheetCellsRangeMoveTo(localVarOptio
1505515055
return localVarReturnValue, localVarHttpResponse, err
1505615056
}
1505715057

15058+
func (a *CellsApiService) PostWorksheetCellsRangeSort(data *PostWorksheetCellsRangeSortRequest) (CellsCloudResponse, *http.Response, error) {
15059+
var (
15060+
localVarReturnValue CellsCloudResponse
15061+
)
15062+
15063+
r, err := data.CreateRequestData(a.client)
15064+
if err != nil {
15065+
return localVarReturnValue, nil, err
15066+
}
15067+
15068+
localVarHttpResponse, err := a.client.callAPI(r)
15069+
if err != nil || localVarHttpResponse == nil {
15070+
return localVarReturnValue, localVarHttpResponse, err
15071+
}
15072+
defer localVarHttpResponse.Body.Close()
15073+
if localVarHttpResponse.StatusCode >= 300 {
15074+
bodyBytes, _ := ioutil.ReadAll(localVarHttpResponse.Body)
15075+
return localVarReturnValue, localVarHttpResponse, reportError("Status: %v, Body: %s", localVarHttpResponse.Status, bodyBytes)
15076+
}
15077+
if err = json.NewDecoder(localVarHttpResponse.Body).Decode(&localVarReturnValue); err != nil {
15078+
return localVarReturnValue, localVarHttpResponse, err
15079+
}
15080+
15081+
return localVarReturnValue, localVarHttpResponse, err
15082+
}
15083+
1505815084
/*
1505915085
CellsApiService Sets outline border around a range of cells.
1506015086
* @param name workbook name
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/** --------------------------------------------------------------------------------------------------------------------
2+
* <copyright company="Aspose" file="AbstractCalculationEngine.go">
3+
* Copyright (c) 2023 Aspose.Cells Cloud
4+
* </copyright>
5+
* <summary>
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the "Software"), to deal
8+
* in the Software without restriction, including without limitation the rights
9+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
* copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in all
14+
* copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
* SOFTWARE.
23+
* </summary>
24+
-------------------------------------------------------------------------------------------------------------------- **/
25+
26+
package asposecellscloud
27+
28+
type AbstractCalculationEngine struct {
29+
30+
IsParamLiteralRequired bool `json:"IsParamLiteralRequired,omitempty" xml:"IsParamLiteralRequired"`
31+
IsParamArrayModeRequired bool `json:"IsParamArrayModeRequired,omitempty" xml:"IsParamArrayModeRequired"`
32+
ProcessBuiltInFunctions bool `json:"ProcessBuiltInFunctions,omitempty" xml:"ProcessBuiltInFunctions"`
33+
}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/** --------------------------------------------------------------------------------------------------------------------
2+
* <copyright company="Aspose" file="AbstractCalculationMonitor.go">
3+
* Copyright (c) 2023 Aspose.Cells Cloud
4+
* </copyright>
5+
* <summary>
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the "Software"), to deal
8+
* in the Software without restriction, including without limitation the rights
9+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
* copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in all
14+
* copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
* SOFTWARE.
23+
* </summary>
24+
-------------------------------------------------------------------------------------------------------------------- **/
25+
26+
package asposecellscloud
27+
28+
type AbstractCalculationMonitor struct {
29+
30+
OriginalValue *interface{} `json:"OriginalValue,omitempty" xml:"OriginalValue"`
31+
ValueChanged bool `json:"ValueChanged,omitempty" xml:"ValueChanged"`
32+
CalculatedValue *interface{} `json:"CalculatedValue,omitempty" xml:"CalculatedValue"`
33+
}

model_auto_fitter_options.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,9 @@ type AutoFitterOptions struct {
3131
AutoFitMergedCells bool `json:"AutoFitMergedCells,omitempty" xml:"AutoFitMergedCells"`
3232
IgnoreHidden bool `json:"IgnoreHidden,omitempty" xml:"IgnoreHidden"`
3333
OnlyAuto bool `json:"OnlyAuto,omitempty" xml:"OnlyAuto"`
34+
DefaultEditLanguage string `json:"DefaultEditLanguage,omitempty" xml:"DefaultEditLanguage"`
35+
MaxRowHeight float64 `json:"MaxRowHeight,omitempty" xml:"MaxRowHeight"`
36+
AutoFitWrappedTextType string `json:"AutoFitWrappedTextType,omitempty" xml:"AutoFitWrappedTextType"`
37+
FormatStrategy string `json:"FormatStrategy,omitempty" xml:"FormatStrategy"`
38+
ForRendering bool `json:"ForRendering,omitempty" xml:"ForRendering"`
3439
}

model_calculation_options.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,7 @@ type CalculationOptions struct {
3131
IgnoreError bool `json:"IgnoreError,omitempty" xml:"IgnoreError"`
3232
PrecisionStrategy string `json:"PrecisionStrategy,omitempty" xml:"PrecisionStrategy"`
3333
Recursive bool `json:"Recursive,omitempty" xml:"Recursive"`
34+
CustomEngine *AbstractCalculationEngine `json:"CustomEngine,omitempty" xml:"CustomEngine"`
35+
CalculationMonitor *AbstractCalculationMonitor `json:"CalculationMonitor,omitempty" xml:"CalculationMonitor"`
36+
LinkedDataSources []Workbook `json:"LinkedDataSources,omitempty" xml:"LinkedDataSources"`
3437
}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/** --------------------------------------------------------------------------------------------------------------------
2+
* <copyright company="Aspose" file="ChartGlobalizationSettings.go">
3+
* Copyright (c) 2023 Aspose.Cells Cloud
4+
* </copyright>
5+
* <summary>
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the "Software"), to deal
8+
* in the Software without restriction, including without limitation the rights
9+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
* copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in all
14+
* copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
* SOFTWARE.
23+
* </summary>
24+
-------------------------------------------------------------------------------------------------------------------- **/
25+
26+
package asposecellscloud
27+
28+
type ChartGlobalizationSettings struct {
29+
30+
}

model_formula_settings.go

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/** --------------------------------------------------------------------------------------------------------------------
2+
* <copyright company="Aspose" file="FormulaSettings.go">
3+
* Copyright (c) 2023 Aspose.Cells Cloud
4+
* </copyright>
5+
* <summary>
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the "Software"), to deal
8+
* in the Software without restriction, including without limitation the rights
9+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
* copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in all
14+
* copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
* SOFTWARE.
23+
* </summary>
24+
-------------------------------------------------------------------------------------------------------------------- **/
25+
26+
package asposecellscloud
27+
28+
type FormulaSettings struct {
29+
30+
CalculateOnOpen bool `json:"CalculateOnOpen,omitempty" xml:"CalculateOnOpen"`
31+
CalculateOnSave bool `json:"CalculateOnSave,omitempty" xml:"CalculateOnSave"`
32+
ForceFullCalculation bool `json:"ForceFullCalculation,omitempty" xml:"ForceFullCalculation"`
33+
CalculationMode string `json:"CalculationMode,omitempty" xml:"CalculationMode"`
34+
CalculationId string `json:"CalculationId,omitempty" xml:"CalculationId"`
35+
EnableIterativeCalculation bool `json:"EnableIterativeCalculation,omitempty" xml:"EnableIterativeCalculation"`
36+
MaxIteration int64 `json:"MaxIteration,omitempty" xml:"MaxIteration"`
37+
MaxChange float64 `json:"MaxChange,omitempty" xml:"MaxChange"`
38+
PrecisionAsDisplayed bool `json:"PrecisionAsDisplayed,omitempty" xml:"PrecisionAsDisplayed"`
39+
EnableCalculationChain bool `json:"EnableCalculationChain,omitempty" xml:"EnableCalculationChain"`
40+
PreservePaddingSpaces bool `json:"PreservePaddingSpaces,omitempty" xml:"PreservePaddingSpaces"`
41+
}

model_globalization_settings.go

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/** --------------------------------------------------------------------------------------------------------------------
2+
* <copyright company="Aspose" file="GlobalizationSettings.go">
3+
* Copyright (c) 2023 Aspose.Cells Cloud
4+
* </copyright>
5+
* <summary>
6+
* Permission is hereby granted, free of charge, to any person obtaining a copy
7+
* of this software and associated documentation files (the "Software"), to deal
8+
* in the Software without restriction, including without limitation the rights
9+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
* copies of the Software, and to permit persons to whom the Software is
11+
* furnished to do so, subject to the following conditions:
12+
*
13+
* The above copyright notice and this permission notice shall be included in all
14+
* copies or substantial portions of the Software.
15+
*
16+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
* SOFTWARE.
23+
* </summary>
24+
-------------------------------------------------------------------------------------------------------------------- **/
25+
26+
package asposecellscloud
27+
28+
type GlobalizationSettings struct {
29+
30+
ChartSettings *ChartGlobalizationSettings `json:"ChartSettings,omitempty" xml:"ChartSettings"`
31+
PivotSettings *PivotGlobalizationSettings `json:"PivotSettings,omitempty" xml:"PivotSettings"`
32+
ListSeparator string `json:"ListSeparator,omitempty" xml:"ListSeparator"`
33+
RowSeparatorOfFormulaArray string `json:"RowSeparatorOfFormulaArray,omitempty" xml:"RowSeparatorOfFormulaArray"`
34+
ColumnSeparatorOfFormulaArray string `json:"ColumnSeparatorOfFormulaArray,omitempty" xml:"ColumnSeparatorOfFormulaArray"`
35+
}

model_list_column.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ type ListColumn struct {
3131
Range_ *Range `json:"Range,omitempty" xml:"Range"`
3232
TotalsCalculation string `json:"TotalsCalculation,omitempty" xml:"TotalsCalculation"`
3333
Formula string `json:"Formula,omitempty" xml:"Formula"`
34+
TotalsRowLabel string `json:"TotalsRowLabel,omitempty" xml:"TotalsRowLabel"`
3435
}

model_list_object.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,10 @@ type ListObject struct {
4444
ShowTotals bool `json:"ShowTotals,omitempty" xml:"ShowTotals"`
4545
TableStyleName string `json:"TableStyleName,omitempty" xml:"TableStyleName"`
4646
TableStyleType string `json:"TableStyleType,omitempty" xml:"TableStyleType"`
47+
DataRange *Range `json:"DataRange,omitempty" xml:"DataRange"`
48+
DataSourceType string `json:"DataSourceType,omitempty" xml:"DataSourceType"`
49+
Comment string `json:"Comment,omitempty" xml:"Comment"`
50+
XmlMap *XmlMap `json:"XmlMap,omitempty" xml:"XmlMap"`
51+
AlternativeText string `json:"AlternativeText,omitempty" xml:"AlternativeText"`
52+
AlternativeDescription string `json:"AlternativeDescription,omitempty" xml:"AlternativeDescription"`
4753
}

0 commit comments

Comments
 (0)