asposecellscloud

package module
v20.11.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 4, 2020 License: MIT Imports: 18 Imported by: 0

README

GitHub license

Go API Client for Aspose.Cells Cloud

Aspose.Cells Cloud SDK for Go empowers your Go applications to connect with excel document formats. The APIs let engineers read, convert, build, alter and control the substance of the excel document formats without any office software installed on the machine.

Excel® File Manipulation in the Cloud

  • Create Excel files from scratch via API or Smart Markers.
  • Load, process & convert Excel files via Cloud SDK.
  • Add, update or delete worksheet, charts, pictures, shapes, hyperlinks & validations.
  • Add or remove cells area for conditional formatting from Excel worksheets.
  • Insert or delete, horizontal or vertical page breaks.
  • Add ListObject or convert ListObjects to a range of cells.
  • Summarize data with Pivot Tables & Excel charts.
  • Apply custom criteria to list filters of various types.
  • Get, update, show or hide chart legend & titles.
  • Manipulate page setup, header & footer.
  • Create, update, fetch or delete document properties.
  • Fetch the required shape from worksheet.
  • Leverage the power of named ranges.

Enhancements in Version 20.11

  • Support Aspose.Cells Cloud for Docker.

Read & Write Spreadsheet Formats

Microsoft Excel: XLS, XLSX, XLSB, XLSM, XLT, XLTX, XLTM OpenOffice: ODS SpreadsheetML: XML Text: CSV, TSV, TXT (TabDelimited) Web: HTML, MHTML

Save Spreadsheets As

Microsoft Excel: XLS, XLSX, XLSB OpenOffice: ODS SpreadsheetML: XML Text: CSV, TSV, TXT (TabDelimited) Web: HTML, MHTML Fixed Layout: PDF, XPS Images: PNG, JPG, TIFF, SVG Markdown: MD Other: DIF

Read Other Formats

SXC, FODS

Get Started with Aspose.Cells Cloud SDK for Go

First, create an account at Aspose for Cloud and get your application information. Then, follow these steps.

  • Download the code and Add/Modify your application and refer to cells_cloud_test.go.
  • If you want to download Go Module,please use import "github.com/aspose-cells-cloud/aspose-cells-cloud-go/v20" in your code.
func GetDocumentCircleAnnotations() (CircleAnnotationsResponse, *http.Response, error) {
    cellsAPI := NewCellsApiService("clientId", "clientSecret", "https://api.aspose.cloud","v3.0")
	name := "Book1.xlsx"	

	args := new(UploadFileOpts)
	args.Path = "GoTest/Booka1.xlsx"
	file, err := os.Open( "test_data/" + name)
	if err != nil {
		return err
	}

	_, _, err =cellsAPI.UploadFile(file, args)
	return err
}

Add Worksheet to Excel File via Go

   name := GetBook1()
	if err := GetBaseTest().UploadFile(name); err != nil {
		t.Error(err)
	}

	args := new(CellsWorksheetsPutAddNewWorksheetOpts)
	args.Name = GetBook1()
	args.SheetName = GetSheet1()
	args.Position = 1
	args.Sheettype = "VB"
	args.Folder = GetBaseTest().remoteFolder

	response, httpResponse, err := GetBaseTest().CellsAPI.CellsWorksheetsPutAddNewWorksheet(args)
	if err != nil {
		t.Error(err)
	} else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
		t.Fail()
	} else {
		fmt.Printf("%d\tTestCellsWorksheetsPutAddNewWorksheet - %d\n", GetBaseTest().GetTestNumber(), response.Code)
	}

Using Go to Convert an Excel File in the Cloud

// Upload source file to aspose cloud storage
name := GetBook1()
	if err := GetBaseTest().UploadFile(name); err != nil {
		t.Error(err)
	}

	args := new(CellsSaveAsPostDocumentSaveAsOpts)
	args.Name = GetBook1()
	args.Newfilename = "GoTest/newfilego.pdf"
	args.Folder = GetBaseTest().remoteFolder

	response, httpResponse, err := GetBaseTest().CellsAPI.CellsSaveAsPostDocumentSaveAs(args)
	if err != nil {
		t.Error(err)
	} else if httpResponse.StatusCode < 200 || httpResponse.StatusCode > 299 {
		t.Fail()
	} else {
		fmt.Printf("%d\tTestCellsSaveAsPostDocumentSaveAs - %d\n", GetBaseTest().GetTestNumber(), response.Code)
	}
.NET Java PHP Python Ruby Node.js Android Swift Perl
GitHub GitHub GitHub GitHub GitHub GitHub GitHub GitHub GitHub
NuGet Maven Composer PIP GEM NPM Maven POD CPAN

Product Page | Documentation | Live Demo | API Reference | Code Samples | Blog | Free Support | Free Trial

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ContextOAuth2 takes a oauth2.TokenSource as authentication for the request.
	ContextOAuth2 = contextKey("token")

	// ContextBasicAuth takes BasicAuth as authentication for the request.
	ContextBasicAuth = contextKey("basic")

	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextAPIKey takes an APIKey as authentication for the request
	ContextAPIKey = contextKey("apikey")
)

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

func Version

func Version()

Types

type APIClient

type APIClient struct {

	// API Services
	CellsApi *CellsApiService
	// contains filtered or unexported fields
}

APIClient manages communication with the Aspose.Cells Cloud SDK APIs. API v20.10 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) ChangeBasePath

func (c *APIClient) ChangeBasePath(path string)

Change base path to allow switching to mocks

func (*APIClient) RequestOauthToken

func (a *APIClient) RequestOauthToken() error

RequestOauthToken function for requests OAuth token

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the swagger operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

type AboveAverage

type AboveAverage struct {
	// Get or set the flag indicating whether the rule is an \"above average\" rule.    'true' indicates 'above average'.  Default value is true.
	IsAboveAverage bool `json:"IsAboveAverage" xml:"IsAboveAverage"`
	// Get or set the flag indicating whether the 'aboveAverage' and 'belowAverage'    criteria is inclusive of the average itself, or exclusive of that value.    'true' indicates to include the average value in the criteria.  Default value    is false.
	IsEqualAverage bool `json:"IsEqualAverage" xml:"IsEqualAverage"`
	// Get or set the number of standard deviations to include above or below the   average in the conditional formatting rule. The input value must between   0 and 3 (include 0 and 3). Setting this value to 0 means stdDev is not set.    The default value is 0.
	StdDev int64 `json:"StdDev" xml:"StdDev"`
}

Describe the AboveAverage conditional formatting rule. This conditional formatting rule highlights cells that are above or below the average for all values in the range.

type AccessTokenResponse

type AccessTokenResponse struct {
	Expires                             string `json:".expires,omitempty" xml:".expires"`
	AccessToken                         string `json:"access_token,omitempty" xml:"access_token"`
	Issued                              string `json:".issued,omitempty" xml:".issued"`
	ClientRefreshTokenLifeTimeInMinutes string `json:"clientRefreshTokenLifeTimeInMinutes,omitempty" xml:"clientRefreshTokenLifeTimeInMinutes"`
	ExpiresIn                           int64  `json:"expires_in,omitempty" xml:"expires_in"`
	TokenType                           string `json:"token_type,omitempty" xml:"token_type"`
	ClientId                            string `json:"client_id,omitempty" xml:"client_id"`
	RefreshToken                        string `json:"refresh_token,omitempty" xml:"refresh_token"`
}

type Area

type Area struct {
	ForegroundColor  *Color      `json:"ForegroundColor,omitempty" xml:"ForegroundColor"`
	BackgroundColor  *Color      `json:"BackgroundColor,omitempty" xml:"BackgroundColor"`
	Format           string      `json:"Format,omitempty" xml:"Format"`
	FillFormat       *FillFormat `json:"FillFormat,omitempty" xml:"FillFormat"`
	InvertIfNegative bool        `json:"InvertIfNegative,omitempty" xml:"InvertIfNegative"`
	Transparency     float64     `json:"Transparency,omitempty" xml:"Transparency"`
}

type AutoFilter

type AutoFilter struct {
	Link          *Link          `json:"link,omitempty" xml:"link"`
	Range_        string         `json:"Range,omitempty" xml:"Range"`
	FilterColumns []FilterColumn `json:"FilterColumns,omitempty" xml:"FilterColumns"`
	Sorter        *DataSorter    `json:"Sorter,omitempty" xml:"Sorter"`
}

type AutoFilterResponse

type AutoFilterResponse struct {
	Status     string      `json:"Status,omitempty" xml:"Status"`
	Code       int32       `json:"Code" xml:"Code"`
	AutoFilter *AutoFilter `json:"AutoFilter,omitempty" xml:"AutoFilter"`
}

type AutoFitterOptions

type AutoFitterOptions struct {
	IgnoreHidden       bool `json:"IgnoreHidden" xml:"IgnoreHidden"`
	OnlyAuto           bool `json:"OnlyAuto" xml:"OnlyAuto"`
	AutoFitMergedCells bool `json:"AutoFitMergedCells" xml:"AutoFitMergedCells"`
}

type AutoShape

type AutoShape struct {
	AlternativeText         string  `json:"AlternativeText,omitempty" xml:"AlternativeText"`
	Bottom                  int64   `json:"Bottom,omitempty" xml:"Bottom"`
	Top                     int64   `json:"Top,omitempty" xml:"Top"`
	Width                   int64   `json:"Width,omitempty" xml:"Width"`
	HtmlText                string  `json:"HtmlText,omitempty" xml:"HtmlText"`
	TextVerticalAlignment   string  `json:"TextVerticalAlignment,omitempty" xml:"TextVerticalAlignment"`
	AutoShapeType           string  `json:"AutoShapeType,omitempty" xml:"AutoShapeType"`
	IsPrintable             bool    `json:"IsPrintable,omitempty" xml:"IsPrintable"`
	UpperLeftColumn         int64   `json:"UpperLeftColumn,omitempty" xml:"UpperLeftColumn"`
	IsLockAspectRatio       bool    `json:"IsLockAspectRatio,omitempty" xml:"IsLockAspectRatio"`
	IsGroup                 bool    `json:"IsGroup,omitempty" xml:"IsGroup"`
	RotationAngle           float64 `json:"RotationAngle,omitempty" xml:"RotationAngle"`
	ZOrderPosition          int64   `json:"ZOrderPosition,omitempty" xml:"ZOrderPosition"`
	TextHorizontalOverflow  string  `json:"TextHorizontalOverflow,omitempty" xml:"TextHorizontalOverflow"`
	MsoDrawingType          string  `json:"MsoDrawingType,omitempty" xml:"MsoDrawingType"`
	TextOrientationType     string  `json:"TextOrientationType,omitempty" xml:"TextOrientationType"`
	Placement               string  `json:"Placement,omitempty" xml:"Placement"`
	Name                    string  `json:"Name,omitempty" xml:"Name"`
	IsWordArt               bool    `json:"IsWordArt,omitempty" xml:"IsWordArt"`
	LinkedCell              string  `json:"LinkedCell,omitempty" xml:"LinkedCell"`
	UpperLeftRow            int64   `json:"UpperLeftRow,omitempty" xml:"UpperLeftRow"`
	IsLocked                bool    `json:"IsLocked,omitempty" xml:"IsLocked"`
	LowerRightRow           int64   `json:"LowerRightRow,omitempty" xml:"LowerRightRow"`
	IsTextWrapped           bool    `json:"IsTextWrapped,omitempty" xml:"IsTextWrapped"`
	Y                       int64   `json:"Y,omitempty" xml:"Y"`
	X                       int64   `json:"X,omitempty" xml:"X"`
	IsHidden                bool    `json:"IsHidden,omitempty" xml:"IsHidden"`
	Left                    int64   `json:"Left,omitempty" xml:"Left"`
	Right                   int64   `json:"Right,omitempty" xml:"Right"`
	Text                    string  `json:"Text,omitempty" xml:"Text"`
	LowerRightColumn        int64   `json:"LowerRightColumn,omitempty" xml:"LowerRightColumn"`
	Height                  int64   `json:"Height,omitempty" xml:"Height"`
	TextHorizontalAlignment string  `json:"TextHorizontalAlignment,omitempty" xml:"TextHorizontalAlignment"`
	TextVerticalOverflow    string  `json:"TextVerticalOverflow,omitempty" xml:"TextVerticalOverflow"`
	Link                    *Link   `json:"link,omitempty" xml:"link"`
}

type AutoShapeResponse

type AutoShapeResponse struct {
	Status    string     `json:"Status,omitempty" xml:"Status"`
	Code      int32      `json:"Code" xml:"Code"`
	AutoShape *AutoShape `json:"AutoShape,omitempty" xml:"AutoShape"`
}

type AutoShapes

type AutoShapes struct {
	Link          *Link         `json:"link,omitempty" xml:"link"`
	AutoShapeList []LinkElement `json:"AutoShapeList,omitempty" xml:"AutoShapeList"`
}

type AutoShapesResponse

type AutoShapesResponse struct {
	Status     string      `json:"Status,omitempty" xml:"Status"`
	Code       int32       `json:"Code" xml:"Code"`
	AutoShapes *AutoShapes `json:"AutoShapes,omitempty" xml:"AutoShapes"`
}

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Border

type Border struct {
	Color      *Color `json:"Color,omitempty" xml:"Color"`
	BorderType string `json:"BorderType,omitempty" xml:"BorderType"`
	LineStyle  string `json:"LineStyle,omitempty" xml:"LineStyle"`
}

type CalculationOptions

type CalculationOptions struct {
	PrecisionStrategy string `json:"PrecisionStrategy,omitempty" xml:"PrecisionStrategy"`
	IgnoreError       bool   `json:"IgnoreError,omitempty" xml:"IgnoreError"`
	Recursive         bool   `json:"Recursive,omitempty" xml:"Recursive"`
	CalcStackSize     int64  `json:"CalcStackSize,omitempty" xml:"CalcStackSize"`
}

type Cell

type Cell struct {
	Link  *Link        `json:"link,omitempty" xml:"link"`
	Style *LinkElement `json:"Style,omitempty" xml:"Style"`
	// Gets and sets the html string which contains data and some formattings in this cell.
	HtmlString string `json:"HtmlString,omitempty" xml:"HtmlString"`
	// Gets the name of the cell.
	Name string `json:"Name,omitempty" xml:"Name"`
	// Gets column number (zero based) of the cell.
	Column int64 `json:"Column" xml:"Column"`
	// Gets the parent worksheet.
	Worksheet string `json:"Worksheet,omitempty" xml:"Worksheet"`
	// Indicates whethe this cell is part of table formula.
	IsInTable bool `json:"IsInTable" xml:"IsInTable"`
	// Inidicates the cell's formula is and array formula and it is the first cell of the array.
	IsArrayHeader bool   `json:"IsArrayHeader" xml:"IsArrayHeader"`
	Value         string `json:"Value,omitempty" xml:"Value"`
	// Represents if the specified cell contains formula.
	IsFormula bool `json:"IsFormula" xml:"IsFormula"`
	// Indicates if the cell's style is set. If return false, it means this cell has a default cell format.
	IsStyleSet bool `json:"IsStyleSet" xml:"IsStyleSet"`
	// Indicates whether the cell formula is an array formula.
	IsInArray bool `json:"IsInArray" xml:"IsInArray"`
	// Checks if a formula can properly evaluate a result.
	IsErrorValue bool `json:"IsErrorValue" xml:"IsErrorValue"`
	// Checks if a cell is part of a merged range or not.
	IsMerged bool `json:"IsMerged" xml:"IsMerged"`
	// Gets or sets a formula of the Aspose.Cells.Cell.
	Formula string `json:"Formula,omitempty" xml:"Formula"`
	// Specifies a cell value type.
	Type_ string `json:"Type,omitempty" xml:"Type"`
	// Gets row number (zero based) of the cell.
	Row int64 `json:"Row" xml:"Row"`
}

Encapsulates the object that represents a single Workbook cell.

type CellArea

type CellArea struct {
	StartRow    int64 `json:"StartRow" xml:"StartRow"`
	StartColumn int64 `json:"StartColumn" xml:"StartColumn"`
	EndColumn   int64 `json:"EndColumn" xml:"EndColumn"`
	EndRow      int64 `json:"EndRow" xml:"EndRow"`
}

type CellResponse

type CellResponse struct {
	Status string `json:"Status,omitempty" xml:"Status"`
	Code   int32  `json:"Code" xml:"Code"`
	Cell   *Cell  `json:"Cell,omitempty" xml:"Cell"`
}

type CellValue

type CellValue struct {
	RowIndex    int64  `json:"rowIndex,omitempty" xml:"rowIndex"`
	ColumnIndex int64  `json:"columnIndex,omitempty" xml:"columnIndex"`
	Style       *Style `json:"style,omitempty" xml:"style"`
	Type_       string `json:"type,omitempty" xml:"type"`
	Value       string `json:"value,omitempty" xml:"value"`
}

type Cells

type Cells struct {
	Link      *Link         `json:"link,omitempty" xml:"link"`
	Rows      *LinkElement  `json:"Rows,omitempty" xml:"Rows"`
	CellCount int64         `json:"CellCount" xml:"CellCount"`
	MaxRow    int64         `json:"MaxRow" xml:"MaxRow"`
	CellList  []LinkElement `json:"CellList,omitempty" xml:"CellList"`
	// Maximum column index of cell which contains data.
	MaxColumn int64        `json:"MaxColumn" xml:"MaxColumn"`
	Columns   *LinkElement `json:"Columns,omitempty" xml:"Columns"`
}

type CellsApiService

type CellsApiService service

func NewCellsApiService

func NewCellsApiService(clientId string, clientSecret string, opts ...string) *CellsApiService

Create Instance of CellsApiService @param clientId string Client Id @param clientSecret string Client Secret @param basePath string Base service path. Set "" for default @return *CellsApiService

func (*CellsApiService) CellsAutoFilterDeleteWorksheetDateFilter

func (a *CellsApiService) CellsAutoFilterDeleteWorksheetDateFilter(localVarOptionals *CellsAutoFilterDeleteWorksheetDateFilterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterDeleteWorksheetFilter

func (a *CellsApiService) CellsAutoFilterDeleteWorksheetFilter(localVarOptionals *CellsAutoFilterDeleteWorksheetFilterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterGetWorksheetAutoFilter

func (a *CellsApiService) CellsAutoFilterGetWorksheetAutoFilter(localVarOptionals *CellsAutoFilterGetWorksheetAutoFilterOpts) (AutoFilterResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterPostWorksheetAutoFilterRefresh

func (a *CellsApiService) CellsAutoFilterPostWorksheetAutoFilterRefresh(localVarOptionals *CellsAutoFilterPostWorksheetAutoFilterRefreshOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterPostWorksheetMatchBlanks

func (a *CellsApiService) CellsAutoFilterPostWorksheetMatchBlanks(localVarOptionals *CellsAutoFilterPostWorksheetMatchBlanksOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterPostWorksheetMatchNonBlanks

func (a *CellsApiService) CellsAutoFilterPostWorksheetMatchNonBlanks(localVarOptionals *CellsAutoFilterPostWorksheetMatchNonBlanksOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterPutWorksheetColorFilter

func (a *CellsApiService) CellsAutoFilterPutWorksheetColorFilter(localVarOptionals *CellsAutoFilterPutWorksheetColorFilterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterPutWorksheetCustomFilter

func (a *CellsApiService) CellsAutoFilterPutWorksheetCustomFilter(localVarOptionals *CellsAutoFilterPutWorksheetCustomFilterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterPutWorksheetDateFilter

func (a *CellsApiService) CellsAutoFilterPutWorksheetDateFilter(localVarOptionals *CellsAutoFilterPutWorksheetDateFilterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterPutWorksheetDynamicFilter

func (a *CellsApiService) CellsAutoFilterPutWorksheetDynamicFilter(localVarOptionals *CellsAutoFilterPutWorksheetDynamicFilterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterPutWorksheetFilter

func (a *CellsApiService) CellsAutoFilterPutWorksheetFilter(localVarOptionals *CellsAutoFilterPutWorksheetFilterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterPutWorksheetFilterTop10

func (a *CellsApiService) CellsAutoFilterPutWorksheetFilterTop10(localVarOptionals *CellsAutoFilterPutWorksheetFilterTop10Opts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoFilterPutWorksheetIconFilter

func (a *CellsApiService) CellsAutoFilterPutWorksheetIconFilter(localVarOptionals *CellsAutoFilterPutWorksheetIconFilterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsAutoshapesGetWorksheetAutoshape

func (a *CellsApiService) CellsAutoshapesGetWorksheetAutoshape(localVarOptionals *CellsAutoshapesGetWorksheetAutoshapeOpts) ([]byte, *http.Response, error)

func (*CellsApiService) CellsAutoshapesGetWorksheetAutoshapes

func (a *CellsApiService) CellsAutoshapesGetWorksheetAutoshapes(localVarOptionals *CellsAutoshapesGetWorksheetAutoshapesOpts) (AutoShapesResponse, *http.Response, error)

func (*CellsApiService) CellsChartAreaGetChartArea

func (a *CellsApiService) CellsChartAreaGetChartArea(localVarOptionals *CellsChartAreaGetChartAreaOpts) (ChartAreaResponse, *http.Response, error)

func (*CellsApiService) CellsChartAreaGetChartAreaBorder

func (a *CellsApiService) CellsChartAreaGetChartAreaBorder(localVarOptionals *CellsChartAreaGetChartAreaBorderOpts) (LineResponse, *http.Response, error)

func (*CellsApiService) CellsChartAreaGetChartAreaFillFormat

func (a *CellsApiService) CellsChartAreaGetChartAreaFillFormat(localVarOptionals *CellsChartAreaGetChartAreaFillFormatOpts) (FillFormatResponse, *http.Response, error)

func (*CellsApiService) CellsChartsDeleteWorksheetChartLegend

func (a *CellsApiService) CellsChartsDeleteWorksheetChartLegend(localVarOptionals *CellsChartsDeleteWorksheetChartLegendOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsChartsDeleteWorksheetChartTitle

func (a *CellsApiService) CellsChartsDeleteWorksheetChartTitle(localVarOptionals *CellsChartsDeleteWorksheetChartTitleOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsChartsDeleteWorksheetClearCharts

func (a *CellsApiService) CellsChartsDeleteWorksheetClearCharts(localVarOptionals *CellsChartsDeleteWorksheetClearChartsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsChartsDeleteWorksheetDeleteChart

func (a *CellsApiService) CellsChartsDeleteWorksheetDeleteChart(localVarOptionals *CellsChartsDeleteWorksheetDeleteChartOpts) (ChartsResponse, *http.Response, error)

func (*CellsApiService) CellsChartsGetWorksheetChart

func (a *CellsApiService) CellsChartsGetWorksheetChart(localVarOptionals *CellsChartsGetWorksheetChartOpts) ([]byte, *http.Response, error)

func (*CellsApiService) CellsChartsGetWorksheetChartLegend

func (a *CellsApiService) CellsChartsGetWorksheetChartLegend(localVarOptionals *CellsChartsGetWorksheetChartLegendOpts) (LegendResponse, *http.Response, error)

func (*CellsApiService) CellsChartsGetWorksheetChartTitle

func (a *CellsApiService) CellsChartsGetWorksheetChartTitle(localVarOptionals *CellsChartsGetWorksheetChartTitleOpts) (TitleResponse, *http.Response, error)

func (*CellsApiService) CellsChartsGetWorksheetCharts

func (a *CellsApiService) CellsChartsGetWorksheetCharts(localVarOptionals *CellsChartsGetWorksheetChartsOpts) (ChartsResponse, *http.Response, error)

func (*CellsApiService) CellsChartsPostWorksheetChart

func (a *CellsApiService) CellsChartsPostWorksheetChart(localVarOptionals *CellsChartsPostWorksheetChartOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsChartsPostWorksheetChartLegend

func (a *CellsApiService) CellsChartsPostWorksheetChartLegend(localVarOptionals *CellsChartsPostWorksheetChartLegendOpts) (LegendResponse, *http.Response, error)

func (*CellsApiService) CellsChartsPostWorksheetChartTitle

func (a *CellsApiService) CellsChartsPostWorksheetChartTitle(localVarOptionals *CellsChartsPostWorksheetChartTitleOpts) (TitleResponse, *http.Response, error)

func (*CellsApiService) CellsChartsPutWorksheetAddChart

func (a *CellsApiService) CellsChartsPutWorksheetAddChart(localVarOptionals *CellsChartsPutWorksheetAddChartOpts) (ChartsResponse, *http.Response, error)

func (*CellsApiService) CellsChartsPutWorksheetChartLegend

func (a *CellsApiService) CellsChartsPutWorksheetChartLegend(localVarOptionals *CellsChartsPutWorksheetChartLegendOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsChartsPutWorksheetChartTitle

func (a *CellsApiService) CellsChartsPutWorksheetChartTitle(localVarOptionals *CellsChartsPutWorksheetChartTitleOpts) (TitleResponse, *http.Response, error)

func (*CellsApiService) CellsConditionalFormattingsDeleteWorksheetConditionalFormatting

func (a *CellsApiService) CellsConditionalFormattingsDeleteWorksheetConditionalFormatting(localVarOptionals *CellsConditionalFormattingsDeleteWorksheetConditionalFormattingOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsConditionalFormattingsDeleteWorksheetConditionalFormattingArea

func (a *CellsApiService) CellsConditionalFormattingsDeleteWorksheetConditionalFormattingArea(localVarOptionals *CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsConditionalFormattingsDeleteWorksheetConditionalFormattings

func (a *CellsApiService) CellsConditionalFormattingsDeleteWorksheetConditionalFormattings(localVarOptionals *CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsConditionalFormattingsGetWorksheetConditionalFormatting

func (a *CellsApiService) CellsConditionalFormattingsGetWorksheetConditionalFormatting(localVarOptionals *CellsConditionalFormattingsGetWorksheetConditionalFormattingOpts) (ConditionalFormattingResponse, *http.Response, error)

func (*CellsApiService) CellsConditionalFormattingsGetWorksheetConditionalFormattings

func (a *CellsApiService) CellsConditionalFormattingsGetWorksheetConditionalFormattings(localVarOptionals *CellsConditionalFormattingsGetWorksheetConditionalFormattingsOpts) (ConditionalFormattingsResponse, *http.Response, error)

func (*CellsApiService) CellsConditionalFormattingsPutWorksheetConditionalFormatting

func (a *CellsApiService) CellsConditionalFormattingsPutWorksheetConditionalFormatting(localVarOptionals *CellsConditionalFormattingsPutWorksheetConditionalFormattingOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsConditionalFormattingsPutWorksheetFormatCondition

func (a *CellsApiService) CellsConditionalFormattingsPutWorksheetFormatCondition(localVarOptionals *CellsConditionalFormattingsPutWorksheetFormatConditionOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsConditionalFormattingsPutWorksheetFormatConditionArea

func (a *CellsApiService) CellsConditionalFormattingsPutWorksheetFormatConditionArea(localVarOptionals *CellsConditionalFormattingsPutWorksheetFormatConditionAreaOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsConditionalFormattingsPutWorksheetFormatConditionCondition

func (a *CellsApiService) CellsConditionalFormattingsPutWorksheetFormatConditionCondition(localVarOptionals *CellsConditionalFormattingsPutWorksheetFormatConditionConditionOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsDeleteWorksheetColumns

func (a *CellsApiService) CellsDeleteWorksheetColumns(localVarOptionals *CellsDeleteWorksheetColumnsOpts) (ColumnsResponse, *http.Response, error)

func (*CellsApiService) CellsDeleteWorksheetRow

func (a *CellsApiService) CellsDeleteWorksheetRow(localVarOptionals *CellsDeleteWorksheetRowOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsDeleteWorksheetRows

func (a *CellsApiService) CellsDeleteWorksheetRows(localVarOptionals *CellsDeleteWorksheetRowsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsGetCellHtmlString

func (a *CellsApiService) CellsGetCellHtmlString(localVarOptionals *CellsGetCellHtmlStringOpts) (interface{}, *http.Response, error)

func (*CellsApiService) CellsGetWorksheetCell

func (a *CellsApiService) CellsGetWorksheetCell(localVarOptionals *CellsGetWorksheetCellOpts) (interface{}, *http.Response, error)

func (*CellsApiService) CellsGetWorksheetCellStyle

func (a *CellsApiService) CellsGetWorksheetCellStyle(localVarOptionals *CellsGetWorksheetCellStyleOpts) (StyleResponse, *http.Response, error)

func (*CellsApiService) CellsGetWorksheetCells

func (a *CellsApiService) CellsGetWorksheetCells(localVarOptionals *CellsGetWorksheetCellsOpts) (CellsResponse, *http.Response, error)

func (*CellsApiService) CellsGetWorksheetColumn

func (a *CellsApiService) CellsGetWorksheetColumn(localVarOptionals *CellsGetWorksheetColumnOpts) (ColumnResponse, *http.Response, error)

func (*CellsApiService) CellsGetWorksheetColumns

func (a *CellsApiService) CellsGetWorksheetColumns(localVarOptionals *CellsGetWorksheetColumnsOpts) (ColumnsResponse, *http.Response, error)

func (*CellsApiService) CellsGetWorksheetRow

func (a *CellsApiService) CellsGetWorksheetRow(localVarOptionals *CellsGetWorksheetRowOpts) (RowResponse, *http.Response, error)

func (*CellsApiService) CellsGetWorksheetRows

func (a *CellsApiService) CellsGetWorksheetRows(localVarOptionals *CellsGetWorksheetRowsOpts) (RowsResponse, *http.Response, error)
func (a *CellsApiService) CellsHypelinksDeleteWorksheetHyperlink(localVarOptionals *CellsHypelinksDeleteWorksheetHyperlinkOpts) (CellsCloudResponse, *http.Response, error)
func (a *CellsApiService) CellsHypelinksDeleteWorksheetHyperlinks(localVarOptionals *CellsHypelinksDeleteWorksheetHyperlinksOpts) (CellsCloudResponse, *http.Response, error)
func (a *CellsApiService) CellsHypelinksGetWorksheetHyperlink(localVarOptionals *CellsHypelinksGetWorksheetHyperlinkOpts) (HyperlinkResponse, *http.Response, error)
func (a *CellsApiService) CellsHypelinksGetWorksheetHyperlinks(localVarOptionals *CellsHypelinksGetWorksheetHyperlinksOpts) (HyperlinksResponse, *http.Response, error)
func (a *CellsApiService) CellsHypelinksPostWorksheetHyperlink(localVarOptionals *CellsHypelinksPostWorksheetHyperlinkOpts) (HyperlinkResponse, *http.Response, error)
func (a *CellsApiService) CellsHypelinksPutWorksheetHyperlink(localVarOptionals *CellsHypelinksPutWorksheetHyperlinkOpts) (HyperlinkResponse, *http.Response, error)

func (*CellsApiService) CellsListObjectsDeleteWorksheetListObject

func (a *CellsApiService) CellsListObjectsDeleteWorksheetListObject(localVarOptionals *CellsListObjectsDeleteWorksheetListObjectOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsListObjectsDeleteWorksheetListObjects

func (a *CellsApiService) CellsListObjectsDeleteWorksheetListObjects(localVarOptionals *CellsListObjectsDeleteWorksheetListObjectsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsListObjectsGetWorksheetListObject

func (a *CellsApiService) CellsListObjectsGetWorksheetListObject(localVarOptionals *CellsListObjectsGetWorksheetListObjectOpts) (ListObjectResponse, *http.Response, error)

func (*CellsApiService) CellsListObjectsGetWorksheetListObjects

func (a *CellsApiService) CellsListObjectsGetWorksheetListObjects(localVarOptionals *CellsListObjectsGetWorksheetListObjectsOpts) (ListObjectsResponse, *http.Response, error)

func (*CellsApiService) CellsListObjectsPostWorksheetListObject

func (a *CellsApiService) CellsListObjectsPostWorksheetListObject(localVarOptionals *CellsListObjectsPostWorksheetListObjectOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsListObjectsPostWorksheetListObjectConvertToRange

func (a *CellsApiService) CellsListObjectsPostWorksheetListObjectConvertToRange(localVarOptionals *CellsListObjectsPostWorksheetListObjectConvertToRangeOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsListObjectsPostWorksheetListObjectSortTable

func (a *CellsApiService) CellsListObjectsPostWorksheetListObjectSortTable(localVarOptionals *CellsListObjectsPostWorksheetListObjectSortTableOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTable

func (a *CellsApiService) CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTable(localVarOptionals *CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsListObjectsPutWorksheetListObject

func (a *CellsApiService) CellsListObjectsPutWorksheetListObject(localVarOptionals *CellsListObjectsPutWorksheetListObjectOpts) (ListObjectResponse, *http.Response, error)

func (*CellsApiService) CellsOleObjectsDeleteWorksheetOleObject

func (a *CellsApiService) CellsOleObjectsDeleteWorksheetOleObject(localVarOptionals *CellsOleObjectsDeleteWorksheetOleObjectOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsOleObjectsDeleteWorksheetOleObjects

func (a *CellsApiService) CellsOleObjectsDeleteWorksheetOleObjects(localVarOptionals *CellsOleObjectsDeleteWorksheetOleObjectsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsOleObjectsGetWorksheetOleObject

func (a *CellsApiService) CellsOleObjectsGetWorksheetOleObject(localVarOptionals *CellsOleObjectsGetWorksheetOleObjectOpts) ([]byte, *http.Response, error)

func (*CellsApiService) CellsOleObjectsGetWorksheetOleObjects

func (a *CellsApiService) CellsOleObjectsGetWorksheetOleObjects(localVarOptionals *CellsOleObjectsGetWorksheetOleObjectsOpts) (OleObjectsResponse, *http.Response, error)

func (*CellsApiService) CellsOleObjectsPostUpdateWorksheetOleObject

func (a *CellsApiService) CellsOleObjectsPostUpdateWorksheetOleObject(localVarOptionals *CellsOleObjectsPostUpdateWorksheetOleObjectOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsOleObjectsPutWorksheetOleObject

func (a *CellsApiService) CellsOleObjectsPutWorksheetOleObject(localVarOptionals *CellsOleObjectsPutWorksheetOleObjectOpts) (OleObjectResponse, *http.Response, error)

func (*CellsApiService) CellsPageBreaksDeleteHorizontalPageBreak

func (a *CellsApiService) CellsPageBreaksDeleteHorizontalPageBreak(localVarOptionals *CellsPageBreaksDeleteHorizontalPageBreakOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPageBreaksDeleteHorizontalPageBreaks

func (a *CellsApiService) CellsPageBreaksDeleteHorizontalPageBreaks(localVarOptionals *CellsPageBreaksDeleteHorizontalPageBreaksOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPageBreaksDeleteVerticalPageBreak

func (a *CellsApiService) CellsPageBreaksDeleteVerticalPageBreak(localVarOptionals *CellsPageBreaksDeleteVerticalPageBreakOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPageBreaksDeleteVerticalPageBreaks

func (a *CellsApiService) CellsPageBreaksDeleteVerticalPageBreaks(localVarOptionals *CellsPageBreaksDeleteVerticalPageBreaksOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPageBreaksGetHorizontalPageBreak

func (a *CellsApiService) CellsPageBreaksGetHorizontalPageBreak(localVarOptionals *CellsPageBreaksGetHorizontalPageBreakOpts) (HorizontalPageBreakResponse, *http.Response, error)

func (*CellsApiService) CellsPageBreaksGetHorizontalPageBreaks

func (a *CellsApiService) CellsPageBreaksGetHorizontalPageBreaks(localVarOptionals *CellsPageBreaksGetHorizontalPageBreaksOpts) (HorizontalPageBreaksResponse, *http.Response, error)

func (*CellsApiService) CellsPageBreaksGetVerticalPageBreak

func (a *CellsApiService) CellsPageBreaksGetVerticalPageBreak(localVarOptionals *CellsPageBreaksGetVerticalPageBreakOpts) (VerticalPageBreakResponse, *http.Response, error)

func (*CellsApiService) CellsPageBreaksGetVerticalPageBreaks

func (a *CellsApiService) CellsPageBreaksGetVerticalPageBreaks(localVarOptionals *CellsPageBreaksGetVerticalPageBreaksOpts) (VerticalPageBreaksResponse, *http.Response, error)

func (*CellsApiService) CellsPageBreaksPutHorizontalPageBreak

func (a *CellsApiService) CellsPageBreaksPutHorizontalPageBreak(localVarOptionals *CellsPageBreaksPutHorizontalPageBreakOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPageBreaksPutVerticalPageBreak

func (a *CellsApiService) CellsPageBreaksPutVerticalPageBreak(localVarOptionals *CellsPageBreaksPutVerticalPageBreakOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPageSetupDeleteHeaderFooter

func (a *CellsApiService) CellsPageSetupDeleteHeaderFooter(localVarOptionals *CellsPageSetupDeleteHeaderFooterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPageSetupGetFooter

func (a *CellsApiService) CellsPageSetupGetFooter(localVarOptionals *CellsPageSetupGetFooterOpts) (PageSectionsResponse, *http.Response, error)

func (*CellsApiService) CellsPageSetupGetHeader

func (a *CellsApiService) CellsPageSetupGetHeader(localVarOptionals *CellsPageSetupGetHeaderOpts) (PageSectionsResponse, *http.Response, error)

func (*CellsApiService) CellsPageSetupGetPageSetup

func (a *CellsApiService) CellsPageSetupGetPageSetup(localVarOptionals *CellsPageSetupGetPageSetupOpts) (PageSetupResponse, *http.Response, error)

func (*CellsApiService) CellsPageSetupPostFooter

func (a *CellsApiService) CellsPageSetupPostFooter(localVarOptionals *CellsPageSetupPostFooterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPageSetupPostHeader

func (a *CellsApiService) CellsPageSetupPostHeader(localVarOptionals *CellsPageSetupPostHeaderOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPageSetupPostPageSetup

func (a *CellsApiService) CellsPageSetupPostPageSetup(localVarOptionals *CellsPageSetupPostPageSetupOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPicturesDeleteWorksheetPicture

func (a *CellsApiService) CellsPicturesDeleteWorksheetPicture(localVarOptionals *CellsPicturesDeleteWorksheetPictureOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPicturesDeleteWorksheetPictures

func (a *CellsApiService) CellsPicturesDeleteWorksheetPictures(localVarOptionals *CellsPicturesDeleteWorksheetPicturesOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPicturesGetWorksheetPicture

func (a *CellsApiService) CellsPicturesGetWorksheetPicture(localVarOptionals *CellsPicturesGetWorksheetPictureOpts) ([]byte, *http.Response, error)

func (*CellsApiService) CellsPicturesGetWorksheetPictures

func (a *CellsApiService) CellsPicturesGetWorksheetPictures(localVarOptionals *CellsPicturesGetWorksheetPicturesOpts) (PicturesResponse, *http.Response, error)

func (*CellsApiService) CellsPicturesPostWorksheetPicture

func (a *CellsApiService) CellsPicturesPostWorksheetPicture(localVarOptionals *CellsPicturesPostWorksheetPictureOpts) (PictureResponse, *http.Response, error)

func (*CellsApiService) CellsPicturesPutWorksheetAddPicture

func (a *CellsApiService) CellsPicturesPutWorksheetAddPicture(localVarOptionals *CellsPicturesPutWorksheetAddPictureOpts) (PicturesResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesDeletePivotTableField

func (a *CellsApiService) CellsPivotTablesDeletePivotTableField(localVarOptionals *CellsPivotTablesDeletePivotTableFieldOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesDeleteWorksheetPivotTable

func (a *CellsApiService) CellsPivotTablesDeleteWorksheetPivotTable(localVarOptionals *CellsPivotTablesDeleteWorksheetPivotTableOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesDeleteWorksheetPivotTableFilter

func (a *CellsApiService) CellsPivotTablesDeleteWorksheetPivotTableFilter(localVarOptionals *CellsPivotTablesDeleteWorksheetPivotTableFilterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesDeleteWorksheetPivotTableFilters

func (a *CellsApiService) CellsPivotTablesDeleteWorksheetPivotTableFilters(localVarOptionals *CellsPivotTablesDeleteWorksheetPivotTableFiltersOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesDeleteWorksheetPivotTables

func (a *CellsApiService) CellsPivotTablesDeleteWorksheetPivotTables(localVarOptionals *CellsPivotTablesDeleteWorksheetPivotTablesOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesGetPivotTableField

func (a *CellsApiService) CellsPivotTablesGetPivotTableField(localVarOptionals *CellsPivotTablesGetPivotTableFieldOpts) (PivotFieldResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesGetWorksheetPivotTable

func (a *CellsApiService) CellsPivotTablesGetWorksheetPivotTable(localVarOptionals *CellsPivotTablesGetWorksheetPivotTableOpts) (PivotTableResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesGetWorksheetPivotTableFilter

func (a *CellsApiService) CellsPivotTablesGetWorksheetPivotTableFilter(localVarOptionals *CellsPivotTablesGetWorksheetPivotTableFilterOpts) (PivotFilterResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesGetWorksheetPivotTableFilters

func (a *CellsApiService) CellsPivotTablesGetWorksheetPivotTableFilters(localVarOptionals *CellsPivotTablesGetWorksheetPivotTableFiltersOpts) (PivotFiltersResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesGetWorksheetPivotTables

func (a *CellsApiService) CellsPivotTablesGetWorksheetPivotTables(localVarOptionals *CellsPivotTablesGetWorksheetPivotTablesOpts) (PivotTablesResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesPostPivotTableCellStyle

func (a *CellsApiService) CellsPivotTablesPostPivotTableCellStyle(localVarOptionals *CellsPivotTablesPostPivotTableCellStyleOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesPostPivotTableFieldHideItem

func (a *CellsApiService) CellsPivotTablesPostPivotTableFieldHideItem(localVarOptionals *CellsPivotTablesPostPivotTableFieldHideItemOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesPostPivotTableFieldMoveTo

func (a *CellsApiService) CellsPivotTablesPostPivotTableFieldMoveTo(localVarOptionals *CellsPivotTablesPostPivotTableFieldMoveToOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesPostPivotTableStyle

func (a *CellsApiService) CellsPivotTablesPostPivotTableStyle(localVarOptionals *CellsPivotTablesPostPivotTableStyleOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesPostPivotTableUpdatePivotField added in v20.9.0

func (a *CellsApiService) CellsPivotTablesPostPivotTableUpdatePivotField(localVarOptionals *CellsPivotTablesPostPivotTableUpdatePivotFieldOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesPostPivotTableUpdatePivotFields added in v20.9.0

func (a *CellsApiService) CellsPivotTablesPostPivotTableUpdatePivotFields(localVarOptionals *CellsPivotTablesPostPivotTableUpdatePivotFieldsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesPostWorksheetPivotTableCalculate

func (a *CellsApiService) CellsPivotTablesPostWorksheetPivotTableCalculate(localVarOptionals *CellsPivotTablesPostWorksheetPivotTableCalculateOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesPostWorksheetPivotTableMove

func (a *CellsApiService) CellsPivotTablesPostWorksheetPivotTableMove(localVarOptionals *CellsPivotTablesPostWorksheetPivotTableMoveOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesPutPivotTableField

func (a *CellsApiService) CellsPivotTablesPutPivotTableField(localVarOptionals *CellsPivotTablesPutPivotTableFieldOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesPutWorksheetPivotTable

func (a *CellsApiService) CellsPivotTablesPutWorksheetPivotTable(localVarOptionals *CellsPivotTablesPutWorksheetPivotTableOpts) (PivotTableResponse, *http.Response, error)

func (*CellsApiService) CellsPivotTablesPutWorksheetPivotTableFilter

func (a *CellsApiService) CellsPivotTablesPutWorksheetPivotTableFilter(localVarOptionals *CellsPivotTablesPutWorksheetPivotTableFilterOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostCellCalculate

func (a *CellsApiService) CellsPostCellCalculate(localVarOptionals *CellsPostCellCalculateOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostCellCharacters

func (a *CellsApiService) CellsPostCellCharacters(localVarOptionals *CellsPostCellCharactersOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostClearContents

func (a *CellsApiService) CellsPostClearContents(localVarOptionals *CellsPostClearContentsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostClearFormats

func (a *CellsApiService) CellsPostClearFormats(localVarOptionals *CellsPostClearFormatsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostColumnStyle

func (a *CellsApiService) CellsPostColumnStyle(localVarOptionals *CellsPostColumnStyleOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostCopyCellIntoCell

func (a *CellsApiService) CellsPostCopyCellIntoCell(localVarOptionals *CellsPostCopyCellIntoCellOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostCopyWorksheetColumns

func (a *CellsApiService) CellsPostCopyWorksheetColumns(localVarOptionals *CellsPostCopyWorksheetColumnsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostCopyWorksheetRows

func (a *CellsApiService) CellsPostCopyWorksheetRows(localVarOptionals *CellsPostCopyWorksheetRowsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostGroupWorksheetColumns

func (a *CellsApiService) CellsPostGroupWorksheetColumns(localVarOptionals *CellsPostGroupWorksheetColumnsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostGroupWorksheetRows

func (a *CellsApiService) CellsPostGroupWorksheetRows(localVarOptionals *CellsPostGroupWorksheetRowsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostHideWorksheetColumns

func (a *CellsApiService) CellsPostHideWorksheetColumns(localVarOptionals *CellsPostHideWorksheetColumnsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostHideWorksheetRows

func (a *CellsApiService) CellsPostHideWorksheetRows(localVarOptionals *CellsPostHideWorksheetRowsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostRowStyle

func (a *CellsApiService) CellsPostRowStyle(localVarOptionals *CellsPostRowStyleOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostSetCellHtmlString

func (a *CellsApiService) CellsPostSetCellHtmlString(localVarOptionals *CellsPostSetCellHtmlStringOpts) (CellResponse, *http.Response, error)

func (*CellsApiService) CellsPostSetCellRangeValue

func (a *CellsApiService) CellsPostSetCellRangeValue(localVarOptionals *CellsPostSetCellRangeValueOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostSetWorksheetColumnWidth

func (a *CellsApiService) CellsPostSetWorksheetColumnWidth(localVarOptionals *CellsPostSetWorksheetColumnWidthOpts) (ColumnResponse, *http.Response, error)

func (*CellsApiService) CellsPostUngroupWorksheetColumns

func (a *CellsApiService) CellsPostUngroupWorksheetColumns(localVarOptionals *CellsPostUngroupWorksheetColumnsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostUngroupWorksheetRows

func (a *CellsApiService) CellsPostUngroupWorksheetRows(localVarOptionals *CellsPostUngroupWorksheetRowsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostUnhideWorksheetColumns

func (a *CellsApiService) CellsPostUnhideWorksheetColumns(localVarOptionals *CellsPostUnhideWorksheetColumnsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostUnhideWorksheetRows

func (a *CellsApiService) CellsPostUnhideWorksheetRows(localVarOptionals *CellsPostUnhideWorksheetRowsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostUpdateWorksheetCellStyle

func (a *CellsApiService) CellsPostUpdateWorksheetCellStyle(localVarOptionals *CellsPostUpdateWorksheetCellStyleOpts) (StyleResponse, *http.Response, error)

func (*CellsApiService) CellsPostUpdateWorksheetRangeStyle

func (a *CellsApiService) CellsPostUpdateWorksheetRangeStyle(localVarOptionals *CellsPostUpdateWorksheetRangeStyleOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostUpdateWorksheetRow

func (a *CellsApiService) CellsPostUpdateWorksheetRow(localVarOptionals *CellsPostUpdateWorksheetRowOpts) (RowResponse, *http.Response, error)

func (*CellsApiService) CellsPostWorksheetCellSetValue

func (a *CellsApiService) CellsPostWorksheetCellSetValue(localVarOptionals *CellsPostWorksheetCellSetValueOpts) (CellResponse, *http.Response, error)

func (*CellsApiService) CellsPostWorksheetMerge

func (a *CellsApiService) CellsPostWorksheetMerge(localVarOptionals *CellsPostWorksheetMergeOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPostWorksheetUnmerge

func (a *CellsApiService) CellsPostWorksheetUnmerge(localVarOptionals *CellsPostWorksheetUnmergeOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsPropertiesDeleteDocumentProperties

func (a *CellsApiService) CellsPropertiesDeleteDocumentProperties(localVarOptionals *CellsPropertiesDeleteDocumentPropertiesOpts) (CellsDocumentPropertiesResponse, *http.Response, error)

func (*CellsApiService) CellsPropertiesDeleteDocumentProperty

func (a *CellsApiService) CellsPropertiesDeleteDocumentProperty(localVarOptionals *CellsPropertiesDeleteDocumentPropertyOpts) (CellsDocumentPropertiesResponse, *http.Response, error)

func (*CellsApiService) CellsPropertiesGetDocumentProperties

func (a *CellsApiService) CellsPropertiesGetDocumentProperties(localVarOptionals *CellsPropertiesGetDocumentPropertiesOpts) (CellsDocumentPropertiesResponse, *http.Response, error)

func (*CellsApiService) CellsPropertiesGetDocumentProperty

func (a *CellsApiService) CellsPropertiesGetDocumentProperty(localVarOptionals *CellsPropertiesGetDocumentPropertyOpts) (CellsDocumentPropertyResponse, *http.Response, error)

func (*CellsApiService) CellsPropertiesPutDocumentProperty

func (a *CellsApiService) CellsPropertiesPutDocumentProperty(localVarOptionals *CellsPropertiesPutDocumentPropertyOpts) (CellsDocumentPropertyResponse, *http.Response, error)

func (*CellsApiService) CellsPutInsertWorksheetColumns

func (a *CellsApiService) CellsPutInsertWorksheetColumns(localVarOptionals *CellsPutInsertWorksheetColumnsOpts) (ColumnsResponse, *http.Response, error)

func (*CellsApiService) CellsPutInsertWorksheetRow

func (a *CellsApiService) CellsPutInsertWorksheetRow(localVarOptionals *CellsPutInsertWorksheetRowOpts) (RowResponse, *http.Response, error)

func (*CellsApiService) CellsPutInsertWorksheetRows

func (a *CellsApiService) CellsPutInsertWorksheetRows(localVarOptionals *CellsPutInsertWorksheetRowsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsRangesGetWorksheetCellsRangeValue

func (a *CellsApiService) CellsRangesGetWorksheetCellsRangeValue(localVarOptionals *CellsRangesGetWorksheetCellsRangeValueOpts) (RangeValueResponse, *http.Response, error)

func (*CellsApiService) CellsRangesPostWorksheetCellsRangeColumnWidth

func (a *CellsApiService) CellsRangesPostWorksheetCellsRangeColumnWidth(localVarOptionals *CellsRangesPostWorksheetCellsRangeColumnWidthOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsRangesPostWorksheetCellsRangeMerge

func (a *CellsApiService) CellsRangesPostWorksheetCellsRangeMerge(localVarOptionals *CellsRangesPostWorksheetCellsRangeMergeOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsRangesPostWorksheetCellsRangeMoveTo

func (a *CellsApiService) CellsRangesPostWorksheetCellsRangeMoveTo(localVarOptionals *CellsRangesPostWorksheetCellsRangeMoveToOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsRangesPostWorksheetCellsRangeOutlineBorder

func (a *CellsApiService) CellsRangesPostWorksheetCellsRangeOutlineBorder(localVarOptionals *CellsRangesPostWorksheetCellsRangeOutlineBorderOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsRangesPostWorksheetCellsRangeRowHeight

func (a *CellsApiService) CellsRangesPostWorksheetCellsRangeRowHeight(localVarOptionals *CellsRangesPostWorksheetCellsRangeRowHeightOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsRangesPostWorksheetCellsRangeStyle

func (a *CellsApiService) CellsRangesPostWorksheetCellsRangeStyle(localVarOptionals *CellsRangesPostWorksheetCellsRangeStyleOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsRangesPostWorksheetCellsRangeUnmerge

func (a *CellsApiService) CellsRangesPostWorksheetCellsRangeUnmerge(localVarOptionals *CellsRangesPostWorksheetCellsRangeUnmergeOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsRangesPostWorksheetCellsRangeValue

func (a *CellsApiService) CellsRangesPostWorksheetCellsRangeValue(localVarOptionals *CellsRangesPostWorksheetCellsRangeValueOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsRangesPostWorksheetCellsRanges

func (a *CellsApiService) CellsRangesPostWorksheetCellsRanges(localVarOptionals *CellsRangesPostWorksheetCellsRangesOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsSaveAsPostDocumentSaveAs

func (a *CellsApiService) CellsSaveAsPostDocumentSaveAs(localVarOptionals *CellsSaveAsPostDocumentSaveAsOpts) (SaveResponse, *http.Response, error)

func (*CellsApiService) CellsShapesDeleteWorksheetShape

func (a *CellsApiService) CellsShapesDeleteWorksheetShape(localVarOptionals *CellsShapesDeleteWorksheetShapeOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsShapesDeleteWorksheetShapes

func (a *CellsApiService) CellsShapesDeleteWorksheetShapes(localVarOptionals *CellsShapesDeleteWorksheetShapesOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsShapesGetWorksheetShape

func (a *CellsApiService) CellsShapesGetWorksheetShape(localVarOptionals *CellsShapesGetWorksheetShapeOpts) (ShapeResponse, *http.Response, error)

func (*CellsApiService) CellsShapesGetWorksheetShapes

func (a *CellsApiService) CellsShapesGetWorksheetShapes(localVarOptionals *CellsShapesGetWorksheetShapesOpts) (ShapesResponse, *http.Response, error)

func (*CellsApiService) CellsShapesPostWorksheetShape

func (a *CellsApiService) CellsShapesPostWorksheetShape(localVarOptionals *CellsShapesPostWorksheetShapeOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsShapesPutWorksheetShape

func (a *CellsApiService) CellsShapesPutWorksheetShape(localVarOptionals *CellsShapesPutWorksheetShapeOpts) (ShapeResponse, *http.Response, error)

func (*CellsApiService) CellsSparklineGroupsDeleteWorksheetSparklineGroup added in v20.9.0

func (a *CellsApiService) CellsSparklineGroupsDeleteWorksheetSparklineGroup(localVarOptionals *CellsSparklineGroupsDeleteWorksheetSparklineGroupOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsSparklineGroupsDeleteWorksheetSparklineGroups added in v20.9.0

func (a *CellsApiService) CellsSparklineGroupsDeleteWorksheetSparklineGroups(localVarOptionals *CellsSparklineGroupsDeleteWorksheetSparklineGroupsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsSparklineGroupsGetWorksheetSparklineGroup added in v20.9.0

func (a *CellsApiService) CellsSparklineGroupsGetWorksheetSparklineGroup(localVarOptionals *CellsSparklineGroupsGetWorksheetSparklineGroupOpts) (SparklineGroupResponse, *http.Response, error)

func (*CellsApiService) CellsSparklineGroupsGetWorksheetSparklineGroups added in v20.9.0

func (a *CellsApiService) CellsSparklineGroupsGetWorksheetSparklineGroups(localVarOptionals *CellsSparklineGroupsGetWorksheetSparklineGroupsOpts) (SparklineGroupsResponse, *http.Response, error)

func (*CellsApiService) CellsSparklineGroupsPostWorksheetSparklineGroup added in v20.9.0

func (a *CellsApiService) CellsSparklineGroupsPostWorksheetSparklineGroup(localVarOptionals *CellsSparklineGroupsPostWorksheetSparklineGroupOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsSparklineGroupsPutWorksheetSparklineGroup added in v20.9.0

func (a *CellsApiService) CellsSparklineGroupsPutWorksheetSparklineGroup(localVarOptionals *CellsSparklineGroupsPutWorksheetSparklineGroupOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsTaskPostRunTask

func (a *CellsApiService) CellsTaskPostRunTask(localVarOptionals *CellsTaskPostRunTaskOpts) (interface{}, *http.Response, error)

func (*CellsApiService) CellsWorkbookDeleteDecryptDocument

func (a *CellsApiService) CellsWorkbookDeleteDecryptDocument(localVarOptionals *CellsWorkbookDeleteDecryptDocumentOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookDeleteDocumentUnprotectFromChanges

func (a *CellsApiService) CellsWorkbookDeleteDocumentUnprotectFromChanges(localVarOptionals *CellsWorkbookDeleteDocumentUnprotectFromChangesOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookDeleteUnprotectDocument

func (a *CellsApiService) CellsWorkbookDeleteUnprotectDocument(localVarOptionals *CellsWorkbookDeleteUnprotectDocumentOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookDeleteWorkbookBackground

func (a *CellsApiService) CellsWorkbookDeleteWorkbookBackground(localVarOptionals *CellsWorkbookDeleteWorkbookBackgroundOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookDeleteWorkbookName

func (a *CellsApiService) CellsWorkbookDeleteWorkbookName(localVarOptionals *CellsWorkbookDeleteWorkbookNameOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookDeleteWorkbookNames

func (a *CellsApiService) CellsWorkbookDeleteWorkbookNames(localVarOptionals *CellsWorkbookDeleteWorkbookNamesOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookGetWorkbook

func (a *CellsApiService) CellsWorkbookGetWorkbook(localVarOptionals *CellsWorkbookGetWorkbookOpts) ([]byte, *http.Response, error)

func (*CellsApiService) CellsWorkbookGetWorkbookDefaultStyle

func (a *CellsApiService) CellsWorkbookGetWorkbookDefaultStyle(localVarOptionals *CellsWorkbookGetWorkbookDefaultStyleOpts) (StyleResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookGetWorkbookName

func (a *CellsApiService) CellsWorkbookGetWorkbookName(localVarOptionals *CellsWorkbookGetWorkbookNameOpts) (NameResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookGetWorkbookNameValue

func (a *CellsApiService) CellsWorkbookGetWorkbookNameValue(localVarOptionals *CellsWorkbookGetWorkbookNameValueOpts) (RangeValueResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookGetWorkbookNames

func (a *CellsApiService) CellsWorkbookGetWorkbookNames(localVarOptionals *CellsWorkbookGetWorkbookNamesOpts) (NamesResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookGetWorkbookSettings

func (a *CellsApiService) CellsWorkbookGetWorkbookSettings(localVarOptionals *CellsWorkbookGetWorkbookSettingsOpts) (WorkbookSettingsResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookGetWorkbookTextItems

func (a *CellsApiService) CellsWorkbookGetWorkbookTextItems(localVarOptionals *CellsWorkbookGetWorkbookTextItemsOpts) (TextItemsResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPostAutofitWorkbookRows

func (a *CellsApiService) CellsWorkbookPostAutofitWorkbookRows(localVarOptionals *CellsWorkbookPostAutofitWorkbookRowsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPostEncryptDocument

func (a *CellsApiService) CellsWorkbookPostEncryptDocument(localVarOptionals *CellsWorkbookPostEncryptDocumentOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPostImportData

func (a *CellsApiService) CellsWorkbookPostImportData(localVarOptionals *CellsWorkbookPostImportDataOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPostProtectDocument

func (a *CellsApiService) CellsWorkbookPostProtectDocument(localVarOptionals *CellsWorkbookPostProtectDocumentOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPostWorkbookCalculateFormula

func (a *CellsApiService) CellsWorkbookPostWorkbookCalculateFormula(localVarOptionals *CellsWorkbookPostWorkbookCalculateFormulaOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPostWorkbookGetSmartMarkerResult

func (a *CellsApiService) CellsWorkbookPostWorkbookGetSmartMarkerResult(localVarOptionals *CellsWorkbookPostWorkbookGetSmartMarkerResultOpts) ([]byte, *http.Response, error)

func (*CellsApiService) CellsWorkbookPostWorkbookSettings

func (a *CellsApiService) CellsWorkbookPostWorkbookSettings(localVarOptionals *CellsWorkbookPostWorkbookSettingsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPostWorkbookSplit

func (a *CellsApiService) CellsWorkbookPostWorkbookSplit(localVarOptionals *CellsWorkbookPostWorkbookSplitOpts) (SplitResultResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPostWorkbooksMerge

func (a *CellsApiService) CellsWorkbookPostWorkbooksMerge(localVarOptionals *CellsWorkbookPostWorkbooksMergeOpts) (WorkbookResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPostWorkbooksTextReplace

func (a *CellsApiService) CellsWorkbookPostWorkbooksTextReplace(localVarOptionals *CellsWorkbookPostWorkbooksTextReplaceOpts) (WorkbookReplaceResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPostWorkbooksTextSearch

func (a *CellsApiService) CellsWorkbookPostWorkbooksTextSearch(localVarOptionals *CellsWorkbookPostWorkbooksTextSearchOpts) (TextItemsResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPutConvertWorkbook

func (a *CellsApiService) CellsWorkbookPutConvertWorkbook(workbook *os.File, localVarOptionals *CellsWorkbookPutConvertWorkbookOpts) ([]byte, *http.Response, error)

func (*CellsApiService) CellsWorkbookPutDocumentProtectFromChanges

func (a *CellsApiService) CellsWorkbookPutDocumentProtectFromChanges(localVarOptionals *CellsWorkbookPutDocumentProtectFromChangesOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPutWorkbookBackground

func (a *CellsApiService) CellsWorkbookPutWorkbookBackground(localVarOptionals *CellsWorkbookPutWorkbookBackgroundOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPutWorkbookCreate

func (a *CellsApiService) CellsWorkbookPutWorkbookCreate(localVarOptionals *CellsWorkbookPutWorkbookCreateOpts) (WorkbookResponse, *http.Response, error)

func (*CellsApiService) CellsWorkbookPutWorkbookWaterMarker

func (a *CellsApiService) CellsWorkbookPutWorkbookWaterMarker(localVarOptionals *CellsWorkbookPutWorkbookWaterMarkerOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetValidationsDeleteWorksheetValidation

func (a *CellsApiService) CellsWorksheetValidationsDeleteWorksheetValidation(localVarOptionals *CellsWorksheetValidationsDeleteWorksheetValidationOpts) (ValidationResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetValidationsDeleteWorksheetValidations

func (a *CellsApiService) CellsWorksheetValidationsDeleteWorksheetValidations(localVarOptionals *CellsWorksheetValidationsDeleteWorksheetValidationsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetValidationsGetWorksheetValidation

func (a *CellsApiService) CellsWorksheetValidationsGetWorksheetValidation(localVarOptionals *CellsWorksheetValidationsGetWorksheetValidationOpts) (ValidationResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetValidationsGetWorksheetValidations

func (a *CellsApiService) CellsWorksheetValidationsGetWorksheetValidations(localVarOptionals *CellsWorksheetValidationsGetWorksheetValidationsOpts) (ValidationsResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetValidationsPostWorksheetValidation

func (a *CellsApiService) CellsWorksheetValidationsPostWorksheetValidation(localVarOptionals *CellsWorksheetValidationsPostWorksheetValidationOpts) (ValidationResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetValidationsPutWorksheetValidation

func (a *CellsApiService) CellsWorksheetValidationsPutWorksheetValidation(localVarOptionals *CellsWorksheetValidationsPutWorksheetValidationOpts) (ValidationResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsDeleteUnprotectWorksheet

func (a *CellsApiService) CellsWorksheetsDeleteUnprotectWorksheet(localVarOptionals *CellsWorksheetsDeleteUnprotectWorksheetOpts) (WorksheetResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsDeleteWorksheet

func (a *CellsApiService) CellsWorksheetsDeleteWorksheet(localVarOptionals *CellsWorksheetsDeleteWorksheetOpts) (WorksheetsResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsDeleteWorksheetBackground

func (a *CellsApiService) CellsWorksheetsDeleteWorksheetBackground(localVarOptionals *CellsWorksheetsDeleteWorksheetBackgroundOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsDeleteWorksheetComment

func (a *CellsApiService) CellsWorksheetsDeleteWorksheetComment(localVarOptionals *CellsWorksheetsDeleteWorksheetCommentOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsDeleteWorksheetComments

func (a *CellsApiService) CellsWorksheetsDeleteWorksheetComments(localVarOptionals *CellsWorksheetsDeleteWorksheetCommentsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsDeleteWorksheetFreezePanes

func (a *CellsApiService) CellsWorksheetsDeleteWorksheetFreezePanes(localVarOptionals *CellsWorksheetsDeleteWorksheetFreezePanesOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsGetNamedRanges

func (a *CellsApiService) CellsWorksheetsGetNamedRanges(localVarOptionals *CellsWorksheetsGetNamedRangesOpts) (RangesResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsGetWorksheet

func (a *CellsApiService) CellsWorksheetsGetWorksheet(localVarOptionals *CellsWorksheetsGetWorksheetOpts) ([]byte, *http.Response, error)

func (*CellsApiService) CellsWorksheetsGetWorksheetCalculateFormula

func (a *CellsApiService) CellsWorksheetsGetWorksheetCalculateFormula(localVarOptionals *CellsWorksheetsGetWorksheetCalculateFormulaOpts) (SingleValueResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsGetWorksheetComment

func (a *CellsApiService) CellsWorksheetsGetWorksheetComment(localVarOptionals *CellsWorksheetsGetWorksheetCommentOpts) (CommentResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsGetWorksheetComments

func (a *CellsApiService) CellsWorksheetsGetWorksheetComments(localVarOptionals *CellsWorksheetsGetWorksheetCommentsOpts) (CommentsResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsGetWorksheetMergedCell

func (a *CellsApiService) CellsWorksheetsGetWorksheetMergedCell(localVarOptionals *CellsWorksheetsGetWorksheetMergedCellOpts) (MergedCellResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsGetWorksheetMergedCells

func (a *CellsApiService) CellsWorksheetsGetWorksheetMergedCells(localVarOptionals *CellsWorksheetsGetWorksheetMergedCellsOpts) (MergedCellsResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsGetWorksheetTextItems

func (a *CellsApiService) CellsWorksheetsGetWorksheetTextItems(localVarOptionals *CellsWorksheetsGetWorksheetTextItemsOpts) (TextItemsResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsGetWorksheets

func (a *CellsApiService) CellsWorksheetsGetWorksheets(localVarOptionals *CellsWorksheetsGetWorksheetsOpts) (WorksheetsResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostAutofitWorksheetColumns

func (a *CellsApiService) CellsWorksheetsPostAutofitWorksheetColumns(localVarOptionals *CellsWorksheetsPostAutofitWorksheetColumnsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostAutofitWorksheetRow

func (a *CellsApiService) CellsWorksheetsPostAutofitWorksheetRow(localVarOptionals *CellsWorksheetsPostAutofitWorksheetRowOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostAutofitWorksheetRows

func (a *CellsApiService) CellsWorksheetsPostAutofitWorksheetRows(localVarOptionals *CellsWorksheetsPostAutofitWorksheetRowsOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostCopyWorksheet

func (a *CellsApiService) CellsWorksheetsPostCopyWorksheet(localVarOptionals *CellsWorksheetsPostCopyWorksheetOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostMoveWorksheet

func (a *CellsApiService) CellsWorksheetsPostMoveWorksheet(localVarOptionals *CellsWorksheetsPostMoveWorksheetOpts) (WorksheetsResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostRenameWorksheet

func (a *CellsApiService) CellsWorksheetsPostRenameWorksheet(localVarOptionals *CellsWorksheetsPostRenameWorksheetOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostUpdateWorksheetProperty

func (a *CellsApiService) CellsWorksheetsPostUpdateWorksheetProperty(localVarOptionals *CellsWorksheetsPostUpdateWorksheetPropertyOpts) (WorksheetResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostUpdateWorksheetZoom

func (a *CellsApiService) CellsWorksheetsPostUpdateWorksheetZoom(localVarOptionals *CellsWorksheetsPostUpdateWorksheetZoomOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostWorksheetComment

func (a *CellsApiService) CellsWorksheetsPostWorksheetComment(localVarOptionals *CellsWorksheetsPostWorksheetCommentOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostWorksheetRangeSort

func (a *CellsApiService) CellsWorksheetsPostWorksheetRangeSort(localVarOptionals *CellsWorksheetsPostWorksheetRangeSortOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostWorksheetTextSearch

func (a *CellsApiService) CellsWorksheetsPostWorksheetTextSearch(localVarOptionals *CellsWorksheetsPostWorksheetTextSearchOpts) (TextItemsResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPostWorsheetTextReplace

func (a *CellsApiService) CellsWorksheetsPostWorsheetTextReplace(localVarOptionals *CellsWorksheetsPostWorsheetTextReplaceOpts) (WorksheetReplaceResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPutAddNewWorksheet

func (a *CellsApiService) CellsWorksheetsPutAddNewWorksheet(localVarOptionals *CellsWorksheetsPutAddNewWorksheetOpts) (WorksheetsResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPutChangeVisibilityWorksheet

func (a *CellsApiService) CellsWorksheetsPutChangeVisibilityWorksheet(localVarOptionals *CellsWorksheetsPutChangeVisibilityWorksheetOpts) (WorksheetResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPutProtectWorksheet

func (a *CellsApiService) CellsWorksheetsPutProtectWorksheet(localVarOptionals *CellsWorksheetsPutProtectWorksheetOpts) (WorksheetResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPutWorksheetBackground

func (a *CellsApiService) CellsWorksheetsPutWorksheetBackground(localVarOptionals *CellsWorksheetsPutWorksheetBackgroundOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPutWorksheetComment

func (a *CellsApiService) CellsWorksheetsPutWorksheetComment(localVarOptionals *CellsWorksheetsPutWorksheetCommentOpts) (CommentResponse, *http.Response, error)

func (*CellsApiService) CellsWorksheetsPutWorksheetFreezePanes

func (a *CellsApiService) CellsWorksheetsPutWorksheetFreezePanes(localVarOptionals *CellsWorksheetsPutWorksheetFreezePanesOpts) (CellsCloudResponse, *http.Response, error)

func (*CellsApiService) CopyFile

func (a *CellsApiService) CopyFile(localVarOptionals *CopyFileOpts) (*http.Response, error)

func (*CellsApiService) CopyFolder

func (a *CellsApiService) CopyFolder(localVarOptionals *CopyFolderOpts) (*http.Response, error)

func (*CellsApiService) CreateFolder

func (a *CellsApiService) CreateFolder(localVarOptionals *CreateFolderOpts) (*http.Response, error)

func (*CellsApiService) DeleteFile

func (a *CellsApiService) DeleteFile(localVarOptionals *DeleteFileOpts) (*http.Response, error)

func (*CellsApiService) DeleteFolder

func (a *CellsApiService) DeleteFolder(localVarOptionals *DeleteFolderOpts) (*http.Response, error)

func (*CellsApiService) DownloadFile

func (a *CellsApiService) DownloadFile(localVarOptionals *DownloadFileOpts) ([]byte, *http.Response, error)

func (*CellsApiService) GetDiscUsage

func (a *CellsApiService) GetDiscUsage(localVarOptionals *GetDiscUsageOpts) (DiscUsage, *http.Response, error)

func (*CellsApiService) GetFileVersions

func (a *CellsApiService) GetFileVersions(localVarOptionals *GetFileVersionsOpts) (FileVersions, *http.Response, error)

func (*CellsApiService) GetFilesList

func (a *CellsApiService) GetFilesList(localVarOptionals *GetFilesListOpts) (FilesList, *http.Response, error)

func (*CellsApiService) MoveFile

func (a *CellsApiService) MoveFile(localVarOptionals *MoveFileOpts) (*http.Response, error)

func (*CellsApiService) MoveFolder

func (a *CellsApiService) MoveFolder(localVarOptionals *MoveFolderOpts) (*http.Response, error)

func (*CellsApiService) OAuthPost

func (a *CellsApiService) OAuthPost(localVarOptionals *OAuthPostOpts) (AccessTokenResponse, *http.Response, error)

func (*CellsApiService) ObjectExists

func (a *CellsApiService) ObjectExists(localVarOptionals *ObjectExistsOpts) (ObjectExist, *http.Response, error)

func (*CellsApiService) StorageExists

func (a *CellsApiService) StorageExists(localVarOptionals *StorageExistsOpts) (StorageExist, *http.Response, error)

func (*CellsApiService) UploadFile

func (a *CellsApiService) UploadFile(file *os.File, localVarOptionals *UploadFileOpts) (FilesUploadResult, *http.Response, error)

type CellsAutoFilterDeleteWorksheetDateFilterOpts

type CellsAutoFilterDeleteWorksheetDateFilterOpts struct {
	Name                 string
	SheetName            string
	FieldIndex           int64
	DateTimeGroupingType string
	Year                 int64
	Month                int64
	Day                  int64
	Hour                 int64
	Minute               int64
	Second               int64
	Folder               string
	StorageName          string
}

type CellsAutoFilterDeleteWorksheetFilterOpts

type CellsAutoFilterDeleteWorksheetFilterOpts struct {
	Name        string
	SheetName   string
	FieldIndex  int64
	Criteria    string
	Folder      string
	StorageName string
}

type CellsAutoFilterGetWorksheetAutoFilterOpts

type CellsAutoFilterGetWorksheetAutoFilterOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsAutoFilterPostWorksheetAutoFilterRefreshOpts

type CellsAutoFilterPostWorksheetAutoFilterRefreshOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsAutoFilterPostWorksheetMatchBlanksOpts

type CellsAutoFilterPostWorksheetMatchBlanksOpts struct {
	Name        string
	SheetName   string
	FieldIndex  int64
	Folder      string
	StorageName string
}

type CellsAutoFilterPostWorksheetMatchNonBlanksOpts

type CellsAutoFilterPostWorksheetMatchNonBlanksOpts struct {
	Name        string
	SheetName   string
	FieldIndex  int64
	Folder      string
	StorageName string
}

type CellsAutoFilterPutWorksheetColorFilterOpts

type CellsAutoFilterPutWorksheetColorFilterOpts struct {
	Name        string
	SheetName   string
	Range_      string
	FieldIndex  int64
	ColorFilter *ColorFilterRequest
	MatchBlanks bool
	Refresh     bool
	Folder      string
	StorageName string
}

type CellsAutoFilterPutWorksheetCustomFilterOpts

type CellsAutoFilterPutWorksheetCustomFilterOpts struct {
	Name          string
	SheetName     string
	Range_        string
	FieldIndex    int64
	OperatorType1 string
	Criteria1     string
	IsAnd         bool
	OperatorType2 string
	Criteria2     string
	MatchBlanks   bool
	Refresh       bool
	Folder        string
	StorageName   string
}

type CellsAutoFilterPutWorksheetDateFilterOpts

type CellsAutoFilterPutWorksheetDateFilterOpts struct {
	Name                 string
	SheetName            string
	Range_               string
	FieldIndex           int64
	DateTimeGroupingType string
	Year                 int64
	Month                int64
	Day                  int64
	Hour                 int64
	Minute               int64
	Second               int64
	MatchBlanks          bool
	Refresh              bool
	Folder               string
	StorageName          string
}

type CellsAutoFilterPutWorksheetDynamicFilterOpts

type CellsAutoFilterPutWorksheetDynamicFilterOpts struct {
	Name              string
	SheetName         string
	Range_            string
	FieldIndex        int64
	DynamicFilterType string
	MatchBlanks       bool
	Refresh           bool
	Folder            string
	StorageName       string
}

type CellsAutoFilterPutWorksheetFilterOpts

type CellsAutoFilterPutWorksheetFilterOpts struct {
	Name        string
	SheetName   string
	Range_      string
	FieldIndex  int64
	Criteria    string
	MatchBlanks bool
	Refresh     bool
	Folder      string
	StorageName string
}

type CellsAutoFilterPutWorksheetFilterTop10Opts

type CellsAutoFilterPutWorksheetFilterTop10Opts struct {
	Name        string
	SheetName   string
	Range_      string
	FieldIndex  int64
	IsTop       bool
	IsPercent   bool
	ItemCount   int64
	MatchBlanks bool
	Refresh     bool
	Folder      string
	StorageName string
}

type CellsAutoFilterPutWorksheetIconFilterOpts

type CellsAutoFilterPutWorksheetIconFilterOpts struct {
	Name        string
	SheetName   string
	Range_      string
	FieldIndex  int64
	IconSetType string
	IconId      int64
	MatchBlanks bool
	Refresh     bool
	Folder      string
	StorageName string
}

type CellsAutoshapesGetWorksheetAutoshapeOpts

type CellsAutoshapesGetWorksheetAutoshapeOpts struct {
	Name            string
	SheetName       string
	AutoshapeNumber int64
	Format          string
	Folder          string
	StorageName     string
}

type CellsAutoshapesGetWorksheetAutoshapesOpts

type CellsAutoshapesGetWorksheetAutoshapesOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsChartAreaGetChartAreaBorderOpts

type CellsChartAreaGetChartAreaBorderOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Folder      string
	StorageName string
}

type CellsChartAreaGetChartAreaFillFormatOpts

type CellsChartAreaGetChartAreaFillFormatOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Folder      string
	StorageName string
}

type CellsChartAreaGetChartAreaOpts

type CellsChartAreaGetChartAreaOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Folder      string
	StorageName string
}

type CellsChartsDeleteWorksheetChartLegendOpts

type CellsChartsDeleteWorksheetChartLegendOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Folder      string
	StorageName string
}

type CellsChartsDeleteWorksheetChartTitleOpts

type CellsChartsDeleteWorksheetChartTitleOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Folder      string
	StorageName string
}

type CellsChartsDeleteWorksheetClearChartsOpts

type CellsChartsDeleteWorksheetClearChartsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsChartsDeleteWorksheetDeleteChartOpts

type CellsChartsDeleteWorksheetDeleteChartOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Folder      string
	StorageName string
}

type CellsChartsGetWorksheetChartLegendOpts

type CellsChartsGetWorksheetChartLegendOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Folder      string
	StorageName string
}

type CellsChartsGetWorksheetChartOpts

type CellsChartsGetWorksheetChartOpts struct {
	Name        string
	SheetName   string
	ChartNumber int64
	Format      string
	Folder      string
	StorageName string
}

type CellsChartsGetWorksheetChartTitleOpts

type CellsChartsGetWorksheetChartTitleOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Folder      string
	StorageName string
}

type CellsChartsGetWorksheetChartsOpts

type CellsChartsGetWorksheetChartsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsChartsPostWorksheetChartLegendOpts

type CellsChartsPostWorksheetChartLegendOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Legend      *Legend
	Folder      string
	StorageName string
}

type CellsChartsPostWorksheetChartOpts

type CellsChartsPostWorksheetChartOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Chart       *Chart
	Folder      string
	StorageName string
}

type CellsChartsPostWorksheetChartTitleOpts

type CellsChartsPostWorksheetChartTitleOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Title       *Title
	Folder      string
	StorageName string
}

type CellsChartsPutWorksheetAddChartOpts

type CellsChartsPutWorksheetAddChartOpts struct {
	Name                string
	SheetName           string
	ChartType           string
	UpperLeftRow        int64
	UpperLeftColumn     int64
	LowerRightRow       int64
	LowerRightColumn    int64
	Area                string
	IsVertical          bool
	CategoryData        string
	IsAutoGetSerialName bool
	Title               string
	Folder              string
	StorageName         string
	DataLabels          bool
	DataLabelsPosition  string
	PivotTableSheet     string
	PivotTableName      string
}

type CellsChartsPutWorksheetChartLegendOpts

type CellsChartsPutWorksheetChartLegendOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Folder      string
	StorageName string
}

type CellsChartsPutWorksheetChartTitleOpts

type CellsChartsPutWorksheetChartTitleOpts struct {
	Name        string
	SheetName   string
	ChartIndex  int64
	Title       *Title
	Folder      string
	StorageName string
}

type CellsCloudFileInfo added in v20.8.0

type CellsCloudFileInfo struct {
	Name    string `json:"Name,omitempty" xml:"Name"`
	Size    int64  `json:"Size" xml:"Size"`
	Folder  string `json:"Folder,omitempty" xml:"Folder"`
	Storage string `json:"Storage,omitempty" xml:"Storage"`
}

type CellsCloudResponse

type CellsCloudResponse struct {
	Status string `json:"Status,omitempty" xml:"Status"`
	Code   int32  `json:"Code" xml:"Code"`
}

type CellsColor

type CellsColor struct {
	Color        *Color      `json:"Color,omitempty" xml:"Color"`
	Type_        string      `json:"Type,omitempty" xml:"Type"`
	ThemeColor   *ThemeColor `json:"ThemeColor,omitempty" xml:"ThemeColor"`
	IsShapeColor bool        `json:"IsShapeColor,omitempty" xml:"IsShapeColor"`
	ColorIndex   int64       `json:"ColorIndex,omitempty" xml:"ColorIndex"`
}

type CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaOpts

type CellsConditionalFormattingsDeleteWorksheetConditionalFormattingAreaOpts struct {
	Name         string
	SheetName    string
	StartRow     int64
	StartColumn  int64
	TotalRows    int64
	TotalColumns int64
	Folder       string
	StorageName  string
}

type CellsConditionalFormattingsDeleteWorksheetConditionalFormattingOpts

type CellsConditionalFormattingsDeleteWorksheetConditionalFormattingOpts struct {
	Name        string
	SheetName   string
	Index       int64
	Folder      string
	StorageName string
}

type CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsOpts

type CellsConditionalFormattingsDeleteWorksheetConditionalFormattingsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsConditionalFormattingsGetWorksheetConditionalFormattingOpts

type CellsConditionalFormattingsGetWorksheetConditionalFormattingOpts struct {
	Name        string
	SheetName   string
	Index       int64
	Folder      string
	StorageName string
}

type CellsConditionalFormattingsGetWorksheetConditionalFormattingsOpts

type CellsConditionalFormattingsGetWorksheetConditionalFormattingsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsConditionalFormattingsPutWorksheetConditionalFormattingOpts

type CellsConditionalFormattingsPutWorksheetConditionalFormattingOpts struct {
	Name            string
	SheetName       string
	CellArea        string
	FormatCondition *FormatCondition
	Folder          string
	StorageName     string
}

type CellsConditionalFormattingsPutWorksheetFormatConditionAreaOpts

type CellsConditionalFormattingsPutWorksheetFormatConditionAreaOpts struct {
	Name        string
	SheetName   string
	Index       int64
	CellArea    string
	Folder      string
	StorageName string
}

type CellsConditionalFormattingsPutWorksheetFormatConditionConditionOpts

type CellsConditionalFormattingsPutWorksheetFormatConditionConditionOpts struct {
	Name         string
	SheetName    string
	Index        int64
	Type_        string
	OperatorType string
	Formula1     string
	Formula2     string
	Folder       string
	StorageName  string
}

type CellsConditionalFormattingsPutWorksheetFormatConditionOpts

type CellsConditionalFormattingsPutWorksheetFormatConditionOpts struct {
	Name         string
	SheetName    string
	Index        int64
	CellArea     string
	Type_        string
	OperatorType string
	Formula1     string
	Formula2     string
	Folder       string
	StorageName  string
}

type CellsDeleteWorksheetColumnsOpts

type CellsDeleteWorksheetColumnsOpts struct {
	Name            string
	SheetName       string
	ColumnIndex     int64
	Columns         int64
	UpdateReference bool
	Folder          string
	StorageName     string
}

type CellsDeleteWorksheetRowOpts

type CellsDeleteWorksheetRowOpts struct {
	Name        string
	SheetName   string
	RowIndex    int64
	Folder      string
	StorageName string
}

type CellsDeleteWorksheetRowsOpts

type CellsDeleteWorksheetRowsOpts struct {
	Name            string
	SheetName       string
	Startrow        int64
	TotalRows       int64
	UpdateReference bool
	Folder          string
	StorageName     string
}

type CellsDocumentProperties

type CellsDocumentProperties struct {
	Link                 *Link                   `json:"link,omitempty" xml:"link"`
	DocumentPropertyList []CellsDocumentProperty `json:"DocumentPropertyList,omitempty" xml:"DocumentPropertyList"`
}

type CellsDocumentPropertiesResponse

type CellsDocumentPropertiesResponse struct {
	Status             string                   `json:"Status,omitempty" xml:"Status"`
	Code               int32                    `json:"Code" xml:"Code"`
	DocumentProperties *CellsDocumentProperties `json:"DocumentProperties,omitempty" xml:"DocumentProperties"`
}

type CellsDocumentProperty

type CellsDocumentProperty struct {
	Link    *Link  `json:"link,omitempty" xml:"link"`
	BuiltIn string `json:"BuiltIn,omitempty" xml:"BuiltIn"`
	Name    string `json:"Name,omitempty" xml:"Name"`
	Value   string `json:"Value,omitempty" xml:"Value"`
}

type CellsDocumentPropertyResponse

type CellsDocumentPropertyResponse struct {
	Status           string                 `json:"Status,omitempty" xml:"Status"`
	Code             int32                  `json:"Code" xml:"Code"`
	DocumentProperty *CellsDocumentProperty `json:"DocumentProperty,omitempty" xml:"DocumentProperty"`
}

type CellsGetCellHtmlStringOpts

type CellsGetCellHtmlStringOpts struct {
	Name        string
	SheetName   string
	CellName    string
	Folder      string
	StorageName string
}

type CellsGetWorksheetCellOpts

type CellsGetWorksheetCellOpts struct {
	Name             string
	SheetName        string
	CellOrMethodName string
	Folder           string
	StorageName      string
}

type CellsGetWorksheetCellStyleOpts

type CellsGetWorksheetCellStyleOpts struct {
	Name        string
	SheetName   string
	CellName    string
	Folder      string
	StorageName string
}

type CellsGetWorksheetCellsOpts

type CellsGetWorksheetCellsOpts struct {
	Name        string
	SheetName   string
	Offest      int64
	Count       int64
	Folder      string
	StorageName string
}

type CellsGetWorksheetColumnOpts

type CellsGetWorksheetColumnOpts struct {
	Name        string
	SheetName   string
	ColumnIndex int64
	Folder      string
	StorageName string
}

type CellsGetWorksheetColumnsOpts

type CellsGetWorksheetColumnsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsGetWorksheetRowOpts

type CellsGetWorksheetRowOpts struct {
	Name        string
	SheetName   string
	RowIndex    int64
	Folder      string
	StorageName string
}

type CellsGetWorksheetRowsOpts

type CellsGetWorksheetRowsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsHypelinksDeleteWorksheetHyperlinkOpts

type CellsHypelinksDeleteWorksheetHyperlinkOpts struct {
	Name           string
	SheetName      string
	HyperlinkIndex int64
	Folder         string
	StorageName    string
}

type CellsHypelinksDeleteWorksheetHyperlinksOpts

type CellsHypelinksDeleteWorksheetHyperlinksOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsHypelinksGetWorksheetHyperlinkOpts

type CellsHypelinksGetWorksheetHyperlinkOpts struct {
	Name           string
	SheetName      string
	HyperlinkIndex int64
	Folder         string
	StorageName    string
}

type CellsHypelinksGetWorksheetHyperlinksOpts

type CellsHypelinksGetWorksheetHyperlinksOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsHypelinksPostWorksheetHyperlinkOpts

type CellsHypelinksPostWorksheetHyperlinkOpts struct {
	Name           string
	SheetName      string
	HyperlinkIndex int64
	Hyperlink      *Hyperlink
	Folder         string
	StorageName    string
}

type CellsHypelinksPutWorksheetHyperlinkOpts

type CellsHypelinksPutWorksheetHyperlinkOpts struct {
	Name         string
	SheetName    string
	FirstRow     int64
	FirstColumn  int64
	TotalRows    int64
	TotalColumns int64
	Address      string
	Folder       string
	StorageName  string
}

type CellsListObjectsDeleteWorksheetListObjectOpts

type CellsListObjectsDeleteWorksheetListObjectOpts struct {
	Name            string
	SheetName       string
	ListObjectIndex int64
	Folder          string
	StorageName     string
}

type CellsListObjectsDeleteWorksheetListObjectsOpts

type CellsListObjectsDeleteWorksheetListObjectsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsListObjectsGetWorksheetListObjectOpts

type CellsListObjectsGetWorksheetListObjectOpts struct {
	Name            string
	SheetName       string
	Listobjectindex int64
	Folder          string
	StorageName     string
}

type CellsListObjectsGetWorksheetListObjectsOpts

type CellsListObjectsGetWorksheetListObjectsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsListObjectsPostWorksheetListObjectConvertToRangeOpts

type CellsListObjectsPostWorksheetListObjectConvertToRangeOpts struct {
	Name            string
	SheetName       string
	ListObjectIndex int64
	Folder          string
	StorageName     string
}

type CellsListObjectsPostWorksheetListObjectOpts

type CellsListObjectsPostWorksheetListObjectOpts struct {
	Name            string
	SheetName       string
	ListObjectIndex int64
	ListObject      *ListObject
	Folder          string
	StorageName     string
}

type CellsListObjectsPostWorksheetListObjectSortTableOpts

type CellsListObjectsPostWorksheetListObjectSortTableOpts struct {
	Name            string
	SheetName       string
	ListObjectIndex int64
	DataSorter      *DataSorter
	Folder          string
	StorageName     string
}

type CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableOpts

type CellsListObjectsPostWorksheetListObjectSummarizeWithPivotTableOpts struct {
	Name            string
	SheetName       string
	ListObjectIndex int64
	DestsheetName   string
	Request         *CreatePivotTableRequest
	Folder          string
	StorageName     string
}

type CellsListObjectsPutWorksheetListObjectOpts

type CellsListObjectsPutWorksheetListObjectOpts struct {
	Name        string
	SheetName   string
	StartRow    int64
	StartColumn int64
	EndRow      int64
	EndColumn   int64
	HasHeaders  bool
	ListObject  *ListObject
	Folder      string
	StorageName string
}

type CellsObjectOperateTaskParameter

type CellsObjectOperateTaskParameter struct {
	OperateParameter    *OperateParameter `json:"OperateParameter,omitempty" xml:"OperateParameter"`
	DestinationWorkbook *FileSource       `json:"DestinationWorkbook,omitempty" xml:"DestinationWorkbook"`
	OperateObject       *OperateObject    `json:"OperateObject,omitempty" xml:"OperateObject"`
}

type CellsOleObjectsDeleteWorksheetOleObjectOpts

type CellsOleObjectsDeleteWorksheetOleObjectOpts struct {
	Name           string
	SheetName      string
	OleObjectIndex int64
	Folder         string
	StorageName    string
}

type CellsOleObjectsDeleteWorksheetOleObjectsOpts

type CellsOleObjectsDeleteWorksheetOleObjectsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsOleObjectsGetWorksheetOleObjectOpts

type CellsOleObjectsGetWorksheetOleObjectOpts struct {
	Name         string
	SheetName    string
	ObjectNumber int64
	Format       string
	Folder       string
	StorageName  string
}

type CellsOleObjectsGetWorksheetOleObjectsOpts

type CellsOleObjectsGetWorksheetOleObjectsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsOleObjectsPostUpdateWorksheetOleObjectOpts

type CellsOleObjectsPostUpdateWorksheetOleObjectOpts struct {
	Name           string
	SheetName      string
	OleObjectIndex int64
	Ole            *OleObject
	Folder         string
	StorageName    string
}

type CellsOleObjectsPutWorksheetOleObjectOpts

type CellsOleObjectsPutWorksheetOleObjectOpts struct {
	Name            string
	SheetName       string
	OleObject       *OleObject
	UpperLeftRow    int64
	UpperLeftColumn int64
	Height          int64
	Width           int64
	OleFile         string
	ImageFile       string
	Folder          string
	StorageName     string
}

type CellsPageBreaksDeleteHorizontalPageBreakOpts

type CellsPageBreaksDeleteHorizontalPageBreakOpts struct {
	Name        string
	SheetName   string
	Index       int64
	Folder      string
	StorageName string
}

type CellsPageBreaksDeleteHorizontalPageBreaksOpts

type CellsPageBreaksDeleteHorizontalPageBreaksOpts struct {
	Name        string
	SheetName   string
	Row         int64
	Folder      string
	StorageName string
}

type CellsPageBreaksDeleteVerticalPageBreakOpts

type CellsPageBreaksDeleteVerticalPageBreakOpts struct {
	Name        string
	SheetName   string
	Index       int64
	Folder      string
	StorageName string
}

type CellsPageBreaksDeleteVerticalPageBreaksOpts

type CellsPageBreaksDeleteVerticalPageBreaksOpts struct {
	Name        string
	SheetName   string
	Column      int64
	Folder      string
	StorageName string
}

type CellsPageBreaksGetHorizontalPageBreakOpts

type CellsPageBreaksGetHorizontalPageBreakOpts struct {
	Name        string
	SheetName   string
	Index       int64
	Folder      string
	StorageName string
}

type CellsPageBreaksGetHorizontalPageBreaksOpts

type CellsPageBreaksGetHorizontalPageBreaksOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsPageBreaksGetVerticalPageBreakOpts

type CellsPageBreaksGetVerticalPageBreakOpts struct {
	Name        string
	SheetName   string
	Index       int64
	Folder      string
	StorageName string
}

type CellsPageBreaksGetVerticalPageBreaksOpts

type CellsPageBreaksGetVerticalPageBreaksOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsPageBreaksPutHorizontalPageBreakOpts

type CellsPageBreaksPutHorizontalPageBreakOpts struct {
	Name        string
	SheetName   string
	Cellname    string
	Row         int64
	Column      int64
	StartColumn int64
	EndColumn   int64
	Folder      string
	StorageName string
}

type CellsPageBreaksPutVerticalPageBreakOpts

type CellsPageBreaksPutVerticalPageBreakOpts struct {
	Name        string
	SheetName   string
	Cellname    string
	Column      int64
	Row         int64
	StartRow    int64
	EndRow      int64
	Folder      string
	StorageName string
}

type CellsPageSetupDeleteHeaderFooterOpts

type CellsPageSetupDeleteHeaderFooterOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsPageSetupGetFooterOpts

type CellsPageSetupGetFooterOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsPageSetupGetHeaderOpts

type CellsPageSetupGetHeaderOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsPageSetupGetPageSetupOpts

type CellsPageSetupGetPageSetupOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsPageSetupPostFooterOpts

type CellsPageSetupPostFooterOpts struct {
	Name        string
	SheetName   string
	Section     int64
	Script      string
	IsFirstPage bool
	Folder      string
	StorageName string
}

type CellsPageSetupPostHeaderOpts

type CellsPageSetupPostHeaderOpts struct {
	Name        string
	SheetName   string
	Section     int64
	Script      string
	IsFirstPage bool
	Folder      string
	StorageName string
}

type CellsPageSetupPostPageSetupOpts

type CellsPageSetupPostPageSetupOpts struct {
	Name        string
	SheetName   string
	PageSetup   *PageSetup
	Folder      string
	StorageName string
}

type CellsPicturesDeleteWorksheetPictureOpts

type CellsPicturesDeleteWorksheetPictureOpts struct {
	Name         string
	SheetName    string
	PictureIndex int64
	Folder       string
	StorageName  string
}

type CellsPicturesDeleteWorksheetPicturesOpts

type CellsPicturesDeleteWorksheetPicturesOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsPicturesGetWorksheetPictureOpts

type CellsPicturesGetWorksheetPictureOpts struct {
	Name         string
	SheetName    string
	PictureIndex int64
	Format       string
	Folder       string
	StorageName  string
}

type CellsPicturesGetWorksheetPicturesOpts

type CellsPicturesGetWorksheetPicturesOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsPicturesPostWorksheetPictureOpts

type CellsPicturesPostWorksheetPictureOpts struct {
	Name         string
	SheetName    string
	PictureIndex int64
	Picture      *Picture
	Folder       string
	StorageName  string
}

type CellsPicturesPutWorksheetAddPictureOpts

type CellsPicturesPutWorksheetAddPictureOpts struct {
	Name             string
	SheetName        string
	Picture          *Picture
	UpperLeftRow     int64
	UpperLeftColumn  int64
	LowerRightRow    int64
	LowerRightColumn int64
	PicturePath      string
	Folder           string
	StorageName      string
}

type CellsPivotTablesDeletePivotTableFieldOpts

type CellsPivotTablesDeletePivotTableFieldOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	PivotFieldType  string
	Request         *PivotTableFieldRequest
	Folder          string
	StorageName     string
}

type CellsPivotTablesDeleteWorksheetPivotTableFilterOpts

type CellsPivotTablesDeleteWorksheetPivotTableFilterOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	FieldIndex      int64
	NeedReCalculate bool
	Folder          string
	StorageName     string
}

type CellsPivotTablesDeleteWorksheetPivotTableFiltersOpts

type CellsPivotTablesDeleteWorksheetPivotTableFiltersOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	NeedReCalculate bool
	Folder          string
	StorageName     string
}

type CellsPivotTablesDeleteWorksheetPivotTableOpts

type CellsPivotTablesDeleteWorksheetPivotTableOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	Folder          string
	StorageName     string
}

type CellsPivotTablesDeleteWorksheetPivotTablesOpts

type CellsPivotTablesDeleteWorksheetPivotTablesOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsPivotTablesGetPivotTableFieldOpts

type CellsPivotTablesGetPivotTableFieldOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	PivotFieldIndex int64
	PivotFieldType  string
	Folder          string
	StorageName     string
}

type CellsPivotTablesGetWorksheetPivotTableFilterOpts

type CellsPivotTablesGetWorksheetPivotTableFilterOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	FilterIndex     int64
	Folder          string
	StorageName     string
}

type CellsPivotTablesGetWorksheetPivotTableFiltersOpts

type CellsPivotTablesGetWorksheetPivotTableFiltersOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	Folder          string
	StorageName     string
}

type CellsPivotTablesGetWorksheetPivotTableOpts

type CellsPivotTablesGetWorksheetPivotTableOpts struct {
	Name            string
	SheetName       string
	PivottableIndex int64
	Folder          string
	StorageName     string
}

type CellsPivotTablesGetWorksheetPivotTablesOpts

type CellsPivotTablesGetWorksheetPivotTablesOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsPivotTablesPostPivotTableCellStyleOpts

type CellsPivotTablesPostPivotTableCellStyleOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	Column          int64
	Row             int64
	Style           *Style
	NeedReCalculate bool
	Folder          string
	StorageName     string
}

type CellsPivotTablesPostPivotTableFieldHideItemOpts

type CellsPivotTablesPostPivotTableFieldHideItemOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	PivotFieldType  string
	FieldIndex      int64
	ItemIndex       int64
	IsHide          bool
	NeedReCalculate bool
	Folder          string
	StorageName     string
}

type CellsPivotTablesPostPivotTableFieldMoveToOpts

type CellsPivotTablesPostPivotTableFieldMoveToOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	FieldIndex      int64
	From            string
	To              string
	Folder          string
	StorageName     string
}

type CellsPivotTablesPostPivotTableStyleOpts

type CellsPivotTablesPostPivotTableStyleOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	Style           *Style
	NeedReCalculate bool
	Folder          string
	StorageName     string
}

type CellsPivotTablesPostPivotTableUpdatePivotFieldOpts added in v20.9.0

type CellsPivotTablesPostPivotTableUpdatePivotFieldOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	PivotFieldIndex int64
	PivotFieldType  string
	PivotField      *PivotField
	NeedReCalculate bool
	Folder          string
}

type CellsPivotTablesPostPivotTableUpdatePivotFieldsOpts added in v20.9.0

type CellsPivotTablesPostPivotTableUpdatePivotFieldsOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	PivotFieldType  string
	PivotField      *PivotField
	NeedReCalculate bool
	Folder          string
}

type CellsPivotTablesPostWorksheetPivotTableCalculateOpts

type CellsPivotTablesPostWorksheetPivotTableCalculateOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	Folder          string
	StorageName     string
}

type CellsPivotTablesPostWorksheetPivotTableMoveOpts

type CellsPivotTablesPostWorksheetPivotTableMoveOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	Row             int64
	Column          int64
	DestCellName    string
	Folder          string
	StorageName     string
}

type CellsPivotTablesPutPivotTableFieldOpts

type CellsPivotTablesPutPivotTableFieldOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	PivotFieldType  string
	Request         *PivotTableFieldRequest
	NeedReCalculate bool
	Folder          string
	StorageName     string
}

type CellsPivotTablesPutWorksheetPivotTableFilterOpts

type CellsPivotTablesPutWorksheetPivotTableFilterOpts struct {
	Name            string
	SheetName       string
	PivotTableIndex int64
	Filter          *PivotFilter
	NeedReCalculate bool
	Folder          string
	StorageName     string
}

type CellsPivotTablesPutWorksheetPivotTableOpts

type CellsPivotTablesPutWorksheetPivotTableOpts struct {
	Name          string
	SheetName     string
	Request       *CreatePivotTableRequest
	Folder        string
	StorageName   string
	SourceData    string
	DestCellName  string
	TableName     string
	UseSameSource bool
}

type CellsPostCellCalculateOpts

type CellsPostCellCalculateOpts struct {
	Name        string
	SheetName   string
	CellName    string
	Options     *CalculationOptions
	Folder      string
	StorageName string
}

type CellsPostCellCharactersOpts

type CellsPostCellCharactersOpts struct {
	Name        string
	SheetName   string
	CellName    string
	Options     *[]FontSetting
	Folder      string
	StorageName string
}

type CellsPostClearContentsOpts

type CellsPostClearContentsOpts struct {
	Name        string
	SheetName   string
	Range_      string
	StartRow    int64
	StartColumn int64
	EndRow      int64
	EndColumn   int64
	Folder      string
	StorageName string
}

type CellsPostClearFormatsOpts

type CellsPostClearFormatsOpts struct {
	Name        string
	SheetName   string
	Range_      string
	StartRow    int64
	StartColumn int64
	EndRow      int64
	EndColumn   int64
	Folder      string
	StorageName string
}

type CellsPostColumnStyleOpts

type CellsPostColumnStyleOpts struct {
	Name        string
	SheetName   string
	ColumnIndex int64
	Style       *Style
	Folder      string
	StorageName string
}

type CellsPostCopyCellIntoCellOpts

type CellsPostCopyCellIntoCellOpts struct {
	Name         string
	DestCellName string
	SheetName    string
	Worksheet    string
	Cellname     string
	Row          int64
	Column       int64
	Folder       string
	StorageName  string
}

type CellsPostCopyWorksheetColumnsOpts

type CellsPostCopyWorksheetColumnsOpts struct {
	Name                   string
	SheetName              string
	SourceColumnIndex      int64
	DestinationColumnIndex int64
	ColumnNumber           int64
	Worksheet              string
	Folder                 string
	StorageName            string
}

type CellsPostCopyWorksheetRowsOpts

type CellsPostCopyWorksheetRowsOpts struct {
	Name                string
	SheetName           string
	SourceRowIndex      int64
	DestinationRowIndex int64
	RowNumber           int64
	Worksheet           string
	Folder              string
	StorageName         string
}

type CellsPostGroupWorksheetColumnsOpts

type CellsPostGroupWorksheetColumnsOpts struct {
	Name        string
	SheetName   string
	FirstIndex  int64
	LastIndex   int64
	Hide        bool
	Folder      string
	StorageName string
}

type CellsPostGroupWorksheetRowsOpts

type CellsPostGroupWorksheetRowsOpts struct {
	Name        string
	SheetName   string
	FirstIndex  int64
	LastIndex   int64
	Hide        bool
	Folder      string
	StorageName string
}

type CellsPostHideWorksheetColumnsOpts

type CellsPostHideWorksheetColumnsOpts struct {
	Name         string
	SheetName    string
	StartColumn  int64
	TotalColumns int64
	Folder       string
	StorageName  string
}

type CellsPostHideWorksheetRowsOpts

type CellsPostHideWorksheetRowsOpts struct {
	Name        string
	SheetName   string
	Startrow    int64
	TotalRows   int64
	Folder      string
	StorageName string
}

type CellsPostRowStyleOpts

type CellsPostRowStyleOpts struct {
	Name        string
	SheetName   string
	RowIndex    int64
	Style       *Style
	Folder      string
	StorageName string
}

type CellsPostSetCellHtmlStringOpts

type CellsPostSetCellHtmlStringOpts struct {
	Name        string
	SheetName   string
	CellName    string
	HtmlString  string
	Folder      string
	StorageName string
}

type CellsPostSetCellRangeValueOpts

type CellsPostSetCellRangeValueOpts struct {
	Name        string
	SheetName   string
	Cellarea    string
	Value       string
	Type_       string
	Folder      string
	StorageName string
}

type CellsPostSetWorksheetColumnWidthOpts

type CellsPostSetWorksheetColumnWidthOpts struct {
	Name        string
	SheetName   string
	ColumnIndex int64
	Width       float64
	Folder      string
	StorageName string
}

type CellsPostUngroupWorksheetColumnsOpts

type CellsPostUngroupWorksheetColumnsOpts struct {
	Name        string
	SheetName   string
	FirstIndex  int64
	LastIndex   int64
	Folder      string
	StorageName string
}

type CellsPostUngroupWorksheetRowsOpts

type CellsPostUngroupWorksheetRowsOpts struct {
	Name        string
	SheetName   string
	FirstIndex  int64
	LastIndex   int64
	IsAll       bool
	Folder      string
	StorageName string
}

type CellsPostUnhideWorksheetColumnsOpts

type CellsPostUnhideWorksheetColumnsOpts struct {
	Name         string
	SheetName    string
	Startcolumn  int64
	TotalColumns int64
	Width        float64
	Folder       string
	StorageName  string
}

type CellsPostUnhideWorksheetRowsOpts

type CellsPostUnhideWorksheetRowsOpts struct {
	Name        string
	SheetName   string
	Startrow    int64
	TotalRows   int64
	Height      float64
	Folder      string
	StorageName string
}

type CellsPostUpdateWorksheetCellStyleOpts

type CellsPostUpdateWorksheetCellStyleOpts struct {
	Name        string
	SheetName   string
	CellName    string
	Style       *Style
	Folder      string
	StorageName string
}

type CellsPostUpdateWorksheetRangeStyleOpts

type CellsPostUpdateWorksheetRangeStyleOpts struct {
	Name        string
	SheetName   string
	Range_      string
	Style       *Style
	Folder      string
	StorageName string
}

type CellsPostUpdateWorksheetRowOpts

type CellsPostUpdateWorksheetRowOpts struct {
	Name        string
	SheetName   string
	RowIndex    int64
	Height      float64
	Folder      string
	StorageName string
}

type CellsPostWorksheetCellSetValueOpts

type CellsPostWorksheetCellSetValueOpts struct {
	Name        string
	SheetName   string
	CellName    string
	Value       string
	Type_       string
	Formula     string
	Folder      string
	StorageName string
}

type CellsPostWorksheetMergeOpts

type CellsPostWorksheetMergeOpts struct {
	Name         string
	SheetName    string
	StartRow     int64
	StartColumn  int64
	TotalRows    int64
	TotalColumns int64
	Folder       string
	StorageName  string
}

type CellsPostWorksheetUnmergeOpts

type CellsPostWorksheetUnmergeOpts struct {
	Name         string
	SheetName    string
	StartRow     int64
	StartColumn  int64
	TotalRows    int64
	TotalColumns int64
	Folder       string
	StorageName  string
}

type CellsPropertiesDeleteDocumentPropertiesOpts

type CellsPropertiesDeleteDocumentPropertiesOpts struct {
	Name        string
	Folder      string
	StorageName string
}

type CellsPropertiesDeleteDocumentPropertyOpts

type CellsPropertiesDeleteDocumentPropertyOpts struct {
	Name         string
	PropertyName string
	Folder       string
	StorageName  string
}

type CellsPropertiesGetDocumentPropertiesOpts

type CellsPropertiesGetDocumentPropertiesOpts struct {
	Name        string
	Folder      string
	StorageName string
}

type CellsPropertiesGetDocumentPropertyOpts

type CellsPropertiesGetDocumentPropertyOpts struct {
	Name         string
	PropertyName string
	Folder       string
	StorageName  string
}

type CellsPropertiesPutDocumentPropertyOpts

type CellsPropertiesPutDocumentPropertyOpts struct {
	Name         string
	PropertyName string
	Property     *CellsDocumentProperty
	Folder       string
	StorageName  string
}

type CellsPutInsertWorksheetColumnsOpts

type CellsPutInsertWorksheetColumnsOpts struct {
	Name            string
	SheetName       string
	ColumnIndex     int64
	Columns         int64
	UpdateReference bool
	Folder          string
	StorageName     string
}

type CellsPutInsertWorksheetRowOpts

type CellsPutInsertWorksheetRowOpts struct {
	Name        string
	SheetName   string
	RowIndex    int64
	Folder      string
	StorageName string
}

type CellsPutInsertWorksheetRowsOpts

type CellsPutInsertWorksheetRowsOpts struct {
	Name            string
	SheetName       string
	Startrow        int64
	TotalRows       int64
	UpdateReference bool
	Folder          string
	StorageName     string
}

type CellsRangesGetWorksheetCellsRangeValueOpts

type CellsRangesGetWorksheetCellsRangeValueOpts struct {
	Name        string
	SheetName   string
	Namerange   string
	FirstRow    int64
	FirstColumn int64
	RowCount    int64
	ColumnCount int64
	Folder      string
	StorageName string
}

type CellsRangesPostWorksheetCellsRangeColumnWidthOpts

type CellsRangesPostWorksheetCellsRangeColumnWidthOpts struct {
	Name        string
	SheetName   string
	Value       float64
	Range_      *ModelRange
	Folder      string
	StorageName string
}

type CellsRangesPostWorksheetCellsRangeMergeOpts

type CellsRangesPostWorksheetCellsRangeMergeOpts struct {
	Name        string
	SheetName   string
	Range_      *ModelRange
	Folder      string
	StorageName string
}

type CellsRangesPostWorksheetCellsRangeMoveToOpts

type CellsRangesPostWorksheetCellsRangeMoveToOpts struct {
	Name        string
	SheetName   string
	DestRow     int64
	DestColumn  int64
	Range_      *ModelRange
	Folder      string
	StorageName string
}

type CellsRangesPostWorksheetCellsRangeOutlineBorderOpts

type CellsRangesPostWorksheetCellsRangeOutlineBorderOpts struct {
	Name         string
	SheetName    string
	RangeOperate *RangeSetOutlineBorderRequest
	Folder       string
	StorageName  string
}

type CellsRangesPostWorksheetCellsRangeRowHeightOpts

type CellsRangesPostWorksheetCellsRangeRowHeightOpts struct {
	Name        string
	SheetName   string
	Value       float64
	Range_      *ModelRange
	Folder      string
	StorageName string
}

type CellsRangesPostWorksheetCellsRangeStyleOpts

type CellsRangesPostWorksheetCellsRangeStyleOpts struct {
	Name         string
	SheetName    string
	RangeOperate *RangeSetStyleRequest
	Folder       string
	StorageName  string
}

type CellsRangesPostWorksheetCellsRangeUnmergeOpts

type CellsRangesPostWorksheetCellsRangeUnmergeOpts struct {
	Name        string
	SheetName   string
	Range_      *ModelRange
	Folder      string
	StorageName string
}

type CellsRangesPostWorksheetCellsRangeValueOpts

type CellsRangesPostWorksheetCellsRangeValueOpts struct {
	Name        string
	SheetName   string
	Value       string
	Range_      *ModelRange
	IsConverted bool
	SetStyle    bool
	Folder      string
	StorageName string
}

type CellsRangesPostWorksheetCellsRangesOpts

type CellsRangesPostWorksheetCellsRangesOpts struct {
	Name         string
	SheetName    string
	RangeOperate *RangeCopyRequest
	Folder       string
	StorageName  string
}

type CellsResponse

type CellsResponse struct {
	Status string `json:"Status,omitempty" xml:"Status"`
	Code   int32  `json:"Code" xml:"Code"`
	Cells  *Cells `json:"Cells,omitempty" xml:"Cells"`
}

type CellsSaveAsPostDocumentSaveAsOpts

type CellsSaveAsPostDocumentSaveAsOpts struct {
	Name             string
	SaveOptions      *SaveOptions
	Newfilename      string
	IsAutoFitRows    bool
	IsAutoFitColumns bool
	Folder           string
	StorageName      string
}

type CellsShapesDeleteWorksheetShapeOpts

type CellsShapesDeleteWorksheetShapeOpts struct {
	Name        string
	SheetName   string
	Shapeindex  int64
	Folder      string
	StorageName string
}

type CellsShapesDeleteWorksheetShapesOpts

type CellsShapesDeleteWorksheetShapesOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsShapesGetWorksheetShapeOpts

type CellsShapesGetWorksheetShapeOpts struct {
	Name        string
	SheetName   string
	Shapeindex  int64
	Folder      string
	StorageName string
}

type CellsShapesGetWorksheetShapesOpts

type CellsShapesGetWorksheetShapesOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsShapesPostWorksheetShapeOpts

type CellsShapesPostWorksheetShapeOpts struct {
	Name        string
	SheetName   string
	Shapeindex  int64
	Dto         *Shape
	Folder      string
	StorageName string
}

type CellsShapesPutWorksheetShapeOpts

type CellsShapesPutWorksheetShapeOpts struct {
	Name            string
	SheetName       string
	ShapeDTO        *Shape
	DrawingType     string
	UpperLeftRow    int64
	UpperLeftColumn int64
	Top             int64
	Left            int64
	Width           int64
	Height          int64
	Folder          string
	StorageName     string
}

type CellsSparklineGroupsDeleteWorksheetSparklineGroupOpts added in v20.9.0

type CellsSparklineGroupsDeleteWorksheetSparklineGroupOpts struct {
	Name                string
	SheetName           string
	SparklineGroupIndex int64
	Folder              string
	StorageName         string
}

type CellsSparklineGroupsDeleteWorksheetSparklineGroupsOpts added in v20.9.0

type CellsSparklineGroupsDeleteWorksheetSparklineGroupsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type CellsSparklineGroupsGetWorksheetSparklineGroupOpts added in v20.9.0

type CellsSparklineGroupsGetWorksheetSparklineGroupOpts struct {
	Name                string
	SheetName           string
	SparklineGroupIndex int64
	Folder              string
	StorageName         string
}

type CellsSparklineGroupsGetWorksheetSparklineGroupsOpts added in v20.9.0

type CellsSparklineGroupsGetWorksheetSparklineGroupsOpts struct {
	Name        string
	SheetName   string
	Folder      string
	StorageName string
}

type Cell