models

package
v2402.0.0 Latest Latest
Warning

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

Go to latest
Published: Feb 26, 2024 License: MIT Imports: 14 Imported by: 0

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")

	// ContextclientSecret takes an ClientSecret as authentication for the request
	ContextClientSecret = contextKey("clientsecret")

	// ContextPasswordEncryptionKey takes a RSA key to encrypt passwords
	ContextPasswordEncryptionKey = "rsakey"
)

Functions ¶

func GetBoundary ¶

func GetBoundary(response *http.Response) string

func GetPartBoundary ¶

func GetPartBoundary(response *multipart.Part) string

func IsMultipart ¶

func IsMultipart(response *http.Response) bool

func IsPartMultipart ¶

func IsPartMultipart(response *multipart.Part) bool

func ParseFilesCollection ¶

func ParseFilesCollection(response *http.Response) (result map[string]io.Reader, err error)

func ParsePartFilesCollection ¶

func ParsePartFilesCollection(response *multipart.Part) (result map[string]io.Reader, err error)

func ParseReadCloserFilesCollection ¶

func ParseReadCloserFilesCollection(response io.Reader, boundary string) (result map[string]io.Reader, err error)

Types ¶

type AcceptAllRevisionsOnlineRequest ¶

type AcceptAllRevisionsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

AcceptAllRevisionsOnlineRequest contains request data for WordsApiService.AcceptAllRevisionsOnline method.

func (*AcceptAllRevisionsOnlineRequest) CreateRequestData ¶

func (data *AcceptAllRevisionsOnlineRequest) CreateRequestData() (RequestData, error)

func (*AcceptAllRevisionsOnlineRequest) CreateResponse ¶

func (data *AcceptAllRevisionsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type AcceptAllRevisionsOnlineResponse ¶

type AcceptAllRevisionsOnlineResponse struct {
	// The REST response with a result of the modification operations for the revisions collection (now these are acceptAll and rejectAll).
	Model IRevisionsModificationResponse

	// The document after modification.
	Document map[string]io.Reader
}

AcceptAllRevisionsOnlineResponse struct Accepts all revisions in the document.

func (*AcceptAllRevisionsOnlineResponse) GetDocument ¶

func (obj *AcceptAllRevisionsOnlineResponse) GetDocument() map[string]io.Reader

func (*AcceptAllRevisionsOnlineResponse) GetModel ¶

func (*AcceptAllRevisionsOnlineResponse) SetDocument ¶

func (obj *AcceptAllRevisionsOnlineResponse) SetDocument(value map[string]io.Reader)

func (*AcceptAllRevisionsOnlineResponse) SetModel ¶

type AcceptAllRevisionsRequest ¶

type AcceptAllRevisionsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

AcceptAllRevisionsRequest contains request data for WordsApiService.AcceptAllRevisions method.

func (*AcceptAllRevisionsRequest) CreateRequestData ¶

func (data *AcceptAllRevisionsRequest) CreateRequestData() (RequestData, error)

func (*AcceptAllRevisionsRequest) CreateResponse ¶

func (data *AcceptAllRevisionsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ApiError ¶

type ApiError struct {
	// Api error.
	Code *string `json:"Code,omitempty"`

	// Api error.
	DateTime *Time `json:"DateTime,omitempty"`

	// Api error.
	Description *string `json:"Description,omitempty"`

	// Api error.
	InnerError IApiError `json:"InnerError,omitempty"`

	// Api error.
	Message *string `json:"Message,omitempty"`
}

func (*ApiError) CollectFilesContent ¶

func (obj *ApiError) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ApiError) Deserialize ¶

func (obj *ApiError) Deserialize(json map[string]interface{})

func (*ApiError) GetCode ¶

func (obj *ApiError) GetCode() *string

func (*ApiError) GetDateTime ¶

func (obj *ApiError) GetDateTime() *Time

func (*ApiError) GetDescription ¶

func (obj *ApiError) GetDescription() *string

func (*ApiError) GetInnerError ¶

func (obj *ApiError) GetInnerError() IApiError

func (*ApiError) GetMessage ¶

func (obj *ApiError) GetMessage() *string

func (*ApiError) Initialize ¶

func (obj *ApiError) Initialize()

func (ApiError) IsApiError ¶

func (ApiError) IsApiError() bool

func (*ApiError) SetCode ¶

func (obj *ApiError) SetCode(value *string)

func (*ApiError) SetDateTime ¶

func (obj *ApiError) SetDateTime(value *Time)

func (*ApiError) SetDescription ¶

func (obj *ApiError) SetDescription(value *string)

func (*ApiError) SetInnerError ¶

func (obj *ApiError) SetInnerError(value IApiError)

func (*ApiError) SetMessage ¶

func (obj *ApiError) SetMessage(value *string)

func (*ApiError) Validate ¶

func (obj *ApiError) Validate() error

type AppendDocumentOnlineRequest ¶

type AppendDocumentOnlineRequest struct {
	// Original document.
	Document io.ReadCloser
	// <see cref="BaseEntryList"/> with a list of entries to append.
	DocumentList IBaseEntryList
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

AppendDocumentOnlineRequest contains request data for WordsApiService.AppendDocumentOnline method.

func (*AppendDocumentOnlineRequest) CreateRequestData ¶

func (data *AppendDocumentOnlineRequest) CreateRequestData() (RequestData, error)

func (*AppendDocumentOnlineRequest) CreateResponse ¶

func (data *AppendDocumentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type AppendDocumentOnlineResponse ¶

type AppendDocumentOnlineResponse struct {
	// The REST response with a document description.
	Model IDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

AppendDocumentOnlineResponse struct Appends documents to the original document.

func (*AppendDocumentOnlineResponse) GetDocument ¶

func (obj *AppendDocumentOnlineResponse) GetDocument() map[string]io.Reader

func (*AppendDocumentOnlineResponse) GetModel ¶

func (*AppendDocumentOnlineResponse) SetDocument ¶

func (obj *AppendDocumentOnlineResponse) SetDocument(value map[string]io.Reader)

func (*AppendDocumentOnlineResponse) SetModel ¶

func (obj *AppendDocumentOnlineResponse) SetModel(value IDocumentResponse)

type AppendDocumentRequest ¶

type AppendDocumentRequest struct {
	// The filename of the input document.
	Name *string
	// <see cref="BaseEntryList"/> with a list of entries to append.
	DocumentList IBaseEntryList
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

AppendDocumentRequest contains request data for WordsApiService.AppendDocument method.

func (*AppendDocumentRequest) CreateRequestData ¶

func (data *AppendDocumentRequest) CreateRequestData() (RequestData, error)

func (*AppendDocumentRequest) CreateResponse ¶

func (data *AppendDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ApplyStyleToDocumentElementOnlineRequest ¶

type ApplyStyleToDocumentElementOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the node in the document tree, that supports styles: ParagraphFormat, List, ListLevel, Table.
	StyledNodePath *string
	// Style to apply.
	StyleApply IStyleApply
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

ApplyStyleToDocumentElementOnlineRequest contains request data for WordsApiService.ApplyStyleToDocumentElementOnline method.

func (*ApplyStyleToDocumentElementOnlineRequest) CreateRequestData ¶

func (data *ApplyStyleToDocumentElementOnlineRequest) CreateRequestData() (RequestData, error)

func (*ApplyStyleToDocumentElementOnlineRequest) CreateResponse ¶

func (data *ApplyStyleToDocumentElementOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ApplyStyleToDocumentElementOnlineResponse ¶

type ApplyStyleToDocumentElementOnlineResponse struct {
	// The base class for all responses.
	Model IWordsResponse

	// The document after modification.
	Document map[string]io.Reader
}

ApplyStyleToDocumentElementOnlineResponse struct Applies a style to the document node.

func (*ApplyStyleToDocumentElementOnlineResponse) GetDocument ¶

func (*ApplyStyleToDocumentElementOnlineResponse) GetModel ¶

func (*ApplyStyleToDocumentElementOnlineResponse) SetDocument ¶

func (obj *ApplyStyleToDocumentElementOnlineResponse) SetDocument(value map[string]io.Reader)

func (*ApplyStyleToDocumentElementOnlineResponse) SetModel ¶

type ApplyStyleToDocumentElementRequest ¶

type ApplyStyleToDocumentElementRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the node in the document tree, that supports styles: ParagraphFormat, List, ListLevel, Table.
	StyledNodePath *string
	// Style to apply.
	StyleApply IStyleApply
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

ApplyStyleToDocumentElementRequest contains request data for WordsApiService.ApplyStyleToDocumentElement method.

func (*ApplyStyleToDocumentElementRequest) CreateRequestData ¶

func (data *ApplyStyleToDocumentElementRequest) CreateRequestData() (RequestData, error)

func (*ApplyStyleToDocumentElementRequest) CreateResponse ¶

func (data *ApplyStyleToDocumentElementRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type AvailableFontsResponse ¶

type AvailableFontsResponse struct {
	// The REST response with data on system, additional and custom fonts, available for document processing.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with data on system, additional and custom fonts, available for document processing.
	AdditionalFonts []IFontInfo `json:"AdditionalFonts,omitempty"`

	// The REST response with data on system, additional and custom fonts, available for document processing.
	CustomFonts []IFontInfo `json:"CustomFonts,omitempty"`

	// The REST response with data on system, additional and custom fonts, available for document processing.
	SystemFonts []IFontInfo `json:"SystemFonts,omitempty"`
}

func (*AvailableFontsResponse) CollectFilesContent ¶

func (obj *AvailableFontsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*AvailableFontsResponse) Deserialize ¶

func (obj *AvailableFontsResponse) Deserialize(json map[string]interface{})

func (*AvailableFontsResponse) GetAdditionalFonts ¶

func (obj *AvailableFontsResponse) GetAdditionalFonts() []IFontInfo

func (*AvailableFontsResponse) GetCustomFonts ¶

func (obj *AvailableFontsResponse) GetCustomFonts() []IFontInfo

func (*AvailableFontsResponse) GetRequestId ¶

func (obj *AvailableFontsResponse) GetRequestId() *string

func (*AvailableFontsResponse) GetSystemFonts ¶

func (obj *AvailableFontsResponse) GetSystemFonts() []IFontInfo

func (*AvailableFontsResponse) Initialize ¶

func (obj *AvailableFontsResponse) Initialize()

func (AvailableFontsResponse) IsAvailableFontsResponse ¶

func (AvailableFontsResponse) IsAvailableFontsResponse() bool

func (AvailableFontsResponse) IsWordsResponse ¶

func (AvailableFontsResponse) IsWordsResponse() bool

func (*AvailableFontsResponse) SetAdditionalFonts ¶

func (obj *AvailableFontsResponse) SetAdditionalFonts(value []IFontInfo)

func (*AvailableFontsResponse) SetCustomFonts ¶

func (obj *AvailableFontsResponse) SetCustomFonts(value []IFontInfo)

func (*AvailableFontsResponse) SetRequestId ¶

func (obj *AvailableFontsResponse) SetRequestId(value *string)

func (*AvailableFontsResponse) SetSystemFonts ¶

func (obj *AvailableFontsResponse) SetSystemFonts(value []IFontInfo)

func (*AvailableFontsResponse) Validate ¶

func (obj *AvailableFontsResponse) Validate() error

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 BatchPartRequest ¶

type BatchPartRequest struct {
	// Request Id.
	RequestId *string

	// Parent Request Id.
	ParentRequestId *string

	// inner request
	Request RequestInterface
}

The REST response with data on system, additional and custom fonts, available for document processing.

func NewBatchPartRequest ¶

func NewBatchPartRequest(request RequestInterface) *BatchPartRequest

Create new instance of struct.

func (*BatchPartRequest) AsSource ¶

func (c *BatchPartRequest) AsSource() io.ReadCloser

use request's response as a source

func (*BatchPartRequest) CreateRequestData ¶

func (c *BatchPartRequest) CreateRequestData() (RequestData, error)

create request options

func (*BatchPartRequest) CreateResponse ¶

func (c *BatchPartRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

parse response

func (*BatchPartRequest) DependsOn ¶

func (c *BatchPartRequest) DependsOn(parentRequest BatchPartRequest)

set parent request. @param parentRequest parent request.

type BmpSaveOptionsData ¶

type BmpSaveOptionsData struct {
	// Container class for bmp save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for bmp save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for bmp save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for bmp save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for bmp save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for bmp save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for bmp save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for bmp save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for bmp save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for bmp save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for bmp save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for bmp save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for bmp save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for bmp save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for bmp save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for bmp save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for bmp save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for bmp save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for bmp save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for bmp save options.
	HorizontalResolution *float64 `json:"HorizontalResolution,omitempty"`

	// Container class for bmp save options.
	ImageBrightness *float64 `json:"ImageBrightness,omitempty"`

	// Container class for bmp save options.
	ImageColorMode *string `json:"ImageColorMode,omitempty"`

	// Container class for bmp save options.
	ImageContrast *float64 `json:"ImageContrast,omitempty"`

	// Container class for bmp save options.
	PaperColor *string `json:"PaperColor,omitempty"`

	// Container class for bmp save options.
	PixelFormat *string `json:"PixelFormat,omitempty"`

	// Container class for bmp save options.
	Resolution *float64 `json:"Resolution,omitempty"`

	// Container class for bmp save options.
	Scale *float64 `json:"Scale,omitempty"`

	// Container class for bmp save options.
	UseAntiAliasing *bool `json:"UseAntiAliasing,omitempty"`

	// Container class for bmp save options.
	UseHighQualityRendering *bool `json:"UseHighQualityRendering,omitempty"`

	// Container class for bmp save options.
	VerticalResolution *float64 `json:"VerticalResolution,omitempty"`

	// Container class for bmp save options.
	ImageHeight *int32 `json:"ImageHeight,omitempty"`

	// Container class for bmp save options.
	ImageWidth *int32 `json:"ImageWidth,omitempty"`

	// Container class for bmp save options.
	UseGdiEmfRenderer *bool `json:"UseGdiEmfRenderer,omitempty"`

	// Container class for bmp save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*BmpSaveOptionsData) CollectFilesContent ¶

func (obj *BmpSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*BmpSaveOptionsData) Deserialize ¶

func (obj *BmpSaveOptionsData) Deserialize(json map[string]interface{})

func (*BmpSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *BmpSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*BmpSaveOptionsData) GetColorMode ¶

func (obj *BmpSaveOptionsData) GetColorMode() *string

func (*BmpSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *BmpSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*BmpSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *BmpSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*BmpSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *BmpSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*BmpSaveOptionsData) GetDmlRenderingMode ¶

func (obj *BmpSaveOptionsData) GetDmlRenderingMode() *string

func (*BmpSaveOptionsData) GetFileName ¶

func (obj *BmpSaveOptionsData) GetFileName() *string

func (*BmpSaveOptionsData) GetHorizontalResolution ¶

func (obj *BmpSaveOptionsData) GetHorizontalResolution() *float64

func (*BmpSaveOptionsData) GetImageBrightness ¶

func (obj *BmpSaveOptionsData) GetImageBrightness() *float64

func (*BmpSaveOptionsData) GetImageColorMode ¶

func (obj *BmpSaveOptionsData) GetImageColorMode() *string

func (*BmpSaveOptionsData) GetImageContrast ¶

func (obj *BmpSaveOptionsData) GetImageContrast() *float64

func (*BmpSaveOptionsData) GetImageHeight ¶

func (obj *BmpSaveOptionsData) GetImageHeight() *int32

func (*BmpSaveOptionsData) GetImageWidth ¶

func (obj *BmpSaveOptionsData) GetImageWidth() *int32

func (*BmpSaveOptionsData) GetImlRenderingMode ¶

func (obj *BmpSaveOptionsData) GetImlRenderingMode() *string

func (*BmpSaveOptionsData) GetJpegQuality ¶

func (obj *BmpSaveOptionsData) GetJpegQuality() *int32

func (*BmpSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *BmpSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*BmpSaveOptionsData) GetNumeralFormat ¶

func (obj *BmpSaveOptionsData) GetNumeralFormat() *string

func (*BmpSaveOptionsData) GetOptimizeOutput ¶

func (obj *BmpSaveOptionsData) GetOptimizeOutput() *bool

func (*BmpSaveOptionsData) GetPageCount ¶

func (obj *BmpSaveOptionsData) GetPageCount() *int32

func (*BmpSaveOptionsData) GetPageIndex ¶

func (obj *BmpSaveOptionsData) GetPageIndex() *int32

func (*BmpSaveOptionsData) GetPaperColor ¶

func (obj *BmpSaveOptionsData) GetPaperColor() *string

func (*BmpSaveOptionsData) GetPixelFormat ¶

func (obj *BmpSaveOptionsData) GetPixelFormat() *string

func (*BmpSaveOptionsData) GetResolution ¶

func (obj *BmpSaveOptionsData) GetResolution() *float64

func (*BmpSaveOptionsData) GetSaveFormat ¶

func (obj *BmpSaveOptionsData) GetSaveFormat() *string

func (*BmpSaveOptionsData) GetScale ¶

func (obj *BmpSaveOptionsData) GetScale() *float64

func (*BmpSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *BmpSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*BmpSaveOptionsData) GetUpdateFields ¶

func (obj *BmpSaveOptionsData) GetUpdateFields() *bool

func (*BmpSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *BmpSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*BmpSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *BmpSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*BmpSaveOptionsData) GetUseAntiAliasing ¶

func (obj *BmpSaveOptionsData) GetUseAntiAliasing() *bool

func (*BmpSaveOptionsData) GetUseGdiEmfRenderer ¶

func (obj *BmpSaveOptionsData) GetUseGdiEmfRenderer() *bool

func (*BmpSaveOptionsData) GetUseHighQualityRendering ¶

func (obj *BmpSaveOptionsData) GetUseHighQualityRendering() *bool

func (*BmpSaveOptionsData) GetVerticalResolution ¶

func (obj *BmpSaveOptionsData) GetVerticalResolution() *float64

func (*BmpSaveOptionsData) GetZipOutput ¶

func (obj *BmpSaveOptionsData) GetZipOutput() *bool

func (*BmpSaveOptionsData) Initialize ¶

func (obj *BmpSaveOptionsData) Initialize()

func (BmpSaveOptionsData) IsBmpSaveOptionsData ¶

func (BmpSaveOptionsData) IsBmpSaveOptionsData() bool

func (BmpSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (BmpSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (BmpSaveOptionsData) IsImageSaveOptionsData ¶

func (BmpSaveOptionsData) IsImageSaveOptionsData() bool

func (BmpSaveOptionsData) IsSaveOptionsData ¶

func (BmpSaveOptionsData) IsSaveOptionsData() bool

func (*BmpSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *BmpSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*BmpSaveOptionsData) SetColorMode ¶

func (obj *BmpSaveOptionsData) SetColorMode(value *string)

func (*BmpSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *BmpSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*BmpSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *BmpSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*BmpSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *BmpSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*BmpSaveOptionsData) SetDmlRenderingMode ¶

func (obj *BmpSaveOptionsData) SetDmlRenderingMode(value *string)

func (*BmpSaveOptionsData) SetFileName ¶

func (obj *BmpSaveOptionsData) SetFileName(value *string)

func (*BmpSaveOptionsData) SetHorizontalResolution ¶

func (obj *BmpSaveOptionsData) SetHorizontalResolution(value *float64)

func (*BmpSaveOptionsData) SetImageBrightness ¶

func (obj *BmpSaveOptionsData) SetImageBrightness(value *float64)

func (*BmpSaveOptionsData) SetImageColorMode ¶

func (obj *BmpSaveOptionsData) SetImageColorMode(value *string)

func (*BmpSaveOptionsData) SetImageContrast ¶

func (obj *BmpSaveOptionsData) SetImageContrast(value *float64)

func (*BmpSaveOptionsData) SetImageHeight ¶

func (obj *BmpSaveOptionsData) SetImageHeight(value *int32)

func (*BmpSaveOptionsData) SetImageWidth ¶

func (obj *BmpSaveOptionsData) SetImageWidth(value *int32)

func (*BmpSaveOptionsData) SetImlRenderingMode ¶

func (obj *BmpSaveOptionsData) SetImlRenderingMode(value *string)

func (*BmpSaveOptionsData) SetJpegQuality ¶

func (obj *BmpSaveOptionsData) SetJpegQuality(value *int32)

func (*BmpSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *BmpSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*BmpSaveOptionsData) SetNumeralFormat ¶

func (obj *BmpSaveOptionsData) SetNumeralFormat(value *string)

func (*BmpSaveOptionsData) SetOptimizeOutput ¶

func (obj *BmpSaveOptionsData) SetOptimizeOutput(value *bool)

func (*BmpSaveOptionsData) SetPageCount ¶

func (obj *BmpSaveOptionsData) SetPageCount(value *int32)

func (*BmpSaveOptionsData) SetPageIndex ¶

func (obj *BmpSaveOptionsData) SetPageIndex(value *int32)

func (*BmpSaveOptionsData) SetPaperColor ¶

func (obj *BmpSaveOptionsData) SetPaperColor(value *string)

func (*BmpSaveOptionsData) SetPixelFormat ¶

func (obj *BmpSaveOptionsData) SetPixelFormat(value *string)

func (*BmpSaveOptionsData) SetResolution ¶

func (obj *BmpSaveOptionsData) SetResolution(value *float64)

func (*BmpSaveOptionsData) SetSaveFormat ¶

func (obj *BmpSaveOptionsData) SetSaveFormat(value *string)

func (*BmpSaveOptionsData) SetScale ¶

func (obj *BmpSaveOptionsData) SetScale(value *float64)

func (*BmpSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *BmpSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*BmpSaveOptionsData) SetUpdateFields ¶

func (obj *BmpSaveOptionsData) SetUpdateFields(value *bool)

func (*BmpSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *BmpSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*BmpSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *BmpSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*BmpSaveOptionsData) SetUseAntiAliasing ¶

func (obj *BmpSaveOptionsData) SetUseAntiAliasing(value *bool)

func (*BmpSaveOptionsData) SetUseGdiEmfRenderer ¶

func (obj *BmpSaveOptionsData) SetUseGdiEmfRenderer(value *bool)

func (*BmpSaveOptionsData) SetUseHighQualityRendering ¶

func (obj *BmpSaveOptionsData) SetUseHighQualityRendering(value *bool)

func (*BmpSaveOptionsData) SetVerticalResolution ¶

func (obj *BmpSaveOptionsData) SetVerticalResolution(value *float64)

func (*BmpSaveOptionsData) SetZipOutput ¶

func (obj *BmpSaveOptionsData) SetZipOutput(value *bool)

func (*BmpSaveOptionsData) Validate ¶

func (obj *BmpSaveOptionsData) Validate() error

type Bookmark ¶

type Bookmark struct {
	// Represents a single bookmark.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Represents a single bookmark.
	Name *string `json:"Name,omitempty"`

	// Represents a single bookmark.
	Text *string `json:"Text,omitempty"`
}

func (*Bookmark) CollectFilesContent ¶

func (obj *Bookmark) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Bookmark) Deserialize ¶

func (obj *Bookmark) Deserialize(json map[string]interface{})
func (obj *Bookmark) GetLink() IWordsApiLink

func (*Bookmark) GetName ¶

func (obj *Bookmark) GetName() *string

func (*Bookmark) GetText ¶

func (obj *Bookmark) GetText() *string

func (*Bookmark) Initialize ¶

func (obj *Bookmark) Initialize()

func (Bookmark) IsBookmark ¶

func (Bookmark) IsBookmark() bool

func (Bookmark) IsLinkElement ¶

func (Bookmark) IsLinkElement() bool
func (obj *Bookmark) SetLink(value IWordsApiLink)

func (*Bookmark) SetName ¶

func (obj *Bookmark) SetName(value *string)

func (*Bookmark) SetText ¶

func (obj *Bookmark) SetText(value *string)

func (*Bookmark) Validate ¶

func (obj *Bookmark) Validate() error

type BookmarkData ¶

type BookmarkData struct {
	// DTO for bookmark updating.
	Name *string `json:"Name,omitempty"`

	// DTO for bookmark updating.
	Text *string `json:"Text,omitempty"`
}

func (*BookmarkData) CollectFilesContent ¶

func (obj *BookmarkData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*BookmarkData) Deserialize ¶

func (obj *BookmarkData) Deserialize(json map[string]interface{})

func (*BookmarkData) GetName ¶

func (obj *BookmarkData) GetName() *string

func (*BookmarkData) GetText ¶

func (obj *BookmarkData) GetText() *string

func (*BookmarkData) Initialize ¶

func (obj *BookmarkData) Initialize()

func (BookmarkData) IsBookmarkData ¶

func (BookmarkData) IsBookmarkData() bool

func (*BookmarkData) SetName ¶

func (obj *BookmarkData) SetName(value *string)

func (*BookmarkData) SetText ¶

func (obj *BookmarkData) SetText(value *string)

func (*BookmarkData) Validate ¶

func (obj *BookmarkData) Validate() error

type BookmarkInsert ¶

type BookmarkInsert struct {
	// Represents a bookmark to insert.
	Name *string `json:"Name,omitempty"`

	// Represents a bookmark to insert.
	Text *string `json:"Text,omitempty"`

	// Represents a bookmark to insert.
	StartRange IPosition `json:"StartRange,omitempty"`

	// Represents a bookmark to insert.
	EndRange IPosition `json:"EndRange,omitempty"`
}

func (*BookmarkInsert) CollectFilesContent ¶

func (obj *BookmarkInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*BookmarkInsert) Deserialize ¶

func (obj *BookmarkInsert) Deserialize(json map[string]interface{})

func (*BookmarkInsert) GetEndRange ¶

func (obj *BookmarkInsert) GetEndRange() IPosition

func (*BookmarkInsert) GetName ¶

func (obj *BookmarkInsert) GetName() *string

func (*BookmarkInsert) GetStartRange ¶

func (obj *BookmarkInsert) GetStartRange() IPosition

func (*BookmarkInsert) GetText ¶

func (obj *BookmarkInsert) GetText() *string

func (*BookmarkInsert) Initialize ¶

func (obj *BookmarkInsert) Initialize()

func (BookmarkInsert) IsBookmarkInsert ¶

func (BookmarkInsert) IsBookmarkInsert() bool

func (*BookmarkInsert) SetEndRange ¶

func (obj *BookmarkInsert) SetEndRange(value IPosition)

func (*BookmarkInsert) SetName ¶

func (obj *BookmarkInsert) SetName(value *string)

func (*BookmarkInsert) SetStartRange ¶

func (obj *BookmarkInsert) SetStartRange(value IPosition)

func (*BookmarkInsert) SetText ¶

func (obj *BookmarkInsert) SetText(value *string)

func (*BookmarkInsert) Validate ¶

func (obj *BookmarkInsert) Validate() error

type BookmarkResponse ¶

type BookmarkResponse struct {
	// The REST response with a bookmark.
	// This response should be returned by the service when handling: GET bookmarks/{bookmarkName}.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a bookmark.
	// This response should be returned by the service when handling: GET bookmarks/{bookmarkName}.
	Bookmark IBookmark `json:"Bookmark,omitempty"`
}

func (*BookmarkResponse) CollectFilesContent ¶

func (obj *BookmarkResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*BookmarkResponse) Deserialize ¶

func (obj *BookmarkResponse) Deserialize(json map[string]interface{})

func (*BookmarkResponse) GetBookmark ¶

func (obj *BookmarkResponse) GetBookmark() IBookmark

func (*BookmarkResponse) GetRequestId ¶

func (obj *BookmarkResponse) GetRequestId() *string

func (*BookmarkResponse) Initialize ¶

func (obj *BookmarkResponse) Initialize()

func (BookmarkResponse) IsBookmarkResponse ¶

func (BookmarkResponse) IsBookmarkResponse() bool

func (BookmarkResponse) IsWordsResponse ¶

func (BookmarkResponse) IsWordsResponse() bool

func (*BookmarkResponse) SetBookmark ¶

func (obj *BookmarkResponse) SetBookmark(value IBookmark)

func (*BookmarkResponse) SetRequestId ¶

func (obj *BookmarkResponse) SetRequestId(value *string)

func (*BookmarkResponse) Validate ¶

func (obj *BookmarkResponse) Validate() error

type Bookmarks ¶

type Bookmarks struct {
	// Represents an array of bookmarks.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Represents an array of bookmarks.
	BookmarkList []IBookmark `json:"BookmarkList,omitempty"`
}

func (*Bookmarks) CollectFilesContent ¶

func (obj *Bookmarks) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Bookmarks) Deserialize ¶

func (obj *Bookmarks) Deserialize(json map[string]interface{})

func (*Bookmarks) GetBookmarkList ¶

func (obj *Bookmarks) GetBookmarkList() []IBookmark
func (obj *Bookmarks) GetLink() IWordsApiLink

func (*Bookmarks) Initialize ¶

func (obj *Bookmarks) Initialize()

func (Bookmarks) IsBookmarks ¶

func (Bookmarks) IsBookmarks() bool

func (Bookmarks) IsLinkElement ¶

func (Bookmarks) IsLinkElement() bool

func (*Bookmarks) SetBookmarkList ¶

func (obj *Bookmarks) SetBookmarkList(value []IBookmark)
func (obj *Bookmarks) SetLink(value IWordsApiLink)

func (*Bookmarks) Validate ¶

func (obj *Bookmarks) Validate() error

type BookmarksOutlineLevelData ¶

type BookmarksOutlineLevelData struct {
	// Container class for individual bookmarks outline level.
	BookmarksOutlineLevel *int32 `json:"BookmarksOutlineLevel,omitempty"`

	// Container class for individual bookmarks outline level.
	Name *string `json:"Name,omitempty"`
}

func (*BookmarksOutlineLevelData) CollectFilesContent ¶

func (obj *BookmarksOutlineLevelData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*BookmarksOutlineLevelData) Deserialize ¶

func (obj *BookmarksOutlineLevelData) Deserialize(json map[string]interface{})

func (*BookmarksOutlineLevelData) GetBookmarksOutlineLevel ¶

func (obj *BookmarksOutlineLevelData) GetBookmarksOutlineLevel() *int32

func (*BookmarksOutlineLevelData) GetName ¶

func (obj *BookmarksOutlineLevelData) GetName() *string

func (*BookmarksOutlineLevelData) Initialize ¶

func (obj *BookmarksOutlineLevelData) Initialize()

func (BookmarksOutlineLevelData) IsBookmarksOutlineLevelData ¶

func (BookmarksOutlineLevelData) IsBookmarksOutlineLevelData() bool

func (*BookmarksOutlineLevelData) SetBookmarksOutlineLevel ¶

func (obj *BookmarksOutlineLevelData) SetBookmarksOutlineLevel(value *int32)

func (*BookmarksOutlineLevelData) SetName ¶

func (obj *BookmarksOutlineLevelData) SetName(value *string)

func (*BookmarksOutlineLevelData) Validate ¶

func (obj *BookmarksOutlineLevelData) Validate() error

type BookmarksResponse ¶

type BookmarksResponse struct {
	// The REST response with a collection of bookmarks.
	// This response should be returned by the service when handling: GET bookmarks.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of bookmarks.
	// This response should be returned by the service when handling: GET bookmarks.
	Bookmarks IBookmarks `json:"Bookmarks,omitempty"`
}

func (*BookmarksResponse) CollectFilesContent ¶

func (obj *BookmarksResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*BookmarksResponse) Deserialize ¶

func (obj *BookmarksResponse) Deserialize(json map[string]interface{})

func (*BookmarksResponse) GetBookmarks ¶

func (obj *BookmarksResponse) GetBookmarks() IBookmarks

func (*BookmarksResponse) GetRequestId ¶

func (obj *BookmarksResponse) GetRequestId() *string

func (*BookmarksResponse) Initialize ¶

func (obj *BookmarksResponse) Initialize()

func (BookmarksResponse) IsBookmarksResponse ¶

func (BookmarksResponse) IsBookmarksResponse() bool

func (BookmarksResponse) IsWordsResponse ¶

func (BookmarksResponse) IsWordsResponse() bool

func (*BookmarksResponse) SetBookmarks ¶

func (obj *BookmarksResponse) SetBookmarks(value IBookmarks)

func (*BookmarksResponse) SetRequestId ¶

func (obj *BookmarksResponse) SetRequestId(value *string)

func (*BookmarksResponse) Validate ¶

func (obj *BookmarksResponse) Validate() error

type Border ¶

type Border struct {
	// Represents a border of an object.
	// Borders can be applied to various document elements including paragraph, run of text inside a paragraph or a table cell.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Represents a border of an object.
	// Borders can be applied to various document elements including paragraph, run of text inside a paragraph or a table cell.
	BorderType *string `json:"BorderType,omitempty"`

	// Represents a border of an object.
	// Borders can be applied to various document elements including paragraph, run of text inside a paragraph or a table cell.
	Color IXmlColor `json:"Color,omitempty"`

	// Represents a border of an object.
	// Borders can be applied to various document elements including paragraph, run of text inside a paragraph or a table cell.
	DistanceFromText *float64 `json:"DistanceFromText,omitempty"`

	// Represents a border of an object.
	// Borders can be applied to various document elements including paragraph, run of text inside a paragraph or a table cell.
	LineStyle *string `json:"LineStyle,omitempty"`

	// Represents a border of an object.
	// Borders can be applied to various document elements including paragraph, run of text inside a paragraph or a table cell.
	LineWidth *float64 `json:"LineWidth,omitempty"`

	// Represents a border of an object.
	// Borders can be applied to various document elements including paragraph, run of text inside a paragraph or a table cell.
	Shadow *bool `json:"Shadow,omitempty"`
}

func (*Border) CollectFilesContent ¶

func (obj *Border) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Border) Deserialize ¶

func (obj *Border) Deserialize(json map[string]interface{})

func (*Border) GetBorderType ¶

func (obj *Border) GetBorderType() *string

func (*Border) GetColor ¶

func (obj *Border) GetColor() IXmlColor

func (*Border) GetDistanceFromText ¶

func (obj *Border) GetDistanceFromText() *float64

func (*Border) GetLineStyle ¶

func (obj *Border) GetLineStyle() *string

func (*Border) GetLineWidth ¶

func (obj *Border) GetLineWidth() *float64
func (obj *Border) GetLink() IWordsApiLink

func (*Border) GetShadow ¶

func (obj *Border) GetShadow() *bool

func (*Border) Initialize ¶

func (obj *Border) Initialize()

func (Border) IsBorder ¶

func (Border) IsBorder() bool

func (Border) IsLinkElement ¶

func (Border) IsLinkElement() bool

func (*Border) SetBorderType ¶

func (obj *Border) SetBorderType(value *string)

func (*Border) SetColor ¶

func (obj *Border) SetColor(value IXmlColor)

func (*Border) SetDistanceFromText ¶

func (obj *Border) SetDistanceFromText(value *float64)

func (*Border) SetLineStyle ¶

func (obj *Border) SetLineStyle(value *string)

func (*Border) SetLineWidth ¶

func (obj *Border) SetLineWidth(value *float64)
func (obj *Border) SetLink(value IWordsApiLink)

func (*Border) SetShadow ¶

func (obj *Border) SetShadow(value *bool)

func (*Border) Validate ¶

func (obj *Border) Validate() error

type BorderResponse ¶

type BorderResponse struct {
	// The REST response with a border.
	// This response is returned by the Service when handling "GET {nodeWithBorders}/borders" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a border.
	// This response is returned by the Service when handling "GET {nodeWithBorders}/borders" REST API requests.
	Border IBorder `json:"Border,omitempty"`
}

func (*BorderResponse) CollectFilesContent ¶

func (obj *BorderResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*BorderResponse) Deserialize ¶

func (obj *BorderResponse) Deserialize(json map[string]interface{})

func (*BorderResponse) GetBorder ¶

func (obj *BorderResponse) GetBorder() IBorder

func (*BorderResponse) GetRequestId ¶

func (obj *BorderResponse) GetRequestId() *string

func (*BorderResponse) Initialize ¶

func (obj *BorderResponse) Initialize()

func (BorderResponse) IsBorderResponse ¶

func (BorderResponse) IsBorderResponse() bool

func (BorderResponse) IsWordsResponse ¶

func (BorderResponse) IsWordsResponse() bool

func (*BorderResponse) SetBorder ¶

func (obj *BorderResponse) SetBorder(value IBorder)

func (*BorderResponse) SetRequestId ¶

func (obj *BorderResponse) SetRequestId(value *string)

func (*BorderResponse) Validate ¶

func (obj *BorderResponse) Validate() error

type BordersCollection ¶

type BordersCollection struct {
	// The collection of borders.
	Link IWordsApiLink `json:"Link,omitempty"`

	// The collection of borders.
	List []IBorder `json:"List,omitempty"`
}

func (*BordersCollection) CollectFilesContent ¶

func (obj *BordersCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*BordersCollection) Deserialize ¶

func (obj *BordersCollection) Deserialize(json map[string]interface{})
func (obj *BordersCollection) GetLink() IWordsApiLink

func (*BordersCollection) GetList ¶

func (obj *BordersCollection) GetList() []IBorder

func (*BordersCollection) Initialize ¶

func (obj *BordersCollection) Initialize()

func (BordersCollection) IsBordersCollection ¶

func (BordersCollection) IsBordersCollection() bool

func (BordersCollection) IsLinkElement ¶

func (BordersCollection) IsLinkElement() bool
func (obj *BordersCollection) SetLink(value IWordsApiLink)

func (*BordersCollection) SetList ¶

func (obj *BordersCollection) SetList(value []IBorder)

func (*BordersCollection) Validate ¶

func (obj *BordersCollection) Validate() error

type BordersResponse ¶

type BordersResponse struct {
	// The REST response with a collection of borders.
	// This response is returned by the Service when handling "GET {nodeWithBorders}/borders" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of borders.
	// This response is returned by the Service when handling "GET {nodeWithBorders}/borders" REST API requests.
	Borders IBordersCollection `json:"Borders,omitempty"`
}

func (*BordersResponse) CollectFilesContent ¶

func (obj *BordersResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*BordersResponse) Deserialize ¶

func (obj *BordersResponse) Deserialize(json map[string]interface{})

func (*BordersResponse) GetBorders ¶

func (obj *BordersResponse) GetBorders() IBordersCollection

func (*BordersResponse) GetRequestId ¶

func (obj *BordersResponse) GetRequestId() *string

func (*BordersResponse) Initialize ¶

func (obj *BordersResponse) Initialize()

func (BordersResponse) IsBordersResponse ¶

func (BordersResponse) IsBordersResponse() bool

func (BordersResponse) IsWordsResponse ¶

func (BordersResponse) IsWordsResponse() bool

func (*BordersResponse) SetBorders ¶

func (obj *BordersResponse) SetBorders(value IBordersCollection)

func (*BordersResponse) SetRequestId ¶

func (obj *BordersResponse) SetRequestId(value *string)

func (*BordersResponse) Validate ¶

func (obj *BordersResponse) Validate() error

type BuildReportOnlineRequest ¶

type BuildReportOnlineRequest struct {
	// File with template.
	Template io.ReadCloser
	// A string providing a data to populate the specified template. The string must be of one of the following types: xml, json, csv.
	Data *string
	// An object providing a settings of report engine.
	ReportEngineSettings IReportEngineSettings
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "documentFileName" value: (*string) The filename of the output document, that will be used when the resulting document has a dynamic field {filename}. If it is not set, the "template" will be used instead. */
	Optionals map[string]interface{}
}

BuildReportOnlineRequest contains request data for WordsApiService.BuildReportOnline method.

func (*BuildReportOnlineRequest) CreateRequestData ¶

func (data *BuildReportOnlineRequest) CreateRequestData() (RequestData, error)

func (*BuildReportOnlineRequest) CreateResponse ¶

func (data *BuildReportOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type BuildReportRequest ¶

type BuildReportRequest struct {
	// The filename of the input document.
	Name *string
	// A string providing a data to populate the specified template. The string must be of one of the following types: xml, json, csv.
	Data *string
	// An object providing a settings of report engine.
	ReportEngineSettings IReportEngineSettings
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) The filename of the output document. If this parameter is omitted, the result will be saved with autogenerated name. */
	Optionals map[string]interface{}
}

BuildReportRequest contains request data for WordsApiService.BuildReport method.

func (*BuildReportRequest) CreateRequestData ¶

func (data *BuildReportRequest) CreateRequestData() (RequestData, error)

func (*BuildReportRequest) CreateResponse ¶

func (data *BuildReportRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ClassificationResponse ¶

type ClassificationResponse struct {
	// The REST response with data on multi-class text classification.
	// This response is returned by the Service when handling "PUT https://api.aspose.cloud/v4.0/words/classify" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with data on multi-class text classification.
	// This response is returned by the Service when handling "PUT https://api.aspose.cloud/v4.0/words/classify" REST API requests.
	BestClassName *string `json:"BestClassName,omitempty"`

	// The REST response with data on multi-class text classification.
	// This response is returned by the Service when handling "PUT https://api.aspose.cloud/v4.0/words/classify" REST API requests.
	BestClassProbability *float64 `json:"BestClassProbability,omitempty"`

	// The REST response with data on multi-class text classification.
	// This response is returned by the Service when handling "PUT https://api.aspose.cloud/v4.0/words/classify" REST API requests.
	BestResults []IClassificationResult `json:"BestResults,omitempty"`
}

func (*ClassificationResponse) CollectFilesContent ¶

func (obj *ClassificationResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ClassificationResponse) Deserialize ¶

func (obj *ClassificationResponse) Deserialize(json map[string]interface{})

func (*ClassificationResponse) GetBestClassName ¶

func (obj *ClassificationResponse) GetBestClassName() *string

func (*ClassificationResponse) GetBestClassProbability ¶

func (obj *ClassificationResponse) GetBestClassProbability() *float64

func (*ClassificationResponse) GetBestResults ¶

func (obj *ClassificationResponse) GetBestResults() []IClassificationResult

func (*ClassificationResponse) GetRequestId ¶

func (obj *ClassificationResponse) GetRequestId() *string

func (*ClassificationResponse) Initialize ¶

func (obj *ClassificationResponse) Initialize()

func (ClassificationResponse) IsClassificationResponse ¶

func (ClassificationResponse) IsClassificationResponse() bool

func (ClassificationResponse) IsWordsResponse ¶

func (ClassificationResponse) IsWordsResponse() bool

func (*ClassificationResponse) SetBestClassName ¶

func (obj *ClassificationResponse) SetBestClassName(value *string)

func (*ClassificationResponse) SetBestClassProbability ¶

func (obj *ClassificationResponse) SetBestClassProbability(value *float64)

func (*ClassificationResponse) SetBestResults ¶

func (obj *ClassificationResponse) SetBestResults(value []IClassificationResult)

func (*ClassificationResponse) SetRequestId ¶

func (obj *ClassificationResponse) SetRequestId(value *string)

func (*ClassificationResponse) Validate ¶

func (obj *ClassificationResponse) Validate() error

type ClassificationResult ¶

type ClassificationResult struct {
	// Represents a single classification result.
	ClassName *string `json:"ClassName,omitempty"`

	// Represents a single classification result.
	ClassProbability *float64 `json:"ClassProbability,omitempty"`
}

func (*ClassificationResult) CollectFilesContent ¶

func (obj *ClassificationResult) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ClassificationResult) Deserialize ¶

func (obj *ClassificationResult) Deserialize(json map[string]interface{})

func (*ClassificationResult) GetClassName ¶

func (obj *ClassificationResult) GetClassName() *string

func (*ClassificationResult) GetClassProbability ¶

func (obj *ClassificationResult) GetClassProbability() *float64

func (*ClassificationResult) Initialize ¶

func (obj *ClassificationResult) Initialize()

func (ClassificationResult) IsClassificationResult ¶

func (ClassificationResult) IsClassificationResult() bool

func (*ClassificationResult) SetClassName ¶

func (obj *ClassificationResult) SetClassName(value *string)

func (*ClassificationResult) SetClassProbability ¶

func (obj *ClassificationResult) SetClassProbability(value *float64)

func (*ClassificationResult) Validate ¶

func (obj *ClassificationResult) Validate() error

type ClassifyDocumentOnlineRequest ¶

type ClassifyDocumentOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "bestClassesCount" value: (*string) The number of the best classes to return.
	   key: "taxonomy" value: (*string) The taxonomy to use. */
	Optionals map[string]interface{}
}

ClassifyDocumentOnlineRequest contains request data for WordsApiService.ClassifyDocumentOnline method.

func (*ClassifyDocumentOnlineRequest) CreateRequestData ¶

func (data *ClassifyDocumentOnlineRequest) CreateRequestData() (RequestData, error)

func (*ClassifyDocumentOnlineRequest) CreateResponse ¶

func (data *ClassifyDocumentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ClassifyDocumentRequest ¶

type ClassifyDocumentRequest struct {
	// The document name.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "bestClassesCount" value: (*string) The number of the best classes to return.
	   key: "taxonomy" value: (*string) The taxonomy to use. */
	Optionals map[string]interface{}
}

ClassifyDocumentRequest contains request data for WordsApiService.ClassifyDocument method.

func (*ClassifyDocumentRequest) CreateRequestData ¶

func (data *ClassifyDocumentRequest) CreateRequestData() (RequestData, error)

func (*ClassifyDocumentRequest) CreateResponse ¶

func (data *ClassifyDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ClassifyRequest ¶

type ClassifyRequest struct {
	// The text to classify.
	Text *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "bestClassesCount" value: (*string) The number of the best classes to return. */
	Optionals map[string]interface{}
}

ClassifyRequest contains request data for WordsApiService.Classify method.

func (*ClassifyRequest) CreateRequestData ¶

func (data *ClassifyRequest) CreateRequestData() (RequestData, error)

func (*ClassifyRequest) CreateResponse ¶

func (data *ClassifyRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ClientSecret ¶

type ClientSecret struct {
	Key    string
	Prefix string
}

ClientSecret provides API key based authentication to a request passed via context using ContextclientSecret

type Comment ¶

type Comment struct {
	// DTO container with a comment.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a comment.
	RangeStart IDocumentPosition `json:"RangeStart,omitempty"`

	// DTO container with a comment.
	RangeEnd IDocumentPosition `json:"RangeEnd,omitempty"`

	// DTO container with a comment.
	Author *string `json:"Author,omitempty"`

	// DTO container with a comment.
	Initial *string `json:"Initial,omitempty"`

	// DTO container with a comment.
	DateTime *Time `json:"DateTime,omitempty"`

	// DTO container with a comment.
	Text *string `json:"Text,omitempty"`

	// DTO container with a comment.
	Content IStoryChildNodes `json:"Content,omitempty"`
}

func (*Comment) CollectFilesContent ¶

func (obj *Comment) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Comment) Deserialize ¶

func (obj *Comment) Deserialize(json map[string]interface{})

func (*Comment) GetAuthor ¶

func (obj *Comment) GetAuthor() *string

func (*Comment) GetContent ¶

func (obj *Comment) GetContent() IStoryChildNodes

func (*Comment) GetDateTime ¶

func (obj *Comment) GetDateTime() *Time

func (*Comment) GetInitial ¶

func (obj *Comment) GetInitial() *string
func (obj *Comment) GetLink() IWordsApiLink

func (*Comment) GetRangeEnd ¶

func (obj *Comment) GetRangeEnd() IDocumentPosition

func (*Comment) GetRangeStart ¶

func (obj *Comment) GetRangeStart() IDocumentPosition

func (*Comment) GetText ¶

func (obj *Comment) GetText() *string

func (*Comment) Initialize ¶

func (obj *Comment) Initialize()

func (Comment) IsComment ¶

func (Comment) IsComment() bool
func (Comment) IsCommentLink() bool

func (Comment) IsLinkElement ¶

func (Comment) IsLinkElement() bool

func (*Comment) SetAuthor ¶

func (obj *Comment) SetAuthor(value *string)

func (*Comment) SetContent ¶

func (obj *Comment) SetContent(value IStoryChildNodes)

func (*Comment) SetDateTime ¶

func (obj *Comment) SetDateTime(value *Time)

func (*Comment) SetInitial ¶

func (obj *Comment) SetInitial(value *string)
func (obj *Comment) SetLink(value IWordsApiLink)

func (*Comment) SetRangeEnd ¶

func (obj *Comment) SetRangeEnd(value IDocumentPosition)

func (*Comment) SetRangeStart ¶

func (obj *Comment) SetRangeStart(value IDocumentPosition)

func (*Comment) SetText ¶

func (obj *Comment) SetText(value *string)

func (*Comment) Validate ¶

func (obj *Comment) Validate() error

type CommentInsert ¶

type CommentInsert struct {
	// Comment insert.
	RangeStart IPositionInsideNode `json:"RangeStart,omitempty"`

	// Comment insert.
	RangeEnd IPositionInsideNode `json:"RangeEnd,omitempty"`

	// Comment insert.
	Author *string `json:"Author,omitempty"`

	// Comment insert.
	Initial *string `json:"Initial,omitempty"`

	// Comment insert.
	DateTime *Time `json:"DateTime,omitempty"`

	// Comment insert.
	Text *string `json:"Text,omitempty"`
}

func (*CommentInsert) CollectFilesContent ¶

func (obj *CommentInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CommentInsert) Deserialize ¶

func (obj *CommentInsert) Deserialize(json map[string]interface{})

func (*CommentInsert) GetAuthor ¶

func (obj *CommentInsert) GetAuthor() *string

func (*CommentInsert) GetDateTime ¶

func (obj *CommentInsert) GetDateTime() *Time

func (*CommentInsert) GetInitial ¶

func (obj *CommentInsert) GetInitial() *string

func (*CommentInsert) GetRangeEnd ¶

func (obj *CommentInsert) GetRangeEnd() IPositionInsideNode

func (*CommentInsert) GetRangeStart ¶

func (obj *CommentInsert) GetRangeStart() IPositionInsideNode

func (*CommentInsert) GetText ¶

func (obj *CommentInsert) GetText() *string

func (*CommentInsert) Initialize ¶

func (obj *CommentInsert) Initialize()

func (CommentInsert) IsCommentBase ¶

func (CommentInsert) IsCommentBase() bool

func (CommentInsert) IsCommentInsert ¶

func (CommentInsert) IsCommentInsert() bool

func (*CommentInsert) SetAuthor ¶

func (obj *CommentInsert) SetAuthor(value *string)

func (*CommentInsert) SetDateTime ¶

func (obj *CommentInsert) SetDateTime(value *Time)

func (*CommentInsert) SetInitial ¶

func (obj *CommentInsert) SetInitial(value *string)

func (*CommentInsert) SetRangeEnd ¶

func (obj *CommentInsert) SetRangeEnd(value IPositionInsideNode)

func (*CommentInsert) SetRangeStart ¶

func (obj *CommentInsert) SetRangeStart(value IPositionInsideNode)

func (*CommentInsert) SetText ¶

func (obj *CommentInsert) SetText(value *string)

func (*CommentInsert) Validate ¶

func (obj *CommentInsert) Validate() error
type CommentLink struct {
	// Comment link.
	Link IWordsApiLink `json:"Link,omitempty"`
}

func (*CommentLink) CollectFilesContent ¶

func (obj *CommentLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CommentLink) Deserialize ¶

func (obj *CommentLink) Deserialize(json map[string]interface{})
func (obj *CommentLink) GetLink() IWordsApiLink

func (*CommentLink) Initialize ¶

func (obj *CommentLink) Initialize()
func (CommentLink) IsCommentLink() bool

func (CommentLink) IsLinkElement ¶

func (CommentLink) IsLinkElement() bool
func (obj *CommentLink) SetLink(value IWordsApiLink)

func (*CommentLink) Validate ¶

func (obj *CommentLink) Validate() error

type CommentResponse ¶

type CommentResponse struct {
	// The REST response with a comment.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/comments/0" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a comment.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/comments/0" REST API requests.
	Comment IComment `json:"Comment,omitempty"`
}

func (*CommentResponse) CollectFilesContent ¶

func (obj *CommentResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CommentResponse) Deserialize ¶

func (obj *CommentResponse) Deserialize(json map[string]interface{})

func (*CommentResponse) GetComment ¶

func (obj *CommentResponse) GetComment() IComment

func (*CommentResponse) GetRequestId ¶

func (obj *CommentResponse) GetRequestId() *string

func (*CommentResponse) Initialize ¶

func (obj *CommentResponse) Initialize()

func (CommentResponse) IsCommentResponse ¶

func (CommentResponse) IsCommentResponse() bool

func (CommentResponse) IsWordsResponse ¶

func (CommentResponse) IsWordsResponse() bool

func (*CommentResponse) SetComment ¶

func (obj *CommentResponse) SetComment(value IComment)

func (*CommentResponse) SetRequestId ¶

func (obj *CommentResponse) SetRequestId(value *string)

func (*CommentResponse) Validate ¶

func (obj *CommentResponse) Validate() error

type CommentUpdate ¶

type CommentUpdate struct {
	// Comment update.
	RangeStart IPositionInsideNode `json:"RangeStart,omitempty"`

	// Comment update.
	RangeEnd IPositionInsideNode `json:"RangeEnd,omitempty"`

	// Comment update.
	Author *string `json:"Author,omitempty"`

	// Comment update.
	Initial *string `json:"Initial,omitempty"`

	// Comment update.
	DateTime *Time `json:"DateTime,omitempty"`

	// Comment update.
	Text *string `json:"Text,omitempty"`
}

func (*CommentUpdate) CollectFilesContent ¶

func (obj *CommentUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CommentUpdate) Deserialize ¶

func (obj *CommentUpdate) Deserialize(json map[string]interface{})

func (*CommentUpdate) GetAuthor ¶

func (obj *CommentUpdate) GetAuthor() *string

func (*CommentUpdate) GetDateTime ¶

func (obj *CommentUpdate) GetDateTime() *Time

func (*CommentUpdate) GetInitial ¶

func (obj *CommentUpdate) GetInitial() *string

func (*CommentUpdate) GetRangeEnd ¶

func (obj *CommentUpdate) GetRangeEnd() IPositionInsideNode

func (*CommentUpdate) GetRangeStart ¶

func (obj *CommentUpdate) GetRangeStart() IPositionInsideNode

func (*CommentUpdate) GetText ¶

func (obj *CommentUpdate) GetText() *string

func (*CommentUpdate) Initialize ¶

func (obj *CommentUpdate) Initialize()

func (CommentUpdate) IsCommentBase ¶

func (CommentUpdate) IsCommentBase() bool

func (CommentUpdate) IsCommentUpdate ¶

func (CommentUpdate) IsCommentUpdate() bool

func (*CommentUpdate) SetAuthor ¶

func (obj *CommentUpdate) SetAuthor(value *string)

func (*CommentUpdate) SetDateTime ¶

func (obj *CommentUpdate) SetDateTime(value *Time)

func (*CommentUpdate) SetInitial ¶

func (obj *CommentUpdate) SetInitial(value *string)

func (*CommentUpdate) SetRangeEnd ¶

func (obj *CommentUpdate) SetRangeEnd(value IPositionInsideNode)

func (*CommentUpdate) SetRangeStart ¶

func (obj *CommentUpdate) SetRangeStart(value IPositionInsideNode)

func (*CommentUpdate) SetText ¶

func (obj *CommentUpdate) SetText(value *string)

func (*CommentUpdate) Validate ¶

func (obj *CommentUpdate) Validate() error

type CommentsCollection ¶

type CommentsCollection struct {
	// The collection of comments.
	Link IWordsApiLink `json:"Link,omitempty"`

	// The collection of comments.
	CommentList []IComment `json:"CommentList,omitempty"`
}

func (*CommentsCollection) CollectFilesContent ¶

func (obj *CommentsCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CommentsCollection) Deserialize ¶

func (obj *CommentsCollection) Deserialize(json map[string]interface{})

func (*CommentsCollection) GetCommentList ¶

func (obj *CommentsCollection) GetCommentList() []IComment
func (obj *CommentsCollection) GetLink() IWordsApiLink

func (*CommentsCollection) Initialize ¶

func (obj *CommentsCollection) Initialize()

func (CommentsCollection) IsCommentsCollection ¶

func (CommentsCollection) IsCommentsCollection() bool

func (CommentsCollection) IsLinkElement ¶

func (CommentsCollection) IsLinkElement() bool

func (*CommentsCollection) SetCommentList ¶

func (obj *CommentsCollection) SetCommentList(value []IComment)
func (obj *CommentsCollection) SetLink(value IWordsApiLink)

func (*CommentsCollection) Validate ¶

func (obj *CommentsCollection) Validate() error

type CommentsResponse ¶

type CommentsResponse struct {
	// The REST response with a collection of comments.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/comments" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of comments.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/comments" REST API requests.
	Comments ICommentsCollection `json:"Comments,omitempty"`
}

func (*CommentsResponse) CollectFilesContent ¶

func (obj *CommentsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CommentsResponse) Deserialize ¶

func (obj *CommentsResponse) Deserialize(json map[string]interface{})

func (*CommentsResponse) GetComments ¶

func (obj *CommentsResponse) GetComments() ICommentsCollection

func (*CommentsResponse) GetRequestId ¶

func (obj *CommentsResponse) GetRequestId() *string

func (*CommentsResponse) Initialize ¶

func (obj *CommentsResponse) Initialize()

func (CommentsResponse) IsCommentsResponse ¶

func (CommentsResponse) IsCommentsResponse() bool

func (CommentsResponse) IsWordsResponse ¶

func (CommentsResponse) IsWordsResponse() bool

func (*CommentsResponse) SetComments ¶

func (obj *CommentsResponse) SetComments(value ICommentsCollection)

func (*CommentsResponse) SetRequestId ¶

func (obj *CommentsResponse) SetRequestId(value *string)

func (*CommentsResponse) Validate ¶

func (obj *CommentsResponse) Validate() error

type CompareData ¶

type CompareData struct {
	// Container class for compare documents.
	Author *string `json:"Author,omitempty"`

	// Container class for compare documents.
	CompareOptions ICompareOptions `json:"CompareOptions,omitempty"`

	// Container class for compare documents.
	ComparingWithDocument *string `json:"ComparingWithDocument,omitempty"`

	// Container class for compare documents.
	DateTime *Time `json:"DateTime,omitempty"`

	// Container class for compare documents.
	FileReference IFileReference `json:"FileReference,omitempty"`

	// Container class for compare documents.
	ResultDocumentFormat *string `json:"ResultDocumentFormat,omitempty"`
}

func (*CompareData) CollectFilesContent ¶

func (obj *CompareData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CompareData) Deserialize ¶

func (obj *CompareData) Deserialize(json map[string]interface{})

func (*CompareData) GetAuthor ¶

func (obj *CompareData) GetAuthor() *string

func (*CompareData) GetCompareOptions ¶

func (obj *CompareData) GetCompareOptions() ICompareOptions

func (*CompareData) GetComparingWithDocument ¶

func (obj *CompareData) GetComparingWithDocument() *string

func (*CompareData) GetDateTime ¶

func (obj *CompareData) GetDateTime() *Time

func (*CompareData) GetFileReference ¶

func (obj *CompareData) GetFileReference() IFileReference

func (*CompareData) GetResultDocumentFormat ¶

func (obj *CompareData) GetResultDocumentFormat() *string

func (*CompareData) Initialize ¶

func (obj *CompareData) Initialize()

func (CompareData) IsCompareData ¶

func (CompareData) IsCompareData() bool

func (*CompareData) SetAuthor ¶

func (obj *CompareData) SetAuthor(value *string)

func (*CompareData) SetCompareOptions ¶

func (obj *CompareData) SetCompareOptions(value ICompareOptions)

func (*CompareData) SetComparingWithDocument ¶

func (obj *CompareData) SetComparingWithDocument(value *string)

func (*CompareData) SetDateTime ¶

func (obj *CompareData) SetDateTime(value *Time)

func (*CompareData) SetFileReference ¶

func (obj *CompareData) SetFileReference(value IFileReference)

func (*CompareData) SetResultDocumentFormat ¶

func (obj *CompareData) SetResultDocumentFormat(value *string)

func (*CompareData) Validate ¶

func (obj *CompareData) Validate() error

type CompareDocumentOnlineRequest ¶

type CompareDocumentOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Compare data.
	CompareData ICompareData
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

CompareDocumentOnlineRequest contains request data for WordsApiService.CompareDocumentOnline method.

func (*CompareDocumentOnlineRequest) CreateRequestData ¶

func (data *CompareDocumentOnlineRequest) CreateRequestData() (RequestData, error)

func (*CompareDocumentOnlineRequest) CreateResponse ¶

func (data *CompareDocumentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CompareDocumentOnlineResponse ¶

type CompareDocumentOnlineResponse struct {
	// The REST response with a document description.
	Model IDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

CompareDocumentOnlineResponse struct Compares two documents.

func (*CompareDocumentOnlineResponse) GetDocument ¶

func (obj *CompareDocumentOnlineResponse) GetDocument() map[string]io.Reader

func (*CompareDocumentOnlineResponse) GetModel ¶

func (*CompareDocumentOnlineResponse) SetDocument ¶

func (obj *CompareDocumentOnlineResponse) SetDocument(value map[string]io.Reader)

func (*CompareDocumentOnlineResponse) SetModel ¶

func (obj *CompareDocumentOnlineResponse) SetModel(value IDocumentResponse)

type CompareDocumentRequest ¶

type CompareDocumentRequest struct {
	// The filename of the input document.
	Name *string
	// Compare data.
	CompareData ICompareData
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

CompareDocumentRequest contains request data for WordsApiService.CompareDocument method.

func (*CompareDocumentRequest) CreateRequestData ¶

func (data *CompareDocumentRequest) CreateRequestData() (RequestData, error)

func (*CompareDocumentRequest) CreateResponse ¶

func (data *CompareDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CompareOptions ¶

type CompareOptions struct {
	// DTO container with compare documents options.
	AcceptAllRevisionsBeforeComparison *bool `json:"AcceptAllRevisionsBeforeComparison,omitempty"`

	// DTO container with compare documents options.
	IgnoreCaseChanges *bool `json:"IgnoreCaseChanges,omitempty"`

	// DTO container with compare documents options.
	IgnoreComments *bool `json:"IgnoreComments,omitempty"`

	// DTO container with compare documents options.
	IgnoreFields *bool `json:"IgnoreFields,omitempty"`

	// DTO container with compare documents options.
	IgnoreFootnotes *bool `json:"IgnoreFootnotes,omitempty"`

	// DTO container with compare documents options.
	IgnoreFormatting *bool `json:"IgnoreFormatting,omitempty"`

	// DTO container with compare documents options.
	IgnoreHeadersAndFooters *bool `json:"IgnoreHeadersAndFooters,omitempty"`

	// DTO container with compare documents options.
	IgnoreTables *bool `json:"IgnoreTables,omitempty"`

	// DTO container with compare documents options.
	IgnoreTextboxes *bool `json:"IgnoreTextboxes,omitempty"`

	// DTO container with compare documents options.
	Target *string `json:"Target,omitempty"`
}

func (*CompareOptions) CollectFilesContent ¶

func (obj *CompareOptions) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CompareOptions) Deserialize ¶

func (obj *CompareOptions) Deserialize(json map[string]interface{})

func (*CompareOptions) GetAcceptAllRevisionsBeforeComparison ¶

func (obj *CompareOptions) GetAcceptAllRevisionsBeforeComparison() *bool

func (*CompareOptions) GetIgnoreCaseChanges ¶

func (obj *CompareOptions) GetIgnoreCaseChanges() *bool

func (*CompareOptions) GetIgnoreComments ¶

func (obj *CompareOptions) GetIgnoreComments() *bool

func (*CompareOptions) GetIgnoreFields ¶

func (obj *CompareOptions) GetIgnoreFields() *bool

func (*CompareOptions) GetIgnoreFootnotes ¶

func (obj *CompareOptions) GetIgnoreFootnotes() *bool

func (*CompareOptions) GetIgnoreFormatting ¶

func (obj *CompareOptions) GetIgnoreFormatting() *bool

func (*CompareOptions) GetIgnoreHeadersAndFooters ¶

func (obj *CompareOptions) GetIgnoreHeadersAndFooters() *bool

func (*CompareOptions) GetIgnoreTables ¶

func (obj *CompareOptions) GetIgnoreTables() *bool

func (*CompareOptions) GetIgnoreTextboxes ¶

func (obj *CompareOptions) GetIgnoreTextboxes() *bool

func (*CompareOptions) GetTarget ¶

func (obj *CompareOptions) GetTarget() *string

func (*CompareOptions) Initialize ¶

func (obj *CompareOptions) Initialize()

func (CompareOptions) IsCompareOptions ¶

func (CompareOptions) IsCompareOptions() bool

func (*CompareOptions) SetAcceptAllRevisionsBeforeComparison ¶

func (obj *CompareOptions) SetAcceptAllRevisionsBeforeComparison(value *bool)

func (*CompareOptions) SetIgnoreCaseChanges ¶

func (obj *CompareOptions) SetIgnoreCaseChanges(value *bool)

func (*CompareOptions) SetIgnoreComments ¶

func (obj *CompareOptions) SetIgnoreComments(value *bool)

func (*CompareOptions) SetIgnoreFields ¶

func (obj *CompareOptions) SetIgnoreFields(value *bool)

func (*CompareOptions) SetIgnoreFootnotes ¶

func (obj *CompareOptions) SetIgnoreFootnotes(value *bool)

func (*CompareOptions) SetIgnoreFormatting ¶

func (obj *CompareOptions) SetIgnoreFormatting(value *bool)

func (*CompareOptions) SetIgnoreHeadersAndFooters ¶

func (obj *CompareOptions) SetIgnoreHeadersAndFooters(value *bool)

func (*CompareOptions) SetIgnoreTables ¶

func (obj *CompareOptions) SetIgnoreTables(value *bool)

func (*CompareOptions) SetIgnoreTextboxes ¶

func (obj *CompareOptions) SetIgnoreTextboxes(value *bool)

func (*CompareOptions) SetTarget ¶

func (obj *CompareOptions) SetTarget(value *string)

func (*CompareOptions) Validate ¶

func (obj *CompareOptions) Validate() error

type CompressDocumentOnlineRequest ¶

type CompressDocumentOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Options for compress the document.
	CompressOptions ICompressOptions
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

CompressDocumentOnlineRequest contains request data for WordsApiService.CompressDocumentOnline method.

func (*CompressDocumentOnlineRequest) CreateRequestData ¶

func (data *CompressDocumentOnlineRequest) CreateRequestData() (RequestData, error)

func (*CompressDocumentOnlineRequest) CreateResponse ¶

func (data *CompressDocumentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CompressDocumentOnlineResponse ¶

type CompressDocumentOnlineResponse struct {
	// The REST response of compressed document.
	Model ICompressResponse

	// The document after modification.
	Document map[string]io.Reader
}

CompressDocumentOnlineResponse struct Compress and resize images inside the document. The default settings allows to reduce the size of the document without any visible degradation of images quality.

func (*CompressDocumentOnlineResponse) GetDocument ¶

func (obj *CompressDocumentOnlineResponse) GetDocument() map[string]io.Reader

func (*CompressDocumentOnlineResponse) GetModel ¶

func (*CompressDocumentOnlineResponse) SetDocument ¶

func (obj *CompressDocumentOnlineResponse) SetDocument(value map[string]io.Reader)

func (*CompressDocumentOnlineResponse) SetModel ¶

type CompressDocumentRequest ¶

type CompressDocumentRequest struct {
	// The filename of the input document.
	Name *string
	// Options for compress the document.
	CompressOptions ICompressOptions
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

CompressDocumentRequest contains request data for WordsApiService.CompressDocument method.

func (*CompressDocumentRequest) CreateRequestData ¶

func (data *CompressDocumentRequest) CreateRequestData() (RequestData, error)

func (*CompressDocumentRequest) CreateResponse ¶

func (data *CompressDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CompressOptions ¶

type CompressOptions struct {
	// Options of document compress.
	ImagesQuality *int32 `json:"ImagesQuality,omitempty"`

	// Options of document compress.
	ImagesReduceSizeFactor *int32 `json:"ImagesReduceSizeFactor,omitempty"`
}

func (*CompressOptions) CollectFilesContent ¶

func (obj *CompressOptions) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CompressOptions) Deserialize ¶

func (obj *CompressOptions) Deserialize(json map[string]interface{})

func (*CompressOptions) GetImagesQuality ¶

func (obj *CompressOptions) GetImagesQuality() *int32

func (*CompressOptions) GetImagesReduceSizeFactor ¶

func (obj *CompressOptions) GetImagesReduceSizeFactor() *int32

func (*CompressOptions) Initialize ¶

func (obj *CompressOptions) Initialize()

func (CompressOptions) IsCompressOptions ¶

func (CompressOptions) IsCompressOptions() bool

func (*CompressOptions) SetImagesQuality ¶

func (obj *CompressOptions) SetImagesQuality(value *int32)

func (*CompressOptions) SetImagesReduceSizeFactor ¶

func (obj *CompressOptions) SetImagesReduceSizeFactor(value *int32)

func (*CompressOptions) Validate ¶

func (obj *CompressOptions) Validate() error

type CompressResponse ¶

type CompressResponse struct {
	// The REST response of compressed document.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response of compressed document.
	Document IDocument `json:"Document,omitempty"`
}

func (*CompressResponse) CollectFilesContent ¶

func (obj *CompressResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CompressResponse) Deserialize ¶

func (obj *CompressResponse) Deserialize(json map[string]interface{})

func (*CompressResponse) GetDocument ¶

func (obj *CompressResponse) GetDocument() IDocument

func (*CompressResponse) GetRequestId ¶

func (obj *CompressResponse) GetRequestId() *string

func (*CompressResponse) Initialize ¶

func (obj *CompressResponse) Initialize()

func (CompressResponse) IsCompressResponse ¶

func (CompressResponse) IsCompressResponse() bool

func (CompressResponse) IsWordsResponse ¶

func (CompressResponse) IsWordsResponse() bool

func (*CompressResponse) SetDocument ¶

func (obj *CompressResponse) SetDocument(value IDocument)

func (*CompressResponse) SetRequestId ¶

func (obj *CompressResponse) SetRequestId(value *string)

func (*CompressResponse) Validate ¶

func (obj *CompressResponse) Validate() error

type Configuration ¶

type Configuration struct {
	ClientId      string            `json:"ClientId"`
	ClientSecret  string            `json:"ClientSecret"`
	BaseUrl       string            `json:"BaseUrl,omitempty"`
	DebugMode     bool              `json:"DebugMode,omitempty"`
	DefaultHeader map[string]string `json:"DefaultHeader,omitempty"`
	HttpClient    *http.Client
	Timeout       Duration `json:"Timeout,omitempty"`
	Modulus       string   `json:"Modulus,omitempty"`
	Exponent      string   `json:"Exponent,omitempty"`
}

func NewConfiguration ¶

func NewConfiguration(configFilePath string) (pConfig *Configuration, err error)

type ConvertDocumentRequest ¶

type ConvertDocumentRequest struct {
	// Converting document.
	Document io.ReadCloser
	// The format to convert.
	Format *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "outPath" value: (*string) The path to the output document on a local storage.
	   key: "fileNameFieldValue" value: (*string) The filename of the output document, that will be used when the resulting document has a dynamic field {filename}. If it is not set, the "sourceFilename" will be used instead.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

ConvertDocumentRequest contains request data for WordsApiService.ConvertDocument method.

func (*ConvertDocumentRequest) CreateRequestData ¶

func (data *ConvertDocumentRequest) CreateRequestData() (RequestData, error)

func (*ConvertDocumentRequest) CreateResponse ¶

func (data *ConvertDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CopyFileRequest ¶

type CopyFileRequest struct {
	// Destination file path.
	DestPath *string
	// Source file's path e.g. '/Folder 1/file.ext' or '/Bucket/Folder 1/file.ext'.
	SrcPath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "srcStorageName" value: (*string) Source storage name.
	   key: "destStorageName" value: (*string) Destination storage name.
	   key: "versionId" value: (*string) File version ID to copy. */
	Optionals map[string]interface{}
}

CopyFileRequest contains request data for WordsApiService.CopyFile method.

func (*CopyFileRequest) CreateRequestData ¶

func (data *CopyFileRequest) CreateRequestData() (RequestData, error)

func (*CopyFileRequest) CreateResponse ¶

func (data *CopyFileRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CopyFolderRequest ¶

type CopyFolderRequest struct {
	// Destination folder path e.g. '/dst'.
	DestPath *string
	// Source folder path e.g. /Folder1.
	SrcPath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "srcStorageName" value: (*string) Source storage name.
	   key: "destStorageName" value: (*string) Destination storage name. */
	Optionals map[string]interface{}
}

CopyFolderRequest contains request data for WordsApiService.CopyFolder method.

func (*CopyFolderRequest) CreateRequestData ¶

func (data *CopyFolderRequest) CreateRequestData() (RequestData, error)

func (*CopyFolderRequest) CreateResponse ¶

func (data *CopyFolderRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CopyStyleOnlineRequest ¶

type CopyStyleOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Style to copy.
	StyleCopy IStyleCopy
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

CopyStyleOnlineRequest contains request data for WordsApiService.CopyStyleOnline method.

func (*CopyStyleOnlineRequest) CreateRequestData ¶

func (data *CopyStyleOnlineRequest) CreateRequestData() (RequestData, error)

func (*CopyStyleOnlineRequest) CreateResponse ¶

func (data *CopyStyleOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CopyStyleOnlineResponse ¶

type CopyStyleOnlineResponse struct {
	// The REST response with a style.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/styles/{0}" REST API requests.
	Model IStyleResponse

	// The document after modification.
	Document map[string]io.Reader
}

CopyStyleOnlineResponse struct Makes a copy of the style in the document.

func (*CopyStyleOnlineResponse) GetDocument ¶

func (obj *CopyStyleOnlineResponse) GetDocument() map[string]io.Reader

func (*CopyStyleOnlineResponse) GetModel ¶

func (obj *CopyStyleOnlineResponse) GetModel() IStyleResponse

func (*CopyStyleOnlineResponse) SetDocument ¶

func (obj *CopyStyleOnlineResponse) SetDocument(value map[string]io.Reader)

func (*CopyStyleOnlineResponse) SetModel ¶

func (obj *CopyStyleOnlineResponse) SetModel(value IStyleResponse)

type CopyStyleRequest ¶

type CopyStyleRequest struct {
	// The filename of the input document.
	Name *string
	// Style to copy.
	StyleCopy IStyleCopy
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

CopyStyleRequest contains request data for WordsApiService.CopyStyle method.

func (*CopyStyleRequest) CreateRequestData ¶

func (data *CopyStyleRequest) CreateRequestData() (RequestData, error)

func (*CopyStyleRequest) CreateResponse ¶

func (data *CopyStyleRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CopyStylesFromTemplateRequest ¶

type CopyStylesFromTemplateRequest struct {
	// The filename of the target document.
	Name *string
	// The filename of the origin document.
	TemplateName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

CopyStylesFromTemplateRequest contains request data for WordsApiService.CopyStylesFromTemplate method.

func (*CopyStylesFromTemplateRequest) CreateRequestData ¶

func (data *CopyStylesFromTemplateRequest) CreateRequestData() (RequestData, error)

func (*CopyStylesFromTemplateRequest) CreateResponse ¶

func (data *CopyStylesFromTemplateRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CreateDocumentRequest ¶

type CreateDocumentRequest struct {
	// The filename of the document.
	FileName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) The path to the document folder.
	   key: "storage" value: (*string) Original document storage. */
	Optionals map[string]interface{}
}

CreateDocumentRequest contains request data for WordsApiService.CreateDocument method.

func (*CreateDocumentRequest) CreateRequestData ¶

func (data *CreateDocumentRequest) CreateRequestData() (RequestData, error)

func (*CreateDocumentRequest) CreateResponse ¶

func (data *CreateDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CreateFolderRequest ¶

type CreateFolderRequest struct {
	// Target folder's path e.g. Folder1/Folder2/. The folders will be created recursively.
	Path *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "storageName" value: (*string) Storage name. */
	Optionals map[string]interface{}
}

CreateFolderRequest contains request data for WordsApiService.CreateFolder method.

func (*CreateFolderRequest) CreateRequestData ¶

func (data *CreateFolderRequest) CreateRequestData() (RequestData, error)

func (*CreateFolderRequest) CreateResponse ¶

func (data *CreateFolderRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CreateOrUpdateDocumentPropertyOnlineRequest ¶

type CreateOrUpdateDocumentPropertyOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The name of the property.
	PropertyName *string
	// The property with new value.
	Property IDocumentPropertyCreateOrUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

CreateOrUpdateDocumentPropertyOnlineRequest contains request data for WordsApiService.CreateOrUpdateDocumentPropertyOnline method.

func (*CreateOrUpdateDocumentPropertyOnlineRequest) CreateRequestData ¶

func (data *CreateOrUpdateDocumentPropertyOnlineRequest) CreateRequestData() (RequestData, error)

func (*CreateOrUpdateDocumentPropertyOnlineRequest) CreateResponse ¶

func (data *CreateOrUpdateDocumentPropertyOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CreateOrUpdateDocumentPropertyOnlineResponse ¶

type CreateOrUpdateDocumentPropertyOnlineResponse struct {
	// The REST response with a document property.
	// This response should be returned by the service when handling: GET documentProperties/{propertyName}.
	Model IDocumentPropertyResponse

	// The document after modification.
	Document map[string]io.Reader
}

CreateOrUpdateDocumentPropertyOnlineResponse struct Adds a new or updates an existing document property.

func (*CreateOrUpdateDocumentPropertyOnlineResponse) GetDocument ¶

func (*CreateOrUpdateDocumentPropertyOnlineResponse) GetModel ¶

func (*CreateOrUpdateDocumentPropertyOnlineResponse) SetDocument ¶

func (obj *CreateOrUpdateDocumentPropertyOnlineResponse) SetDocument(value map[string]io.Reader)

func (*CreateOrUpdateDocumentPropertyOnlineResponse) SetModel ¶

type CreateOrUpdateDocumentPropertyRequest ¶

type CreateOrUpdateDocumentPropertyRequest struct {
	// The filename of the input document.
	Name *string
	// The name of the property.
	PropertyName *string
	// The property with new value.
	Property IDocumentPropertyCreateOrUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

CreateOrUpdateDocumentPropertyRequest contains request data for WordsApiService.CreateOrUpdateDocumentProperty method.

func (*CreateOrUpdateDocumentPropertyRequest) CreateRequestData ¶

func (data *CreateOrUpdateDocumentPropertyRequest) CreateRequestData() (RequestData, error)

func (*CreateOrUpdateDocumentPropertyRequest) CreateResponse ¶

func (data *CreateOrUpdateDocumentPropertyRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type CsvDataLoadOptions ¶

type CsvDataLoadOptions struct {
	// Represents options for parsing CSV data.
	// To learn more, visit the LINQ Reporting Engine documentation article.
	// An instance of this class can be passed into constructors of CsvDataSource.
	CommentChar *string `json:"CommentChar,omitempty"`

	// Represents options for parsing CSV data.
	// To learn more, visit the LINQ Reporting Engine documentation article.
	// An instance of this class can be passed into constructors of CsvDataSource.
	Delimiter *string `json:"Delimiter,omitempty"`

	// Represents options for parsing CSV data.
	// To learn more, visit the LINQ Reporting Engine documentation article.
	// An instance of this class can be passed into constructors of CsvDataSource.
	HasHeaders *bool `json:"HasHeaders,omitempty"`

	// Represents options for parsing CSV data.
	// To learn more, visit the LINQ Reporting Engine documentation article.
	// An instance of this class can be passed into constructors of CsvDataSource.
	QuoteChar *string `json:"QuoteChar,omitempty"`
}

func (*CsvDataLoadOptions) CollectFilesContent ¶

func (obj *CsvDataLoadOptions) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CsvDataLoadOptions) Deserialize ¶

func (obj *CsvDataLoadOptions) Deserialize(json map[string]interface{})

func (*CsvDataLoadOptions) GetCommentChar ¶

func (obj *CsvDataLoadOptions) GetCommentChar() *string

func (*CsvDataLoadOptions) GetDelimiter ¶

func (obj *CsvDataLoadOptions) GetDelimiter() *string

func (*CsvDataLoadOptions) GetHasHeaders ¶

func (obj *CsvDataLoadOptions) GetHasHeaders() *bool

func (*CsvDataLoadOptions) GetQuoteChar ¶

func (obj *CsvDataLoadOptions) GetQuoteChar() *string

func (*CsvDataLoadOptions) Initialize ¶

func (obj *CsvDataLoadOptions) Initialize()

func (CsvDataLoadOptions) IsCsvDataLoadOptions ¶

func (CsvDataLoadOptions) IsCsvDataLoadOptions() bool

func (*CsvDataLoadOptions) SetCommentChar ¶

func (obj *CsvDataLoadOptions) SetCommentChar(value *string)

func (*CsvDataLoadOptions) SetDelimiter ¶

func (obj *CsvDataLoadOptions) SetDelimiter(value *string)

func (*CsvDataLoadOptions) SetHasHeaders ¶

func (obj *CsvDataLoadOptions) SetHasHeaders(value *bool)

func (*CsvDataLoadOptions) SetQuoteChar ¶

func (obj *CsvDataLoadOptions) SetQuoteChar(value *string)

func (*CsvDataLoadOptions) Validate ¶

func (obj *CsvDataLoadOptions) Validate() error

type CustomXmlPart ¶

type CustomXmlPart struct {
	// DTO container with a CustomXmlPart.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a CustomXmlPart.
	Id *string `json:"Id,omitempty"`

	// DTO container with a CustomXmlPart.
	Data *string `json:"Data,omitempty"`
}

func (*CustomXmlPart) CollectFilesContent ¶

func (obj *CustomXmlPart) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CustomXmlPart) Deserialize ¶

func (obj *CustomXmlPart) Deserialize(json map[string]interface{})

func (*CustomXmlPart) GetData ¶

func (obj *CustomXmlPart) GetData() *string

func (*CustomXmlPart) GetId ¶

func (obj *CustomXmlPart) GetId() *string
func (obj *CustomXmlPart) GetLink() IWordsApiLink

func (*CustomXmlPart) Initialize ¶

func (obj *CustomXmlPart) Initialize()

func (CustomXmlPart) IsCustomXmlPart ¶

func (CustomXmlPart) IsCustomXmlPart() bool
func (CustomXmlPart) IsCustomXmlPartLink() bool

func (CustomXmlPart) IsLinkElement ¶

func (CustomXmlPart) IsLinkElement() bool

func (*CustomXmlPart) SetData ¶

func (obj *CustomXmlPart) SetData(value *string)

func (*CustomXmlPart) SetId ¶

func (obj *CustomXmlPart) SetId(value *string)
func (obj *CustomXmlPart) SetLink(value IWordsApiLink)

func (*CustomXmlPart) Validate ¶

func (obj *CustomXmlPart) Validate() error

type CustomXmlPartInsert ¶

type CustomXmlPartInsert struct {
	// Custom xml part insert.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Custom xml part insert.
	Id *string `json:"Id,omitempty"`

	// Custom xml part insert.
	Data *string `json:"Data,omitempty"`
}

func (*CustomXmlPartInsert) CollectFilesContent ¶

func (obj *CustomXmlPartInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CustomXmlPartInsert) Deserialize ¶

func (obj *CustomXmlPartInsert) Deserialize(json map[string]interface{})

func (*CustomXmlPartInsert) GetData ¶

func (obj *CustomXmlPartInsert) GetData() *string

func (*CustomXmlPartInsert) GetId ¶

func (obj *CustomXmlPartInsert) GetId() *string
func (obj *CustomXmlPartInsert) GetLink() IWordsApiLink

func (*CustomXmlPartInsert) Initialize ¶

func (obj *CustomXmlPartInsert) Initialize()

func (CustomXmlPartInsert) IsCustomXmlPart ¶

func (CustomXmlPartInsert) IsCustomXmlPart() bool

func (CustomXmlPartInsert) IsCustomXmlPartInsert ¶

func (CustomXmlPartInsert) IsCustomXmlPartInsert() bool
func (CustomXmlPartInsert) IsCustomXmlPartLink() bool

func (CustomXmlPartInsert) IsLinkElement ¶

func (CustomXmlPartInsert) IsLinkElement() bool

func (*CustomXmlPartInsert) SetData ¶

func (obj *CustomXmlPartInsert) SetData(value *string)

func (*CustomXmlPartInsert) SetId ¶

func (obj *CustomXmlPartInsert) SetId(value *string)
func (obj *CustomXmlPartInsert) SetLink(value IWordsApiLink)

func (*CustomXmlPartInsert) Validate ¶

func (obj *CustomXmlPartInsert) Validate() error
type CustomXmlPartLink struct {
	// CustomXmlPart link.
	Link IWordsApiLink `json:"Link,omitempty"`
}

func (*CustomXmlPartLink) CollectFilesContent ¶

func (obj *CustomXmlPartLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CustomXmlPartLink) Deserialize ¶

func (obj *CustomXmlPartLink) Deserialize(json map[string]interface{})
func (obj *CustomXmlPartLink) GetLink() IWordsApiLink

func (*CustomXmlPartLink) Initialize ¶

func (obj *CustomXmlPartLink) Initialize()
func (CustomXmlPartLink) IsCustomXmlPartLink() bool

func (CustomXmlPartLink) IsLinkElement ¶

func (CustomXmlPartLink) IsLinkElement() bool
func (obj *CustomXmlPartLink) SetLink(value IWordsApiLink)

func (*CustomXmlPartLink) Validate ¶

func (obj *CustomXmlPartLink) Validate() error

type CustomXmlPartResponse ¶

type CustomXmlPartResponse struct {
	// The REST response with a custom xml part.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/customXmlParts/0" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a custom xml part.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/customXmlParts/0" REST API requests.
	CustomXmlPart ICustomXmlPart `json:"CustomXmlPart,omitempty"`
}

func (*CustomXmlPartResponse) CollectFilesContent ¶

func (obj *CustomXmlPartResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CustomXmlPartResponse) Deserialize ¶

func (obj *CustomXmlPartResponse) Deserialize(json map[string]interface{})

func (*CustomXmlPartResponse) GetCustomXmlPart ¶

func (obj *CustomXmlPartResponse) GetCustomXmlPart() ICustomXmlPart

func (*CustomXmlPartResponse) GetRequestId ¶

func (obj *CustomXmlPartResponse) GetRequestId() *string

func (*CustomXmlPartResponse) Initialize ¶

func (obj *CustomXmlPartResponse) Initialize()

func (CustomXmlPartResponse) IsCustomXmlPartResponse ¶

func (CustomXmlPartResponse) IsCustomXmlPartResponse() bool

func (CustomXmlPartResponse) IsWordsResponse ¶

func (CustomXmlPartResponse) IsWordsResponse() bool

func (*CustomXmlPartResponse) SetCustomXmlPart ¶

func (obj *CustomXmlPartResponse) SetCustomXmlPart(value ICustomXmlPart)

func (*CustomXmlPartResponse) SetRequestId ¶

func (obj *CustomXmlPartResponse) SetRequestId(value *string)

func (*CustomXmlPartResponse) Validate ¶

func (obj *CustomXmlPartResponse) Validate() error

type CustomXmlPartUpdate ¶

type CustomXmlPartUpdate struct {
	// Custom xml part update.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Custom xml part update.
	Id *string `json:"Id,omitempty"`

	// Custom xml part update.
	Data *string `json:"Data,omitempty"`
}

func (*CustomXmlPartUpdate) CollectFilesContent ¶

func (obj *CustomXmlPartUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CustomXmlPartUpdate) Deserialize ¶

func (obj *CustomXmlPartUpdate) Deserialize(json map[string]interface{})

func (*CustomXmlPartUpdate) GetData ¶

func (obj *CustomXmlPartUpdate) GetData() *string

func (*CustomXmlPartUpdate) GetId ¶

func (obj *CustomXmlPartUpdate) GetId() *string
func (obj *CustomXmlPartUpdate) GetLink() IWordsApiLink

func (*CustomXmlPartUpdate) Initialize ¶

func (obj *CustomXmlPartUpdate) Initialize()

func (CustomXmlPartUpdate) IsCustomXmlPart ¶

func (CustomXmlPartUpdate) IsCustomXmlPart() bool
func (CustomXmlPartUpdate) IsCustomXmlPartLink() bool

func (CustomXmlPartUpdate) IsCustomXmlPartUpdate ¶

func (CustomXmlPartUpdate) IsCustomXmlPartUpdate() bool

func (CustomXmlPartUpdate) IsLinkElement ¶

func (CustomXmlPartUpdate) IsLinkElement() bool

func (*CustomXmlPartUpdate) SetData ¶

func (obj *CustomXmlPartUpdate) SetData(value *string)

func (*CustomXmlPartUpdate) SetId ¶

func (obj *CustomXmlPartUpdate) SetId(value *string)
func (obj *CustomXmlPartUpdate) SetLink(value IWordsApiLink)

func (*CustomXmlPartUpdate) Validate ¶

func (obj *CustomXmlPartUpdate) Validate() error

type CustomXmlPartsCollection ¶

type CustomXmlPartsCollection struct {
	// The collection of CustomXmlPart.
	Link IWordsApiLink `json:"Link,omitempty"`

	// The collection of CustomXmlPart.
	CustomXmlPartsList []ICustomXmlPart `json:"CustomXmlPartsList,omitempty"`
}

func (*CustomXmlPartsCollection) CollectFilesContent ¶

func (obj *CustomXmlPartsCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CustomXmlPartsCollection) Deserialize ¶

func (obj *CustomXmlPartsCollection) Deserialize(json map[string]interface{})

func (*CustomXmlPartsCollection) GetCustomXmlPartsList ¶

func (obj *CustomXmlPartsCollection) GetCustomXmlPartsList() []ICustomXmlPart
func (obj *CustomXmlPartsCollection) GetLink() IWordsApiLink

func (*CustomXmlPartsCollection) Initialize ¶

func (obj *CustomXmlPartsCollection) Initialize()

func (CustomXmlPartsCollection) IsCustomXmlPartsCollection ¶

func (CustomXmlPartsCollection) IsCustomXmlPartsCollection() bool

func (CustomXmlPartsCollection) IsLinkElement ¶

func (CustomXmlPartsCollection) IsLinkElement() bool

func (*CustomXmlPartsCollection) SetCustomXmlPartsList ¶

func (obj *CustomXmlPartsCollection) SetCustomXmlPartsList(value []ICustomXmlPart)
func (obj *CustomXmlPartsCollection) SetLink(value IWordsApiLink)

func (*CustomXmlPartsCollection) Validate ¶

func (obj *CustomXmlPartsCollection) Validate() error

type CustomXmlPartsResponse ¶

type CustomXmlPartsResponse struct {
	// The REST response with a collection of custom xml parts.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/customXmlParts" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of custom xml parts.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/customXmlParts" REST API requests.
	CustomXmlParts ICustomXmlPartsCollection `json:"CustomXmlParts,omitempty"`
}

func (*CustomXmlPartsResponse) CollectFilesContent ¶

func (obj *CustomXmlPartsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*CustomXmlPartsResponse) Deserialize ¶

func (obj *CustomXmlPartsResponse) Deserialize(json map[string]interface{})

func (*CustomXmlPartsResponse) GetCustomXmlParts ¶

func (obj *CustomXmlPartsResponse) GetCustomXmlParts() ICustomXmlPartsCollection

func (*CustomXmlPartsResponse) GetRequestId ¶

func (obj *CustomXmlPartsResponse) GetRequestId() *string

func (*CustomXmlPartsResponse) Initialize ¶

func (obj *CustomXmlPartsResponse) Initialize()

func (CustomXmlPartsResponse) IsCustomXmlPartsResponse ¶

func (CustomXmlPartsResponse) IsCustomXmlPartsResponse() bool

func (CustomXmlPartsResponse) IsWordsResponse ¶

func (CustomXmlPartsResponse) IsWordsResponse() bool

func (*CustomXmlPartsResponse) SetCustomXmlParts ¶

func (obj *CustomXmlPartsResponse) SetCustomXmlParts(value ICustomXmlPartsCollection)

func (*CustomXmlPartsResponse) SetRequestId ¶

func (obj *CustomXmlPartsResponse) SetRequestId(value *string)

func (*CustomXmlPartsResponse) Validate ¶

func (obj *CustomXmlPartsResponse) Validate() error

type DeleteAllParagraphTabStopsOnlineRequest ¶

type DeleteAllParagraphTabStopsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

DeleteAllParagraphTabStopsOnlineRequest contains request data for WordsApiService.DeleteAllParagraphTabStopsOnline method.

func (*DeleteAllParagraphTabStopsOnlineRequest) CreateRequestData ¶

func (data *DeleteAllParagraphTabStopsOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteAllParagraphTabStopsOnlineRequest) CreateResponse ¶

func (data *DeleteAllParagraphTabStopsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteAllParagraphTabStopsOnlineResponse ¶

type DeleteAllParagraphTabStopsOnlineResponse struct {
	// The REST response with an array of tab stops.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/tabstops" REST API requests.
	Model ITabStopsResponse

	// The document after modification.
	Document map[string]io.Reader
}

DeleteAllParagraphTabStopsOnlineResponse struct Removes paragraph tab stops from the document node.

func (*DeleteAllParagraphTabStopsOnlineResponse) GetDocument ¶

func (*DeleteAllParagraphTabStopsOnlineResponse) GetModel ¶

func (*DeleteAllParagraphTabStopsOnlineResponse) SetDocument ¶

func (obj *DeleteAllParagraphTabStopsOnlineResponse) SetDocument(value map[string]io.Reader)

func (*DeleteAllParagraphTabStopsOnlineResponse) SetModel ¶

type DeleteAllParagraphTabStopsRequest ¶

type DeleteAllParagraphTabStopsRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

DeleteAllParagraphTabStopsRequest contains request data for WordsApiService.DeleteAllParagraphTabStops method.

func (*DeleteAllParagraphTabStopsRequest) CreateRequestData ¶

func (data *DeleteAllParagraphTabStopsRequest) CreateRequestData() (RequestData, error)

func (*DeleteAllParagraphTabStopsRequest) CreateResponse ¶

func (data *DeleteAllParagraphTabStopsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteBookmarkOnlineRequest ¶

type DeleteBookmarkOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The name of the bookmark.
	BookmarkName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteBookmarkOnlineRequest contains request data for WordsApiService.DeleteBookmarkOnline method.

func (*DeleteBookmarkOnlineRequest) CreateRequestData ¶

func (data *DeleteBookmarkOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteBookmarkOnlineRequest) CreateResponse ¶

func (data *DeleteBookmarkOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteBookmarkRequest ¶

type DeleteBookmarkRequest struct {
	// The filename of the input document.
	Name *string
	// The name of the bookmark.
	BookmarkName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteBookmarkRequest contains request data for WordsApiService.DeleteBookmark method.

func (*DeleteBookmarkRequest) CreateRequestData ¶

func (data *DeleteBookmarkRequest) CreateRequestData() (RequestData, error)

func (*DeleteBookmarkRequest) CreateResponse ¶

func (data *DeleteBookmarkRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteBookmarksOnlineRequest ¶

type DeleteBookmarksOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteBookmarksOnlineRequest contains request data for WordsApiService.DeleteBookmarksOnline method.

func (*DeleteBookmarksOnlineRequest) CreateRequestData ¶

func (data *DeleteBookmarksOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteBookmarksOnlineRequest) CreateResponse ¶

func (data *DeleteBookmarksOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteBookmarksRequest ¶

type DeleteBookmarksRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteBookmarksRequest contains request data for WordsApiService.DeleteBookmarks method.

func (*DeleteBookmarksRequest) CreateRequestData ¶

func (data *DeleteBookmarksRequest) CreateRequestData() (RequestData, error)

func (*DeleteBookmarksRequest) CreateResponse ¶

func (data *DeleteBookmarksRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteBorderOnlineRequest ¶

type DeleteBorderOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Border type.
	BorderType *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteBorderOnlineRequest contains request data for WordsApiService.DeleteBorderOnline method.

func (*DeleteBorderOnlineRequest) CreateRequestData ¶

func (data *DeleteBorderOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteBorderOnlineRequest) CreateResponse ¶

func (data *DeleteBorderOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteBorderOnlineResponse ¶

type DeleteBorderOnlineResponse struct {
	// The REST response with a border.
	// This response is returned by the Service when handling "GET {nodeWithBorders}/borders" REST API requests.
	Model IBorderResponse

	// The document after modification.
	Document map[string]io.Reader
}

DeleteBorderOnlineResponse struct Removes a border from the document node. The 'nodePath' parameter should refer to a paragraph, a cell or a row.

func (*DeleteBorderOnlineResponse) GetDocument ¶

func (obj *DeleteBorderOnlineResponse) GetDocument() map[string]io.Reader

func (*DeleteBorderOnlineResponse) GetModel ¶

func (*DeleteBorderOnlineResponse) SetDocument ¶

func (obj *DeleteBorderOnlineResponse) SetDocument(value map[string]io.Reader)

func (*DeleteBorderOnlineResponse) SetModel ¶

func (obj *DeleteBorderOnlineResponse) SetModel(value IBorderResponse)

type DeleteBorderRequest ¶

type DeleteBorderRequest struct {
	// The filename of the input document.
	Name *string
	// Border type.
	BorderType *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteBorderRequest contains request data for WordsApiService.DeleteBorder method.

func (*DeleteBorderRequest) CreateRequestData ¶

func (data *DeleteBorderRequest) CreateRequestData() (RequestData, error)

func (*DeleteBorderRequest) CreateResponse ¶

func (data *DeleteBorderRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteBordersOnlineRequest ¶

type DeleteBordersOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteBordersOnlineRequest contains request data for WordsApiService.DeleteBordersOnline method.

func (*DeleteBordersOnlineRequest) CreateRequestData ¶

func (data *DeleteBordersOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteBordersOnlineRequest) CreateResponse ¶

func (data *DeleteBordersOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteBordersOnlineResponse ¶

type DeleteBordersOnlineResponse struct {
	// The REST response with a collection of borders.
	// This response is returned by the Service when handling "GET {nodeWithBorders}/borders" REST API requests.
	Model IBordersResponse

	// The document after modification.
	Document map[string]io.Reader
}

DeleteBordersOnlineResponse struct Removes borders from the document node. The 'nodePath' parameter should refer to a paragraph, a cell or a row.

func (*DeleteBordersOnlineResponse) GetDocument ¶

func (obj *DeleteBordersOnlineResponse) GetDocument() map[string]io.Reader

func (*DeleteBordersOnlineResponse) GetModel ¶

func (*DeleteBordersOnlineResponse) SetDocument ¶

func (obj *DeleteBordersOnlineResponse) SetDocument(value map[string]io.Reader)

func (*DeleteBordersOnlineResponse) SetModel ¶

func (obj *DeleteBordersOnlineResponse) SetModel(value IBordersResponse)

type DeleteBordersRequest ¶

type DeleteBordersRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteBordersRequest contains request data for WordsApiService.DeleteBorders method.

func (*DeleteBordersRequest) CreateRequestData ¶

func (data *DeleteBordersRequest) CreateRequestData() (RequestData, error)

func (*DeleteBordersRequest) CreateResponse ¶

func (data *DeleteBordersRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteCommentOnlineRequest ¶

type DeleteCommentOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the comment.
	CommentIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteCommentOnlineRequest contains request data for WordsApiService.DeleteCommentOnline method.

func (*DeleteCommentOnlineRequest) CreateRequestData ¶

func (data *DeleteCommentOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteCommentOnlineRequest) CreateResponse ¶

func (data *DeleteCommentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteCommentRequest ¶

type DeleteCommentRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the comment.
	CommentIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteCommentRequest contains request data for WordsApiService.DeleteComment method.

func (*DeleteCommentRequest) CreateRequestData ¶

func (data *DeleteCommentRequest) CreateRequestData() (RequestData, error)

func (*DeleteCommentRequest) CreateResponse ¶

func (data *DeleteCommentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteCommentsOnlineRequest ¶

type DeleteCommentsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteCommentsOnlineRequest contains request data for WordsApiService.DeleteCommentsOnline method.

func (*DeleteCommentsOnlineRequest) CreateRequestData ¶

func (data *DeleteCommentsOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteCommentsOnlineRequest) CreateResponse ¶

func (data *DeleteCommentsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteCommentsRequest ¶

type DeleteCommentsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteCommentsRequest contains request data for WordsApiService.DeleteComments method.

func (*DeleteCommentsRequest) CreateRequestData ¶

func (data *DeleteCommentsRequest) CreateRequestData() (RequestData, error)

func (*DeleteCommentsRequest) CreateResponse ¶

func (data *DeleteCommentsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteCustomXmlPartOnlineRequest ¶

type DeleteCustomXmlPartOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the custom xml part. This index is the number of the entry in the collection of custom xml parts, not the ID of the part.
	CustomXmlPartIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteCustomXmlPartOnlineRequest contains request data for WordsApiService.DeleteCustomXmlPartOnline method.

func (*DeleteCustomXmlPartOnlineRequest) CreateRequestData ¶

func (data *DeleteCustomXmlPartOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteCustomXmlPartOnlineRequest) CreateResponse ¶

func (data *DeleteCustomXmlPartOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteCustomXmlPartRequest ¶

type DeleteCustomXmlPartRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the custom xml part. This index is the number of the entry in the collection of custom xml parts, not the ID of the part.
	CustomXmlPartIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteCustomXmlPartRequest contains request data for WordsApiService.DeleteCustomXmlPart method.

func (*DeleteCustomXmlPartRequest) CreateRequestData ¶

func (data *DeleteCustomXmlPartRequest) CreateRequestData() (RequestData, error)

func (*DeleteCustomXmlPartRequest) CreateResponse ¶

func (data *DeleteCustomXmlPartRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteCustomXmlPartsOnlineRequest ¶

type DeleteCustomXmlPartsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteCustomXmlPartsOnlineRequest contains request data for WordsApiService.DeleteCustomXmlPartsOnline method.

func (*DeleteCustomXmlPartsOnlineRequest) CreateRequestData ¶

func (data *DeleteCustomXmlPartsOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteCustomXmlPartsOnlineRequest) CreateResponse ¶

func (data *DeleteCustomXmlPartsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteCustomXmlPartsRequest ¶

type DeleteCustomXmlPartsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteCustomXmlPartsRequest contains request data for WordsApiService.DeleteCustomXmlParts method.

func (*DeleteCustomXmlPartsRequest) CreateRequestData ¶

func (data *DeleteCustomXmlPartsRequest) CreateRequestData() (RequestData, error)

func (*DeleteCustomXmlPartsRequest) CreateResponse ¶

func (data *DeleteCustomXmlPartsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteDocumentPropertyOnlineRequest ¶

type DeleteDocumentPropertyOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The name of the property.
	PropertyName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteDocumentPropertyOnlineRequest contains request data for WordsApiService.DeleteDocumentPropertyOnline method.

func (*DeleteDocumentPropertyOnlineRequest) CreateRequestData ¶

func (data *DeleteDocumentPropertyOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteDocumentPropertyOnlineRequest) CreateResponse ¶

func (data *DeleteDocumentPropertyOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteDocumentPropertyRequest ¶

type DeleteDocumentPropertyRequest struct {
	// The filename of the input document.
	Name *string
	// The name of the property.
	PropertyName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteDocumentPropertyRequest contains request data for WordsApiService.DeleteDocumentProperty method.

func (*DeleteDocumentPropertyRequest) CreateRequestData ¶

func (data *DeleteDocumentPropertyRequest) CreateRequestData() (RequestData, error)

func (*DeleteDocumentPropertyRequest) CreateResponse ¶

func (data *DeleteDocumentPropertyRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteDrawingObjectOnlineRequest ¶

type DeleteDrawingObjectOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteDrawingObjectOnlineRequest contains request data for WordsApiService.DeleteDrawingObjectOnline method.

func (*DeleteDrawingObjectOnlineRequest) CreateRequestData ¶

func (data *DeleteDrawingObjectOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteDrawingObjectOnlineRequest) CreateResponse ¶

func (data *DeleteDrawingObjectOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteDrawingObjectRequest ¶

type DeleteDrawingObjectRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteDrawingObjectRequest contains request data for WordsApiService.DeleteDrawingObject method.

func (*DeleteDrawingObjectRequest) CreateRequestData ¶

func (data *DeleteDrawingObjectRequest) CreateRequestData() (RequestData, error)

func (*DeleteDrawingObjectRequest) CreateResponse ¶

func (data *DeleteDrawingObjectRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteFieldOnlineRequest ¶

type DeleteFieldOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteFieldOnlineRequest contains request data for WordsApiService.DeleteFieldOnline method.

func (*DeleteFieldOnlineRequest) CreateRequestData ¶

func (data *DeleteFieldOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteFieldOnlineRequest) CreateResponse ¶

func (data *DeleteFieldOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteFieldRequest ¶

type DeleteFieldRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteFieldRequest contains request data for WordsApiService.DeleteField method.

func (*DeleteFieldRequest) CreateRequestData ¶

func (data *DeleteFieldRequest) CreateRequestData() (RequestData, error)

func (*DeleteFieldRequest) CreateResponse ¶

func (data *DeleteFieldRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteFieldsOnlineRequest ¶

type DeleteFieldsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteFieldsOnlineRequest contains request data for WordsApiService.DeleteFieldsOnline method.

func (*DeleteFieldsOnlineRequest) CreateRequestData ¶

func (data *DeleteFieldsOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteFieldsOnlineRequest) CreateResponse ¶

func (data *DeleteFieldsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteFieldsRequest ¶

type DeleteFieldsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteFieldsRequest contains request data for WordsApiService.DeleteFields method.

func (*DeleteFieldsRequest) CreateRequestData ¶

func (data *DeleteFieldsRequest) CreateRequestData() (RequestData, error)

func (*DeleteFieldsRequest) CreateResponse ¶

func (data *DeleteFieldsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteFileRequest ¶

type DeleteFileRequest struct {
	// Path of the file including the file name and extension e.g. /folder1/file.ext.
	Path *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "storageName" value: (*string) Storage name.
	   key: "versionId" value: (*string) File version ID to delete. */
	Optionals map[string]interface{}
}

DeleteFileRequest contains request data for WordsApiService.DeleteFile method.

func (*DeleteFileRequest) CreateRequestData ¶

func (data *DeleteFileRequest) CreateRequestData() (RequestData, error)

func (*DeleteFileRequest) CreateResponse ¶

func (data *DeleteFileRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteFolderRequest ¶

type DeleteFolderRequest struct {
	// Folder path e.g. '/folder'.
	Path *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "storageName" value: (*string) Storage name.
	   key: "recursive" value: (*bool) Enable to delete folders, subfolders and files. */
	Optionals map[string]interface{}
}

DeleteFolderRequest contains request data for WordsApiService.DeleteFolder method.

func (*DeleteFolderRequest) CreateRequestData ¶

func (data *DeleteFolderRequest) CreateRequestData() (RequestData, error)

func (*DeleteFolderRequest) CreateResponse ¶

func (data *DeleteFolderRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteFootnoteOnlineRequest ¶

type DeleteFootnoteOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteFootnoteOnlineRequest contains request data for WordsApiService.DeleteFootnoteOnline method.

func (*DeleteFootnoteOnlineRequest) CreateRequestData ¶

func (data *DeleteFootnoteOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteFootnoteOnlineRequest) CreateResponse ¶

func (data *DeleteFootnoteOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteFootnoteRequest ¶

type DeleteFootnoteRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteFootnoteRequest contains request data for WordsApiService.DeleteFootnote method.

func (*DeleteFootnoteRequest) CreateRequestData ¶

func (data *DeleteFootnoteRequest) CreateRequestData() (RequestData, error)

func (*DeleteFootnoteRequest) CreateResponse ¶

func (data *DeleteFootnoteRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteFormFieldOnlineRequest ¶

type DeleteFormFieldOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteFormFieldOnlineRequest contains request data for WordsApiService.DeleteFormFieldOnline method.

func (*DeleteFormFieldOnlineRequest) CreateRequestData ¶

func (data *DeleteFormFieldOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteFormFieldOnlineRequest) CreateResponse ¶

func (data *DeleteFormFieldOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteFormFieldRequest ¶

type DeleteFormFieldRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteFormFieldRequest contains request data for WordsApiService.DeleteFormField method.

func (*DeleteFormFieldRequest) CreateRequestData ¶

func (data *DeleteFormFieldRequest) CreateRequestData() (RequestData, error)

func (*DeleteFormFieldRequest) CreateResponse ¶

func (data *DeleteFormFieldRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteHeaderFooterOnlineRequest ¶

type DeleteHeaderFooterOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the section in the document tree.
	SectionPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteHeaderFooterOnlineRequest contains request data for WordsApiService.DeleteHeaderFooterOnline method.

func (*DeleteHeaderFooterOnlineRequest) CreateRequestData ¶

func (data *DeleteHeaderFooterOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteHeaderFooterOnlineRequest) CreateResponse ¶

func (data *DeleteHeaderFooterOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteHeaderFooterRequest ¶

type DeleteHeaderFooterRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the section in the document tree.
	SectionPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteHeaderFooterRequest contains request data for WordsApiService.DeleteHeaderFooter method.

func (*DeleteHeaderFooterRequest) CreateRequestData ¶

func (data *DeleteHeaderFooterRequest) CreateRequestData() (RequestData, error)

func (*DeleteHeaderFooterRequest) CreateResponse ¶

func (data *DeleteHeaderFooterRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteHeadersFootersOnlineRequest ¶

type DeleteHeadersFootersOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the section in the document tree.
	SectionPath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions.
	   key: "headersFootersTypes" value: (*string) The list of HeaderFooter types. */
	Optionals map[string]interface{}
}

DeleteHeadersFootersOnlineRequest contains request data for WordsApiService.DeleteHeadersFootersOnline method.

func (*DeleteHeadersFootersOnlineRequest) CreateRequestData ¶

func (data *DeleteHeadersFootersOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteHeadersFootersOnlineRequest) CreateResponse ¶

func (data *DeleteHeadersFootersOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteHeadersFootersRequest ¶

type DeleteHeadersFootersRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the section in the document tree.
	SectionPath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions.
	   key: "headersFootersTypes" value: (*string) The list of HeaderFooter types. */
	Optionals map[string]interface{}
}

DeleteHeadersFootersRequest contains request data for WordsApiService.DeleteHeadersFooters method.

func (*DeleteHeadersFootersRequest) CreateRequestData ¶

func (data *DeleteHeadersFootersRequest) CreateRequestData() (RequestData, error)

func (*DeleteHeadersFootersRequest) CreateResponse ¶

func (data *DeleteHeadersFootersRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteMacrosOnlineRequest ¶

type DeleteMacrosOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteMacrosOnlineRequest contains request data for WordsApiService.DeleteMacrosOnline method.

func (*DeleteMacrosOnlineRequest) CreateRequestData ¶

func (data *DeleteMacrosOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteMacrosOnlineRequest) CreateResponse ¶

func (data *DeleteMacrosOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteMacrosRequest ¶

type DeleteMacrosRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteMacrosRequest contains request data for WordsApiService.DeleteMacros method.

func (*DeleteMacrosRequest) CreateRequestData ¶

func (data *DeleteMacrosRequest) CreateRequestData() (RequestData, error)

func (*DeleteMacrosRequest) CreateResponse ¶

func (data *DeleteMacrosRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteOfficeMathObjectOnlineRequest ¶

type DeleteOfficeMathObjectOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteOfficeMathObjectOnlineRequest contains request data for WordsApiService.DeleteOfficeMathObjectOnline method.

func (*DeleteOfficeMathObjectOnlineRequest) CreateRequestData ¶

func (data *DeleteOfficeMathObjectOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteOfficeMathObjectOnlineRequest) CreateResponse ¶

func (data *DeleteOfficeMathObjectOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteOfficeMathObjectRequest ¶

type DeleteOfficeMathObjectRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteOfficeMathObjectRequest contains request data for WordsApiService.DeleteOfficeMathObject method.

func (*DeleteOfficeMathObjectRequest) CreateRequestData ¶

func (data *DeleteOfficeMathObjectRequest) CreateRequestData() (RequestData, error)

func (*DeleteOfficeMathObjectRequest) CreateResponse ¶

func (data *DeleteOfficeMathObjectRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteOfficeMathObjectsOnlineRequest ¶

type DeleteOfficeMathObjectsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteOfficeMathObjectsOnlineRequest contains request data for WordsApiService.DeleteOfficeMathObjectsOnline method.

func (*DeleteOfficeMathObjectsOnlineRequest) CreateRequestData ¶

func (data *DeleteOfficeMathObjectsOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteOfficeMathObjectsOnlineRequest) CreateResponse ¶

func (data *DeleteOfficeMathObjectsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteOfficeMathObjectsRequest ¶

type DeleteOfficeMathObjectsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteOfficeMathObjectsRequest contains request data for WordsApiService.DeleteOfficeMathObjects method.

func (*DeleteOfficeMathObjectsRequest) CreateRequestData ¶

func (data *DeleteOfficeMathObjectsRequest) CreateRequestData() (RequestData, error)

func (*DeleteOfficeMathObjectsRequest) CreateResponse ¶

func (data *DeleteOfficeMathObjectsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteParagraphListFormatOnlineRequest ¶

type DeleteParagraphListFormatOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteParagraphListFormatOnlineRequest contains request data for WordsApiService.DeleteParagraphListFormatOnline method.

func (*DeleteParagraphListFormatOnlineRequest) CreateRequestData ¶

func (data *DeleteParagraphListFormatOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteParagraphListFormatOnlineRequest) CreateResponse ¶

func (data *DeleteParagraphListFormatOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteParagraphListFormatOnlineResponse ¶

type DeleteParagraphListFormatOnlineResponse struct {
	// The REST response with a list format for a paragraph.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/listFormat" REST API requests.
	Model IParagraphListFormatResponse

	// The document after modification.
	Document map[string]io.Reader
}

DeleteParagraphListFormatOnlineResponse struct Removes the formatting properties of a paragraph list from the document node.

func (*DeleteParagraphListFormatOnlineResponse) GetDocument ¶

func (*DeleteParagraphListFormatOnlineResponse) GetModel ¶

func (*DeleteParagraphListFormatOnlineResponse) SetDocument ¶

func (obj *DeleteParagraphListFormatOnlineResponse) SetDocument(value map[string]io.Reader)

func (*DeleteParagraphListFormatOnlineResponse) SetModel ¶

type DeleteParagraphListFormatRequest ¶

type DeleteParagraphListFormatRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteParagraphListFormatRequest contains request data for WordsApiService.DeleteParagraphListFormat method.

func (*DeleteParagraphListFormatRequest) CreateRequestData ¶

func (data *DeleteParagraphListFormatRequest) CreateRequestData() (RequestData, error)

func (*DeleteParagraphListFormatRequest) CreateResponse ¶

func (data *DeleteParagraphListFormatRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteParagraphOnlineRequest ¶

type DeleteParagraphOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteParagraphOnlineRequest contains request data for WordsApiService.DeleteParagraphOnline method.

func (*DeleteParagraphOnlineRequest) CreateRequestData ¶

func (data *DeleteParagraphOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteParagraphOnlineRequest) CreateResponse ¶

func (data *DeleteParagraphOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteParagraphRequest ¶

type DeleteParagraphRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteParagraphRequest contains request data for WordsApiService.DeleteParagraph method.

func (*DeleteParagraphRequest) CreateRequestData ¶

func (data *DeleteParagraphRequest) CreateRequestData() (RequestData, error)

func (*DeleteParagraphRequest) CreateResponse ¶

func (data *DeleteParagraphRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteParagraphTabStopOnlineRequest ¶

type DeleteParagraphTabStopOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The position of a tab stop to remove.
	Position *float64
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

DeleteParagraphTabStopOnlineRequest contains request data for WordsApiService.DeleteParagraphTabStopOnline method.

func (*DeleteParagraphTabStopOnlineRequest) CreateRequestData ¶

func (data *DeleteParagraphTabStopOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteParagraphTabStopOnlineRequest) CreateResponse ¶

func (data *DeleteParagraphTabStopOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteParagraphTabStopOnlineResponse ¶

type DeleteParagraphTabStopOnlineResponse struct {
	// The REST response with an array of tab stops.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/tabstops" REST API requests.
	Model ITabStopsResponse

	// The document after modification.
	Document map[string]io.Reader
}

DeleteParagraphTabStopOnlineResponse struct Removes a paragraph tab stop from the document node.

func (*DeleteParagraphTabStopOnlineResponse) GetDocument ¶

func (obj *DeleteParagraphTabStopOnlineResponse) GetDocument() map[string]io.Reader

func (*DeleteParagraphTabStopOnlineResponse) GetModel ¶

func (*DeleteParagraphTabStopOnlineResponse) SetDocument ¶

func (obj *DeleteParagraphTabStopOnlineResponse) SetDocument(value map[string]io.Reader)

func (*DeleteParagraphTabStopOnlineResponse) SetModel ¶

type DeleteParagraphTabStopRequest ¶

type DeleteParagraphTabStopRequest struct {
	// The filename of the input document.
	Name *string
	// The position of a tab stop to remove.
	Position *float64
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

DeleteParagraphTabStopRequest contains request data for WordsApiService.DeleteParagraphTabStop method.

func (*DeleteParagraphTabStopRequest) CreateRequestData ¶

func (data *DeleteParagraphTabStopRequest) CreateRequestData() (RequestData, error)

func (*DeleteParagraphTabStopRequest) CreateResponse ¶

func (data *DeleteParagraphTabStopRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteRunOnlineRequest ¶

type DeleteRunOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteRunOnlineRequest contains request data for WordsApiService.DeleteRunOnline method.

func (*DeleteRunOnlineRequest) CreateRequestData ¶

func (data *DeleteRunOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteRunOnlineRequest) CreateResponse ¶

func (data *DeleteRunOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteRunRequest ¶

type DeleteRunRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteRunRequest contains request data for WordsApiService.DeleteRun method.

func (*DeleteRunRequest) CreateRequestData ¶

func (data *DeleteRunRequest) CreateRequestData() (RequestData, error)

func (*DeleteRunRequest) CreateResponse ¶

func (data *DeleteRunRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteSectionOnlineRequest ¶

type DeleteSectionOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the section.
	SectionIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteSectionOnlineRequest contains request data for WordsApiService.DeleteSectionOnline method.

func (*DeleteSectionOnlineRequest) CreateRequestData ¶

func (data *DeleteSectionOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteSectionOnlineRequest) CreateResponse ¶

func (data *DeleteSectionOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteSectionRequest ¶

type DeleteSectionRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the section.
	SectionIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteSectionRequest contains request data for WordsApiService.DeleteSection method.

func (*DeleteSectionRequest) CreateRequestData ¶

func (data *DeleteSectionRequest) CreateRequestData() (RequestData, error)

func (*DeleteSectionRequest) CreateResponse ¶

func (data *DeleteSectionRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteStructuredDocumentTagOnlineRequest ¶

type DeleteStructuredDocumentTagOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteStructuredDocumentTagOnlineRequest contains request data for WordsApiService.DeleteStructuredDocumentTagOnline method.

func (*DeleteStructuredDocumentTagOnlineRequest) CreateRequestData ¶

func (data *DeleteStructuredDocumentTagOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteStructuredDocumentTagOnlineRequest) CreateResponse ¶

func (data *DeleteStructuredDocumentTagOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteStructuredDocumentTagRequest ¶

type DeleteStructuredDocumentTagRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteStructuredDocumentTagRequest contains request data for WordsApiService.DeleteStructuredDocumentTag method.

func (*DeleteStructuredDocumentTagRequest) CreateRequestData ¶

func (data *DeleteStructuredDocumentTagRequest) CreateRequestData() (RequestData, error)

func (*DeleteStructuredDocumentTagRequest) CreateResponse ¶

func (data *DeleteStructuredDocumentTagRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteTableCellOnlineRequest ¶

type DeleteTableCellOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the table row in the document tree.
	TableRowPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteTableCellOnlineRequest contains request data for WordsApiService.DeleteTableCellOnline method.

func (*DeleteTableCellOnlineRequest) CreateRequestData ¶

func (data *DeleteTableCellOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteTableCellOnlineRequest) CreateResponse ¶

func (data *DeleteTableCellOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteTableCellRequest ¶

type DeleteTableCellRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the table row in the document tree.
	TableRowPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteTableCellRequest contains request data for WordsApiService.DeleteTableCell method.

func (*DeleteTableCellRequest) CreateRequestData ¶

func (data *DeleteTableCellRequest) CreateRequestData() (RequestData, error)

func (*DeleteTableCellRequest) CreateResponse ¶

func (data *DeleteTableCellRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteTableOnlineRequest ¶

type DeleteTableOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteTableOnlineRequest contains request data for WordsApiService.DeleteTableOnline method.

func (*DeleteTableOnlineRequest) CreateRequestData ¶

func (data *DeleteTableOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteTableOnlineRequest) CreateResponse ¶

func (data *DeleteTableOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteTableRequest ¶

type DeleteTableRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteTableRequest contains request data for WordsApiService.DeleteTable method.

func (*DeleteTableRequest) CreateRequestData ¶

func (data *DeleteTableRequest) CreateRequestData() (RequestData, error)

func (*DeleteTableRequest) CreateResponse ¶

func (data *DeleteTableRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteTableRowOnlineRequest ¶

type DeleteTableRowOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the table in the document tree.
	TablePath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteTableRowOnlineRequest contains request data for WordsApiService.DeleteTableRowOnline method.

func (*DeleteTableRowOnlineRequest) CreateRequestData ¶

func (data *DeleteTableRowOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteTableRowOnlineRequest) CreateResponse ¶

func (data *DeleteTableRowOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteTableRowRequest ¶

type DeleteTableRowRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the table in the document tree.
	TablePath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteTableRowRequest contains request data for WordsApiService.DeleteTableRow method.

func (*DeleteTableRowRequest) CreateRequestData ¶

func (data *DeleteTableRowRequest) CreateRequestData() (RequestData, error)

func (*DeleteTableRowRequest) CreateResponse ¶

func (data *DeleteTableRowRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteWatermarkOnlineRequest ¶

type DeleteWatermarkOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteWatermarkOnlineRequest contains request data for WordsApiService.DeleteWatermarkOnline method.

func (*DeleteWatermarkOnlineRequest) CreateRequestData ¶

func (data *DeleteWatermarkOnlineRequest) CreateRequestData() (RequestData, error)

func (*DeleteWatermarkOnlineRequest) CreateResponse ¶

func (data *DeleteWatermarkOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DeleteWatermarkOnlineResponse ¶

type DeleteWatermarkOnlineResponse struct {
	// The REST response with a document description.
	Model IDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

DeleteWatermarkOnlineResponse struct Removes a watermark from the document.

func (*DeleteWatermarkOnlineResponse) GetDocument ¶

func (obj *DeleteWatermarkOnlineResponse) GetDocument() map[string]io.Reader

func (*DeleteWatermarkOnlineResponse) GetModel ¶

func (*DeleteWatermarkOnlineResponse) SetDocument ¶

func (obj *DeleteWatermarkOnlineResponse) SetDocument(value map[string]io.Reader)

func (*DeleteWatermarkOnlineResponse) SetModel ¶

func (obj *DeleteWatermarkOnlineResponse) SetModel(value IDocumentResponse)

type DeleteWatermarkRequest ¶

type DeleteWatermarkRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

DeleteWatermarkRequest contains request data for WordsApiService.DeleteWatermark method.

func (*DeleteWatermarkRequest) CreateRequestData ¶

func (data *DeleteWatermarkRequest) CreateRequestData() (RequestData, error)

func (*DeleteWatermarkRequest) CreateResponse ¶

func (data *DeleteWatermarkRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DocSaveOptionsData ¶

type DocSaveOptionsData struct {
	// Container class for doc/dot save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for doc/dot save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for doc/dot save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for doc/dot save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for doc/dot save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for doc/dot save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for doc/dot save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for doc/dot save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for doc/dot save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for doc/dot save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for doc/dot save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for doc/dot save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for doc/dot save options.
	AlwaysCompressMetafiles *bool `json:"AlwaysCompressMetafiles,omitempty"`

	// Container class for doc/dot save options.
	Password *string `json:"Password,omitempty"`

	// Container class for doc/dot save options.
	SavePictureBullet *bool `json:"SavePictureBullet,omitempty"`

	// Container class for doc/dot save options.
	SaveRoutingSlip *bool `json:"SaveRoutingSlip,omitempty"`

	// Container class for doc/dot save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*DocSaveOptionsData) CollectFilesContent ¶

func (obj *DocSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocSaveOptionsData) Deserialize ¶

func (obj *DocSaveOptionsData) Deserialize(json map[string]interface{})

func (*DocSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *DocSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*DocSaveOptionsData) GetAlwaysCompressMetafiles ¶

func (obj *DocSaveOptionsData) GetAlwaysCompressMetafiles() *bool

func (*DocSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *DocSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*DocSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *DocSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*DocSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *DocSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*DocSaveOptionsData) GetDmlRenderingMode ¶

func (obj *DocSaveOptionsData) GetDmlRenderingMode() *string

func (*DocSaveOptionsData) GetFileName ¶

func (obj *DocSaveOptionsData) GetFileName() *string

func (*DocSaveOptionsData) GetImlRenderingMode ¶

func (obj *DocSaveOptionsData) GetImlRenderingMode() *string

func (*DocSaveOptionsData) GetPassword ¶

func (obj *DocSaveOptionsData) GetPassword() *string

func (*DocSaveOptionsData) GetSaveFormat ¶

func (obj *DocSaveOptionsData) GetSaveFormat() *string

func (*DocSaveOptionsData) GetSavePictureBullet ¶

func (obj *DocSaveOptionsData) GetSavePictureBullet() *bool

func (*DocSaveOptionsData) GetSaveRoutingSlip ¶

func (obj *DocSaveOptionsData) GetSaveRoutingSlip() *bool

func (*DocSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *DocSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*DocSaveOptionsData) GetUpdateFields ¶

func (obj *DocSaveOptionsData) GetUpdateFields() *bool

func (*DocSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *DocSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*DocSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *DocSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*DocSaveOptionsData) GetZipOutput ¶

func (obj *DocSaveOptionsData) GetZipOutput() *bool

func (*DocSaveOptionsData) Initialize ¶

func (obj *DocSaveOptionsData) Initialize()

func (DocSaveOptionsData) IsDocSaveOptionsData ¶

func (DocSaveOptionsData) IsDocSaveOptionsData() bool

func (DocSaveOptionsData) IsSaveOptionsData ¶

func (DocSaveOptionsData) IsSaveOptionsData() bool

func (*DocSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *DocSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*DocSaveOptionsData) SetAlwaysCompressMetafiles ¶

func (obj *DocSaveOptionsData) SetAlwaysCompressMetafiles(value *bool)

func (*DocSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *DocSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*DocSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *DocSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*DocSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *DocSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*DocSaveOptionsData) SetDmlRenderingMode ¶

func (obj *DocSaveOptionsData) SetDmlRenderingMode(value *string)

func (*DocSaveOptionsData) SetFileName ¶

func (obj *DocSaveOptionsData) SetFileName(value *string)

func (*DocSaveOptionsData) SetImlRenderingMode ¶

func (obj *DocSaveOptionsData) SetImlRenderingMode(value *string)

func (*DocSaveOptionsData) SetPassword ¶

func (obj *DocSaveOptionsData) SetPassword(value *string)

func (*DocSaveOptionsData) SetSaveFormat ¶

func (obj *DocSaveOptionsData) SetSaveFormat(value *string)

func (*DocSaveOptionsData) SetSavePictureBullet ¶

func (obj *DocSaveOptionsData) SetSavePictureBullet(value *bool)

func (*DocSaveOptionsData) SetSaveRoutingSlip ¶

func (obj *DocSaveOptionsData) SetSaveRoutingSlip(value *bool)

func (*DocSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *DocSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*DocSaveOptionsData) SetUpdateFields ¶

func (obj *DocSaveOptionsData) SetUpdateFields(value *bool)

func (*DocSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *DocSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*DocSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *DocSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*DocSaveOptionsData) SetZipOutput ¶

func (obj *DocSaveOptionsData) SetZipOutput(value *bool)

func (*DocSaveOptionsData) Validate ¶

func (obj *DocSaveOptionsData) Validate() error

type DocmSaveOptionsData ¶

type DocmSaveOptionsData struct {
	// Container class for docm save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for docm save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for docm save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for docm save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for docm save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for docm save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for docm save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for docm save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for docm save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for docm save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for docm save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for docm save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for docm save options.
	Compliance *string `json:"Compliance,omitempty"`

	// Container class for docm save options.
	CompressionLevel *string `json:"CompressionLevel,omitempty"`

	// Container class for docm save options.
	Password *string `json:"Password,omitempty"`

	// Container class for docm save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for docm save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*DocmSaveOptionsData) CollectFilesContent ¶

func (obj *DocmSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocmSaveOptionsData) Deserialize ¶

func (obj *DocmSaveOptionsData) Deserialize(json map[string]interface{})

func (*DocmSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *DocmSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*DocmSaveOptionsData) GetCompliance ¶

func (obj *DocmSaveOptionsData) GetCompliance() *string

func (*DocmSaveOptionsData) GetCompressionLevel ¶

func (obj *DocmSaveOptionsData) GetCompressionLevel() *string

func (*DocmSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *DocmSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*DocmSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *DocmSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*DocmSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *DocmSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*DocmSaveOptionsData) GetDmlRenderingMode ¶

func (obj *DocmSaveOptionsData) GetDmlRenderingMode() *string

func (*DocmSaveOptionsData) GetFileName ¶

func (obj *DocmSaveOptionsData) GetFileName() *string

func (*DocmSaveOptionsData) GetImlRenderingMode ¶

func (obj *DocmSaveOptionsData) GetImlRenderingMode() *string

func (*DocmSaveOptionsData) GetPassword ¶

func (obj *DocmSaveOptionsData) GetPassword() *string

func (*DocmSaveOptionsData) GetPrettyFormat ¶

func (obj *DocmSaveOptionsData) GetPrettyFormat() *bool

func (*DocmSaveOptionsData) GetSaveFormat ¶

func (obj *DocmSaveOptionsData) GetSaveFormat() *string

func (*DocmSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *DocmSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*DocmSaveOptionsData) GetUpdateFields ¶

func (obj *DocmSaveOptionsData) GetUpdateFields() *bool

func (*DocmSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *DocmSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*DocmSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *DocmSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*DocmSaveOptionsData) GetZipOutput ¶

func (obj *DocmSaveOptionsData) GetZipOutput() *bool

func (*DocmSaveOptionsData) Initialize ¶

func (obj *DocmSaveOptionsData) Initialize()

func (DocmSaveOptionsData) IsDocmSaveOptionsData ¶

func (DocmSaveOptionsData) IsDocmSaveOptionsData() bool

func (DocmSaveOptionsData) IsOoxmlSaveOptionsData ¶

func (DocmSaveOptionsData) IsOoxmlSaveOptionsData() bool

func (DocmSaveOptionsData) IsSaveOptionsData ¶

func (DocmSaveOptionsData) IsSaveOptionsData() bool

func (*DocmSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *DocmSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*DocmSaveOptionsData) SetCompliance ¶

func (obj *DocmSaveOptionsData) SetCompliance(value *string)

func (*DocmSaveOptionsData) SetCompressionLevel ¶

func (obj *DocmSaveOptionsData) SetCompressionLevel(value *string)

func (*DocmSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *DocmSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*DocmSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *DocmSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*DocmSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *DocmSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*DocmSaveOptionsData) SetDmlRenderingMode ¶

func (obj *DocmSaveOptionsData) SetDmlRenderingMode(value *string)

func (*DocmSaveOptionsData) SetFileName ¶

func (obj *DocmSaveOptionsData) SetFileName(value *string)

func (*DocmSaveOptionsData) SetImlRenderingMode ¶

func (obj *DocmSaveOptionsData) SetImlRenderingMode(value *string)

func (*DocmSaveOptionsData) SetPassword ¶

func (obj *DocmSaveOptionsData) SetPassword(value *string)

func (*DocmSaveOptionsData) SetPrettyFormat ¶

func (obj *DocmSaveOptionsData) SetPrettyFormat(value *bool)

func (*DocmSaveOptionsData) SetSaveFormat ¶

func (obj *DocmSaveOptionsData) SetSaveFormat(value *string)

func (*DocmSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *DocmSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*DocmSaveOptionsData) SetUpdateFields ¶

func (obj *DocmSaveOptionsData) SetUpdateFields(value *bool)

func (*DocmSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *DocmSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*DocmSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *DocmSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*DocmSaveOptionsData) SetZipOutput ¶

func (obj *DocmSaveOptionsData) SetZipOutput(value *bool)

func (*DocmSaveOptionsData) Validate ¶

func (obj *DocmSaveOptionsData) Validate() error

type Document ¶

type Document struct {
	// Represents Words document DTO.
	Links []ILink `json:"Links,omitempty"`

	// Represents Words document DTO.
	DocumentProperties IDocumentProperties `json:"DocumentProperties,omitempty"`

	// Represents Words document DTO.
	FileName *string `json:"FileName,omitempty"`

	// Represents Words document DTO.
	IsEncrypted *bool `json:"IsEncrypted,omitempty"`

	// Represents Words document DTO.
	IsSigned *bool `json:"IsSigned,omitempty"`

	// Represents Words document DTO.
	SourceFormat *string `json:"SourceFormat,omitempty"`
}

func (*Document) CollectFilesContent ¶

func (obj *Document) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Document) Deserialize ¶

func (obj *Document) Deserialize(json map[string]interface{})

func (*Document) GetDocumentProperties ¶

func (obj *Document) GetDocumentProperties() IDocumentProperties

func (*Document) GetFileName ¶

func (obj *Document) GetFileName() *string

func (*Document) GetIsEncrypted ¶

func (obj *Document) GetIsEncrypted() *bool

func (*Document) GetIsSigned ¶

func (obj *Document) GetIsSigned() *bool
func (obj *Document) GetLinks() []ILink

func (*Document) GetSourceFormat ¶

func (obj *Document) GetSourceFormat() *string

func (*Document) Initialize ¶

func (obj *Document) Initialize()

func (Document) IsDocument ¶

func (Document) IsDocument() bool

func (*Document) SetDocumentProperties ¶

func (obj *Document) SetDocumentProperties(value IDocumentProperties)

func (*Document) SetFileName ¶

func (obj *Document) SetFileName(value *string)

func (*Document) SetIsEncrypted ¶

func (obj *Document) SetIsEncrypted(value *bool)

func (*Document) SetIsSigned ¶

func (obj *Document) SetIsSigned(value *bool)
func (obj *Document) SetLinks(value []ILink)

func (*Document) SetSourceFormat ¶

func (obj *Document) SetSourceFormat(value *string)

func (*Document) Validate ¶

func (obj *Document) Validate() error

type DocumentEntry ¶

type DocumentEntry struct {
	// Represents a document which will be appended to the original resource document.
	FileReference IFileReference `json:"FileReference,omitempty"`

	// Represents a document which will be appended to the original resource document.
	EncryptedPassword *string `json:"EncryptedPassword,omitempty"`

	// Represents a document which will be appended to the original resource document.
	ImportFormatMode *string `json:"ImportFormatMode,omitempty"`
}

func (*DocumentEntry) CollectFilesContent ¶

func (obj *DocumentEntry) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocumentEntry) Deserialize ¶

func (obj *DocumentEntry) Deserialize(json map[string]interface{})

func (*DocumentEntry) GetEncryptedPassword ¶

func (obj *DocumentEntry) GetEncryptedPassword() *string

func (*DocumentEntry) GetFileReference ¶

func (obj *DocumentEntry) GetFileReference() IFileReference

func (*DocumentEntry) GetImportFormatMode ¶

func (obj *DocumentEntry) GetImportFormatMode() *string

func (*DocumentEntry) Initialize ¶

func (obj *DocumentEntry) Initialize()

func (DocumentEntry) IsBaseEntry ¶

func (DocumentEntry) IsBaseEntry() bool

func (DocumentEntry) IsDocumentEntry ¶

func (DocumentEntry) IsDocumentEntry() bool

func (*DocumentEntry) SetEncryptedPassword ¶

func (obj *DocumentEntry) SetEncryptedPassword(value *string)

func (*DocumentEntry) SetFileReference ¶

func (obj *DocumentEntry) SetFileReference(value IFileReference)

func (*DocumentEntry) SetImportFormatMode ¶

func (obj *DocumentEntry) SetImportFormatMode(value *string)

func (*DocumentEntry) Validate ¶

func (obj *DocumentEntry) Validate() error

type DocumentEntryList ¶

type DocumentEntryList struct {
	// Represents a list of documents which will be appended to the original resource document.
	ApplyBaseDocumentHeadersAndFootersToAppendingDocuments *bool `json:"ApplyBaseDocumentHeadersAndFootersToAppendingDocuments,omitempty"`

	// Represents a list of documents which will be appended to the original resource document.
	DocumentEntries []IDocumentEntry `json:"DocumentEntries,omitempty"`
}

func (*DocumentEntryList) CollectFilesContent ¶

func (obj *DocumentEntryList) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocumentEntryList) Deserialize ¶

func (obj *DocumentEntryList) Deserialize(json map[string]interface{})

func (*DocumentEntryList) GetApplyBaseDocumentHeadersAndFootersToAppendingDocuments ¶

func (obj *DocumentEntryList) GetApplyBaseDocumentHeadersAndFootersToAppendingDocuments() *bool

func (*DocumentEntryList) GetDocumentEntries ¶

func (obj *DocumentEntryList) GetDocumentEntries() []IDocumentEntry

func (*DocumentEntryList) Initialize ¶

func (obj *DocumentEntryList) Initialize()

func (DocumentEntryList) IsBaseEntryList ¶

func (DocumentEntryList) IsBaseEntryList() bool

func (DocumentEntryList) IsDocumentEntryList ¶

func (DocumentEntryList) IsDocumentEntryList() bool

func (*DocumentEntryList) SetApplyBaseDocumentHeadersAndFootersToAppendingDocuments ¶

func (obj *DocumentEntryList) SetApplyBaseDocumentHeadersAndFootersToAppendingDocuments(value *bool)

func (*DocumentEntryList) SetDocumentEntries ¶

func (obj *DocumentEntryList) SetDocumentEntries(value []IDocumentEntry)

func (*DocumentEntryList) Validate ¶

func (obj *DocumentEntryList) Validate() error

type DocumentPosition ¶

type DocumentPosition struct {
	// DTO container with a position in the document tree.
	Node INodeLink `json:"Node,omitempty"`

	// DTO container with a position in the document tree.
	Offset *int32 `json:"Offset,omitempty"`
}

func (*DocumentPosition) CollectFilesContent ¶

func (obj *DocumentPosition) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocumentPosition) Deserialize ¶

func (obj *DocumentPosition) Deserialize(json map[string]interface{})

func (*DocumentPosition) GetNode ¶

func (obj *DocumentPosition) GetNode() INodeLink

func (*DocumentPosition) GetOffset ¶

func (obj *DocumentPosition) GetOffset() *int32

func (*DocumentPosition) Initialize ¶

func (obj *DocumentPosition) Initialize()

func (DocumentPosition) IsDocumentPosition ¶

func (DocumentPosition) IsDocumentPosition() bool

func (*DocumentPosition) SetNode ¶

func (obj *DocumentPosition) SetNode(value INodeLink)

func (*DocumentPosition) SetOffset ¶

func (obj *DocumentPosition) SetOffset(value *int32)

func (*DocumentPosition) Validate ¶

func (obj *DocumentPosition) Validate() error

type DocumentProperties ¶

type DocumentProperties struct {
	// The collection of document properties.
	Link IWordsApiLink `json:"Link,omitempty"`

	// The collection of document properties.
	List []IDocumentProperty `json:"List,omitempty"`
}

func (*DocumentProperties) CollectFilesContent ¶

func (obj *DocumentProperties) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocumentProperties) Deserialize ¶

func (obj *DocumentProperties) Deserialize(json map[string]interface{})
func (obj *DocumentProperties) GetLink() IWordsApiLink

func (*DocumentProperties) GetList ¶

func (obj *DocumentProperties) GetList() []IDocumentProperty

func (*DocumentProperties) Initialize ¶

func (obj *DocumentProperties) Initialize()

func (DocumentProperties) IsDocumentProperties ¶

func (DocumentProperties) IsDocumentProperties() bool

func (DocumentProperties) IsLinkElement ¶

func (DocumentProperties) IsLinkElement() bool
func (obj *DocumentProperties) SetLink(value IWordsApiLink)

func (*DocumentProperties) SetList ¶

func (obj *DocumentProperties) SetList(value []IDocumentProperty)

func (*DocumentProperties) Validate ¶

func (obj *DocumentProperties) Validate() error

type DocumentPropertiesResponse ¶

type DocumentPropertiesResponse struct {
	// The REST response with a collection of document properties.
	// This response should be returned by the service when handling: GET /documentProperties.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of document properties.
	// This response should be returned by the service when handling: GET /documentProperties.
	DocumentProperties IDocumentProperties `json:"DocumentProperties,omitempty"`
}

func (*DocumentPropertiesResponse) CollectFilesContent ¶

func (obj *DocumentPropertiesResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocumentPropertiesResponse) Deserialize ¶

func (obj *DocumentPropertiesResponse) Deserialize(json map[string]interface{})

func (*DocumentPropertiesResponse) GetDocumentProperties ¶

func (obj *DocumentPropertiesResponse) GetDocumentProperties() IDocumentProperties

func (*DocumentPropertiesResponse) GetRequestId ¶

func (obj *DocumentPropertiesResponse) GetRequestId() *string

func (*DocumentPropertiesResponse) Initialize ¶

func (obj *DocumentPropertiesResponse) Initialize()

func (DocumentPropertiesResponse) IsDocumentPropertiesResponse ¶

func (DocumentPropertiesResponse) IsDocumentPropertiesResponse() bool

func (DocumentPropertiesResponse) IsWordsResponse ¶

func (DocumentPropertiesResponse) IsWordsResponse() bool

func (*DocumentPropertiesResponse) SetDocumentProperties ¶

func (obj *DocumentPropertiesResponse) SetDocumentProperties(value IDocumentProperties)

func (*DocumentPropertiesResponse) SetRequestId ¶

func (obj *DocumentPropertiesResponse) SetRequestId(value *string)

func (*DocumentPropertiesResponse) Validate ¶

func (obj *DocumentPropertiesResponse) Validate() error

type DocumentProperty ¶

type DocumentProperty struct {
	// Words document property DTO.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Words document property DTO.
	Name *string `json:"Name,omitempty"`

	// Words document property DTO.
	Value *string `json:"Value,omitempty"`

	// Words document property DTO.
	BuiltIn *bool `json:"BuiltIn,omitempty"`
}

func (*DocumentProperty) CollectFilesContent ¶

func (obj *DocumentProperty) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocumentProperty) Deserialize ¶

func (obj *DocumentProperty) Deserialize(json map[string]interface{})

func (*DocumentProperty) GetBuiltIn ¶

func (obj *DocumentProperty) GetBuiltIn() *bool
func (obj *DocumentProperty) GetLink() IWordsApiLink

func (*DocumentProperty) GetName ¶

func (obj *DocumentProperty) GetName() *string

func (*DocumentProperty) GetValue ¶

func (obj *DocumentProperty) GetValue() *string

func (*DocumentProperty) Initialize ¶

func (obj *DocumentProperty) Initialize()

func (DocumentProperty) IsDocumentProperty ¶

func (DocumentProperty) IsDocumentProperty() bool

func (DocumentProperty) IsLinkElement ¶

func (DocumentProperty) IsLinkElement() bool

func (*DocumentProperty) SetBuiltIn ¶

func (obj *DocumentProperty) SetBuiltIn(value *bool)
func (obj *DocumentProperty) SetLink(value IWordsApiLink)

func (*DocumentProperty) SetName ¶

func (obj *DocumentProperty) SetName(value *string)

func (*DocumentProperty) SetValue ¶

func (obj *DocumentProperty) SetValue(value *string)

func (*DocumentProperty) Validate ¶

func (obj *DocumentProperty) Validate() error

type DocumentPropertyCreateOrUpdate ¶

type DocumentPropertyCreateOrUpdate struct {
	// Words document property DTO for create or update.
	Value *string `json:"Value,omitempty"`
}

func (*DocumentPropertyCreateOrUpdate) CollectFilesContent ¶

func (obj *DocumentPropertyCreateOrUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocumentPropertyCreateOrUpdate) Deserialize ¶

func (obj *DocumentPropertyCreateOrUpdate) Deserialize(json map[string]interface{})

func (*DocumentPropertyCreateOrUpdate) GetValue ¶

func (obj *DocumentPropertyCreateOrUpdate) GetValue() *string

func (*DocumentPropertyCreateOrUpdate) Initialize ¶

func (obj *DocumentPropertyCreateOrUpdate) Initialize()

func (DocumentPropertyCreateOrUpdate) IsDocumentPropertyCreateOrUpdate ¶

func (DocumentPropertyCreateOrUpdate) IsDocumentPropertyCreateOrUpdate() bool

func (*DocumentPropertyCreateOrUpdate) SetValue ¶

func (obj *DocumentPropertyCreateOrUpdate) SetValue(value *string)

func (*DocumentPropertyCreateOrUpdate) Validate ¶

func (obj *DocumentPropertyCreateOrUpdate) Validate() error

type DocumentPropertyResponse ¶

type DocumentPropertyResponse struct {
	// The REST response with a document property.
	// This response should be returned by the service when handling: GET documentProperties/{propertyName}.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a document property.
	// This response should be returned by the service when handling: GET documentProperties/{propertyName}.
	DocumentProperty IDocumentProperty `json:"DocumentProperty,omitempty"`
}

func (*DocumentPropertyResponse) CollectFilesContent ¶

func (obj *DocumentPropertyResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocumentPropertyResponse) Deserialize ¶

func (obj *DocumentPropertyResponse) Deserialize(json map[string]interface{})

func (*DocumentPropertyResponse) GetDocumentProperty ¶

func (obj *DocumentPropertyResponse) GetDocumentProperty() IDocumentProperty

func (*DocumentPropertyResponse) GetRequestId ¶

func (obj *DocumentPropertyResponse) GetRequestId() *string

func (*DocumentPropertyResponse) Initialize ¶

func (obj *DocumentPropertyResponse) Initialize()

func (DocumentPropertyResponse) IsDocumentPropertyResponse ¶

func (DocumentPropertyResponse) IsDocumentPropertyResponse() bool

func (DocumentPropertyResponse) IsWordsResponse ¶

func (DocumentPropertyResponse) IsWordsResponse() bool

func (*DocumentPropertyResponse) SetDocumentProperty ¶

func (obj *DocumentPropertyResponse) SetDocumentProperty(value IDocumentProperty)

func (*DocumentPropertyResponse) SetRequestId ¶

func (obj *DocumentPropertyResponse) SetRequestId(value *string)

func (*DocumentPropertyResponse) Validate ¶

func (obj *DocumentPropertyResponse) Validate() error

type DocumentResponse ¶

type DocumentResponse struct {
	// The REST response with a document description.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a document description.
	Document IDocument `json:"Document,omitempty"`
}

func (*DocumentResponse) CollectFilesContent ¶

func (obj *DocumentResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocumentResponse) Deserialize ¶

func (obj *DocumentResponse) Deserialize(json map[string]interface{})

func (*DocumentResponse) GetDocument ¶

func (obj *DocumentResponse) GetDocument() IDocument

func (*DocumentResponse) GetRequestId ¶

func (obj *DocumentResponse) GetRequestId() *string

func (*DocumentResponse) Initialize ¶

func (obj *DocumentResponse) Initialize()

func (DocumentResponse) IsDocumentResponse ¶

func (DocumentResponse) IsDocumentResponse() bool

func (DocumentResponse) IsWordsResponse ¶

func (DocumentResponse) IsWordsResponse() bool

func (*DocumentResponse) SetDocument ¶

func (obj *DocumentResponse) SetDocument(value IDocument)

func (*DocumentResponse) SetRequestId ¶

func (obj *DocumentResponse) SetRequestId(value *string)

func (*DocumentResponse) Validate ¶

func (obj *DocumentResponse) Validate() error

type DocumentStatData ¶

type DocumentStatData struct {
	// Container for the document's statistical data.
	FootnotesStatData IFootnotesStatData `json:"FootnotesStatData,omitempty"`

	// Container for the document's statistical data.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container for the document's statistical data.
	ParagraphCount *int32 `json:"ParagraphCount,omitempty"`

	// Container for the document's statistical data.
	WordCount *int32 `json:"WordCount,omitempty"`

	// Container for the document's statistical data.
	PageStatData []IPageStatData `json:"PageStatData,omitempty"`
}

func (*DocumentStatData) CollectFilesContent ¶

func (obj *DocumentStatData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocumentStatData) Deserialize ¶

func (obj *DocumentStatData) Deserialize(json map[string]interface{})

func (*DocumentStatData) GetFootnotesStatData ¶

func (obj *DocumentStatData) GetFootnotesStatData() IFootnotesStatData

func (*DocumentStatData) GetPageCount ¶

func (obj *DocumentStatData) GetPageCount() *int32

func (*DocumentStatData) GetPageStatData ¶

func (obj *DocumentStatData) GetPageStatData() []IPageStatData

func (*DocumentStatData) GetParagraphCount ¶

func (obj *DocumentStatData) GetParagraphCount() *int32

func (*DocumentStatData) GetWordCount ¶

func (obj *DocumentStatData) GetWordCount() *int32

func (*DocumentStatData) Initialize ¶

func (obj *DocumentStatData) Initialize()

func (DocumentStatData) IsDocumentStatData ¶

func (DocumentStatData) IsDocumentStatData() bool

func (*DocumentStatData) SetFootnotesStatData ¶

func (obj *DocumentStatData) SetFootnotesStatData(value IFootnotesStatData)

func (*DocumentStatData) SetPageCount ¶

func (obj *DocumentStatData) SetPageCount(value *int32)

func (*DocumentStatData) SetPageStatData ¶

func (obj *DocumentStatData) SetPageStatData(value []IPageStatData)

func (*DocumentStatData) SetParagraphCount ¶

func (obj *DocumentStatData) SetParagraphCount(value *int32)

func (*DocumentStatData) SetWordCount ¶

func (obj *DocumentStatData) SetWordCount(value *int32)

func (*DocumentStatData) Validate ¶

func (obj *DocumentStatData) Validate() error

type DocxSaveOptionsData ¶

type DocxSaveOptionsData struct {
	// Container class for docx save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for docx save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for docx save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for docx save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for docx save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for docx save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for docx save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for docx save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for docx save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for docx save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for docx save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for docx save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for docx save options.
	Compliance *string `json:"Compliance,omitempty"`

	// Container class for docx save options.
	CompressionLevel *string `json:"CompressionLevel,omitempty"`

	// Container class for docx save options.
	Password *string `json:"Password,omitempty"`

	// Container class for docx save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for docx save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*DocxSaveOptionsData) CollectFilesContent ¶

func (obj *DocxSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DocxSaveOptionsData) Deserialize ¶

func (obj *DocxSaveOptionsData) Deserialize(json map[string]interface{})

func (*DocxSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *DocxSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*DocxSaveOptionsData) GetCompliance ¶

func (obj *DocxSaveOptionsData) GetCompliance() *string

func (*DocxSaveOptionsData) GetCompressionLevel ¶

func (obj *DocxSaveOptionsData) GetCompressionLevel() *string

func (*DocxSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *DocxSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*DocxSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *DocxSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*DocxSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *DocxSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*DocxSaveOptionsData) GetDmlRenderingMode ¶

func (obj *DocxSaveOptionsData) GetDmlRenderingMode() *string

func (*DocxSaveOptionsData) GetFileName ¶

func (obj *DocxSaveOptionsData) GetFileName() *string

func (*DocxSaveOptionsData) GetImlRenderingMode ¶

func (obj *DocxSaveOptionsData) GetImlRenderingMode() *string

func (*DocxSaveOptionsData) GetPassword ¶

func (obj *DocxSaveOptionsData) GetPassword() *string

func (*DocxSaveOptionsData) GetPrettyFormat ¶

func (obj *DocxSaveOptionsData) GetPrettyFormat() *bool

func (*DocxSaveOptionsData) GetSaveFormat ¶

func (obj *DocxSaveOptionsData) GetSaveFormat() *string

func (*DocxSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *DocxSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*DocxSaveOptionsData) GetUpdateFields ¶

func (obj *DocxSaveOptionsData) GetUpdateFields() *bool

func (*DocxSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *DocxSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*DocxSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *DocxSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*DocxSaveOptionsData) GetZipOutput ¶

func (obj *DocxSaveOptionsData) GetZipOutput() *bool

func (*DocxSaveOptionsData) Initialize ¶

func (obj *DocxSaveOptionsData) Initialize()

func (DocxSaveOptionsData) IsDocxSaveOptionsData ¶

func (DocxSaveOptionsData) IsDocxSaveOptionsData() bool

func (DocxSaveOptionsData) IsOoxmlSaveOptionsData ¶

func (DocxSaveOptionsData) IsOoxmlSaveOptionsData() bool

func (DocxSaveOptionsData) IsSaveOptionsData ¶

func (DocxSaveOptionsData) IsSaveOptionsData() bool

func (*DocxSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *DocxSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*DocxSaveOptionsData) SetCompliance ¶

func (obj *DocxSaveOptionsData) SetCompliance(value *string)

func (*DocxSaveOptionsData) SetCompressionLevel ¶

func (obj *DocxSaveOptionsData) SetCompressionLevel(value *string)

func (*DocxSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *DocxSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*DocxSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *DocxSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*DocxSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *DocxSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*DocxSaveOptionsData) SetDmlRenderingMode ¶

func (obj *DocxSaveOptionsData) SetDmlRenderingMode(value *string)

func (*DocxSaveOptionsData) SetFileName ¶

func (obj *DocxSaveOptionsData) SetFileName(value *string)

func (*DocxSaveOptionsData) SetImlRenderingMode ¶

func (obj *DocxSaveOptionsData) SetImlRenderingMode(value *string)

func (*DocxSaveOptionsData) SetPassword ¶

func (obj *DocxSaveOptionsData) SetPassword(value *string)

func (*DocxSaveOptionsData) SetPrettyFormat ¶

func (obj *DocxSaveOptionsData) SetPrettyFormat(value *bool)

func (*DocxSaveOptionsData) SetSaveFormat ¶

func (obj *DocxSaveOptionsData) SetSaveFormat(value *string)

func (*DocxSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *DocxSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*DocxSaveOptionsData) SetUpdateFields ¶

func (obj *DocxSaveOptionsData) SetUpdateFields(value *bool)

func (*DocxSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *DocxSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*DocxSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *DocxSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*DocxSaveOptionsData) SetZipOutput ¶

func (obj *DocxSaveOptionsData) SetZipOutput(value *bool)

func (*DocxSaveOptionsData) Validate ¶

func (obj *DocxSaveOptionsData) Validate() error

type DotSaveOptionsData ¶

type DotSaveOptionsData struct {
	// Container class for dot save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for dot save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for dot save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for dot save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for dot save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for dot save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for dot save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for dot save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for dot save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for dot save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for dot save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for dot save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for dot save options.
	AlwaysCompressMetafiles *bool `json:"AlwaysCompressMetafiles,omitempty"`

	// Container class for dot save options.
	Password *string `json:"Password,omitempty"`

	// Container class for dot save options.
	SavePictureBullet *bool `json:"SavePictureBullet,omitempty"`

	// Container class for dot save options.
	SaveRoutingSlip *bool `json:"SaveRoutingSlip,omitempty"`

	// Container class for dot save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*DotSaveOptionsData) CollectFilesContent ¶

func (obj *DotSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DotSaveOptionsData) Deserialize ¶

func (obj *DotSaveOptionsData) Deserialize(json map[string]interface{})

func (*DotSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *DotSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*DotSaveOptionsData) GetAlwaysCompressMetafiles ¶

func (obj *DotSaveOptionsData) GetAlwaysCompressMetafiles() *bool

func (*DotSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *DotSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*DotSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *DotSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*DotSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *DotSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*DotSaveOptionsData) GetDmlRenderingMode ¶

func (obj *DotSaveOptionsData) GetDmlRenderingMode() *string

func (*DotSaveOptionsData) GetFileName ¶

func (obj *DotSaveOptionsData) GetFileName() *string

func (*DotSaveOptionsData) GetImlRenderingMode ¶

func (obj *DotSaveOptionsData) GetImlRenderingMode() *string

func (*DotSaveOptionsData) GetPassword ¶

func (obj *DotSaveOptionsData) GetPassword() *string

func (*DotSaveOptionsData) GetSaveFormat ¶

func (obj *DotSaveOptionsData) GetSaveFormat() *string

func (*DotSaveOptionsData) GetSavePictureBullet ¶

func (obj *DotSaveOptionsData) GetSavePictureBullet() *bool

func (*DotSaveOptionsData) GetSaveRoutingSlip ¶

func (obj *DotSaveOptionsData) GetSaveRoutingSlip() *bool

func (*DotSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *DotSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*DotSaveOptionsData) GetUpdateFields ¶

func (obj *DotSaveOptionsData) GetUpdateFields() *bool

func (*DotSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *DotSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*DotSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *DotSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*DotSaveOptionsData) GetZipOutput ¶

func (obj *DotSaveOptionsData) GetZipOutput() *bool

func (*DotSaveOptionsData) Initialize ¶

func (obj *DotSaveOptionsData) Initialize()

func (DotSaveOptionsData) IsDocSaveOptionsData ¶

func (DotSaveOptionsData) IsDocSaveOptionsData() bool

func (DotSaveOptionsData) IsDotSaveOptionsData ¶

func (DotSaveOptionsData) IsDotSaveOptionsData() bool

func (DotSaveOptionsData) IsSaveOptionsData ¶

func (DotSaveOptionsData) IsSaveOptionsData() bool

func (*DotSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *DotSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*DotSaveOptionsData) SetAlwaysCompressMetafiles ¶

func (obj *DotSaveOptionsData) SetAlwaysCompressMetafiles(value *bool)

func (*DotSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *DotSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*DotSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *DotSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*DotSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *DotSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*DotSaveOptionsData) SetDmlRenderingMode ¶

func (obj *DotSaveOptionsData) SetDmlRenderingMode(value *string)

func (*DotSaveOptionsData) SetFileName ¶

func (obj *DotSaveOptionsData) SetFileName(value *string)

func (*DotSaveOptionsData) SetImlRenderingMode ¶

func (obj *DotSaveOptionsData) SetImlRenderingMode(value *string)

func (*DotSaveOptionsData) SetPassword ¶

func (obj *DotSaveOptionsData) SetPassword(value *string)

func (*DotSaveOptionsData) SetSaveFormat ¶

func (obj *DotSaveOptionsData) SetSaveFormat(value *string)

func (*DotSaveOptionsData) SetSavePictureBullet ¶

func (obj *DotSaveOptionsData) SetSavePictureBullet(value *bool)

func (*DotSaveOptionsData) SetSaveRoutingSlip ¶

func (obj *DotSaveOptionsData) SetSaveRoutingSlip(value *bool)

func (*DotSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *DotSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*DotSaveOptionsData) SetUpdateFields ¶

func (obj *DotSaveOptionsData) SetUpdateFields(value *bool)

func (*DotSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *DotSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*DotSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *DotSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*DotSaveOptionsData) SetZipOutput ¶

func (obj *DotSaveOptionsData) SetZipOutput(value *bool)

func (*DotSaveOptionsData) Validate ¶

func (obj *DotSaveOptionsData) Validate() error

type DotmSaveOptionsData ¶

type DotmSaveOptionsData struct {
	// Container class for dotm save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for dotm save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for dotm save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for dotm save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for dotm save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for dotm save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for dotm save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for dotm save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for dotm save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for dotm save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for dotm save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for dotm save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for dotm save options.
	Compliance *string `json:"Compliance,omitempty"`

	// Container class for dotm save options.
	CompressionLevel *string `json:"CompressionLevel,omitempty"`

	// Container class for dotm save options.
	Password *string `json:"Password,omitempty"`

	// Container class for dotm save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for dotm save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*DotmSaveOptionsData) CollectFilesContent ¶

func (obj *DotmSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DotmSaveOptionsData) Deserialize ¶

func (obj *DotmSaveOptionsData) Deserialize(json map[string]interface{})

func (*DotmSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *DotmSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*DotmSaveOptionsData) GetCompliance ¶

func (obj *DotmSaveOptionsData) GetCompliance() *string

func (*DotmSaveOptionsData) GetCompressionLevel ¶

func (obj *DotmSaveOptionsData) GetCompressionLevel() *string

func (*DotmSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *DotmSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*DotmSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *DotmSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*DotmSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *DotmSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*DotmSaveOptionsData) GetDmlRenderingMode ¶

func (obj *DotmSaveOptionsData) GetDmlRenderingMode() *string

func (*DotmSaveOptionsData) GetFileName ¶

func (obj *DotmSaveOptionsData) GetFileName() *string

func (*DotmSaveOptionsData) GetImlRenderingMode ¶

func (obj *DotmSaveOptionsData) GetImlRenderingMode() *string

func (*DotmSaveOptionsData) GetPassword ¶

func (obj *DotmSaveOptionsData) GetPassword() *string

func (*DotmSaveOptionsData) GetPrettyFormat ¶

func (obj *DotmSaveOptionsData) GetPrettyFormat() *bool

func (*DotmSaveOptionsData) GetSaveFormat ¶

func (obj *DotmSaveOptionsData) GetSaveFormat() *string

func (*DotmSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *DotmSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*DotmSaveOptionsData) GetUpdateFields ¶

func (obj *DotmSaveOptionsData) GetUpdateFields() *bool

func (*DotmSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *DotmSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*DotmSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *DotmSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*DotmSaveOptionsData) GetZipOutput ¶

func (obj *DotmSaveOptionsData) GetZipOutput() *bool

func (*DotmSaveOptionsData) Initialize ¶

func (obj *DotmSaveOptionsData) Initialize()

func (DotmSaveOptionsData) IsDotmSaveOptionsData ¶

func (DotmSaveOptionsData) IsDotmSaveOptionsData() bool

func (DotmSaveOptionsData) IsOoxmlSaveOptionsData ¶

func (DotmSaveOptionsData) IsOoxmlSaveOptionsData() bool

func (DotmSaveOptionsData) IsSaveOptionsData ¶

func (DotmSaveOptionsData) IsSaveOptionsData() bool

func (*DotmSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *DotmSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*DotmSaveOptionsData) SetCompliance ¶

func (obj *DotmSaveOptionsData) SetCompliance(value *string)

func (*DotmSaveOptionsData) SetCompressionLevel ¶

func (obj *DotmSaveOptionsData) SetCompressionLevel(value *string)

func (*DotmSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *DotmSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*DotmSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *DotmSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*DotmSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *DotmSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*DotmSaveOptionsData) SetDmlRenderingMode ¶

func (obj *DotmSaveOptionsData) SetDmlRenderingMode(value *string)

func (*DotmSaveOptionsData) SetFileName ¶

func (obj *DotmSaveOptionsData) SetFileName(value *string)

func (*DotmSaveOptionsData) SetImlRenderingMode ¶

func (obj *DotmSaveOptionsData) SetImlRenderingMode(value *string)

func (*DotmSaveOptionsData) SetPassword ¶

func (obj *DotmSaveOptionsData) SetPassword(value *string)

func (*DotmSaveOptionsData) SetPrettyFormat ¶

func (obj *DotmSaveOptionsData) SetPrettyFormat(value *bool)

func (*DotmSaveOptionsData) SetSaveFormat ¶

func (obj *DotmSaveOptionsData) SetSaveFormat(value *string)

func (*DotmSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *DotmSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*DotmSaveOptionsData) SetUpdateFields ¶

func (obj *DotmSaveOptionsData) SetUpdateFields(value *bool)

func (*DotmSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *DotmSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*DotmSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *DotmSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*DotmSaveOptionsData) SetZipOutput ¶

func (obj *DotmSaveOptionsData) SetZipOutput(value *bool)

func (*DotmSaveOptionsData) Validate ¶

func (obj *DotmSaveOptionsData) Validate() error

type DotxSaveOptionsData ¶

type DotxSaveOptionsData struct {
	// Container class for dotx save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for dotx save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for dotx save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for dotx save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for dotx save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for dotx save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for dotx save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for dotx save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for dotx save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for dotx save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for dotx save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for dotx save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for dotx save options.
	Compliance *string `json:"Compliance,omitempty"`

	// Container class for dotx save options.
	CompressionLevel *string `json:"CompressionLevel,omitempty"`

	// Container class for dotx save options.
	Password *string `json:"Password,omitempty"`

	// Container class for dotx save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for dotx save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*DotxSaveOptionsData) CollectFilesContent ¶

func (obj *DotxSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DotxSaveOptionsData) Deserialize ¶

func (obj *DotxSaveOptionsData) Deserialize(json map[string]interface{})

func (*DotxSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *DotxSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*DotxSaveOptionsData) GetCompliance ¶

func (obj *DotxSaveOptionsData) GetCompliance() *string

func (*DotxSaveOptionsData) GetCompressionLevel ¶

func (obj *DotxSaveOptionsData) GetCompressionLevel() *string

func (*DotxSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *DotxSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*DotxSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *DotxSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*DotxSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *DotxSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*DotxSaveOptionsData) GetDmlRenderingMode ¶

func (obj *DotxSaveOptionsData) GetDmlRenderingMode() *string

func (*DotxSaveOptionsData) GetFileName ¶

func (obj *DotxSaveOptionsData) GetFileName() *string

func (*DotxSaveOptionsData) GetImlRenderingMode ¶

func (obj *DotxSaveOptionsData) GetImlRenderingMode() *string

func (*DotxSaveOptionsData) GetPassword ¶

func (obj *DotxSaveOptionsData) GetPassword() *string

func (*DotxSaveOptionsData) GetPrettyFormat ¶

func (obj *DotxSaveOptionsData) GetPrettyFormat() *bool

func (*DotxSaveOptionsData) GetSaveFormat ¶

func (obj *DotxSaveOptionsData) GetSaveFormat() *string

func (*DotxSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *DotxSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*DotxSaveOptionsData) GetUpdateFields ¶

func (obj *DotxSaveOptionsData) GetUpdateFields() *bool

func (*DotxSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *DotxSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*DotxSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *DotxSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*DotxSaveOptionsData) GetZipOutput ¶

func (obj *DotxSaveOptionsData) GetZipOutput() *bool

func (*DotxSaveOptionsData) Initialize ¶

func (obj *DotxSaveOptionsData) Initialize()

func (DotxSaveOptionsData) IsDotxSaveOptionsData ¶

func (DotxSaveOptionsData) IsDotxSaveOptionsData() bool

func (DotxSaveOptionsData) IsOoxmlSaveOptionsData ¶

func (DotxSaveOptionsData) IsOoxmlSaveOptionsData() bool

func (DotxSaveOptionsData) IsSaveOptionsData ¶

func (DotxSaveOptionsData) IsSaveOptionsData() bool

func (*DotxSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *DotxSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*DotxSaveOptionsData) SetCompliance ¶

func (obj *DotxSaveOptionsData) SetCompliance(value *string)

func (*DotxSaveOptionsData) SetCompressionLevel ¶

func (obj *DotxSaveOptionsData) SetCompressionLevel(value *string)

func (*DotxSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *DotxSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*DotxSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *DotxSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*DotxSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *DotxSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*DotxSaveOptionsData) SetDmlRenderingMode ¶

func (obj *DotxSaveOptionsData) SetDmlRenderingMode(value *string)

func (*DotxSaveOptionsData) SetFileName ¶

func (obj *DotxSaveOptionsData) SetFileName(value *string)

func (*DotxSaveOptionsData) SetImlRenderingMode ¶

func (obj *DotxSaveOptionsData) SetImlRenderingMode(value *string)

func (*DotxSaveOptionsData) SetPassword ¶

func (obj *DotxSaveOptionsData) SetPassword(value *string)

func (*DotxSaveOptionsData) SetPrettyFormat ¶

func (obj *DotxSaveOptionsData) SetPrettyFormat(value *bool)

func (*DotxSaveOptionsData) SetSaveFormat ¶

func (obj *DotxSaveOptionsData) SetSaveFormat(value *string)

func (*DotxSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *DotxSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*DotxSaveOptionsData) SetUpdateFields ¶

func (obj *DotxSaveOptionsData) SetUpdateFields(value *bool)

func (*DotxSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *DotxSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*DotxSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *DotxSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*DotxSaveOptionsData) SetZipOutput ¶

func (obj *DotxSaveOptionsData) SetZipOutput(value *bool)

func (*DotxSaveOptionsData) Validate ¶

func (obj *DotxSaveOptionsData) Validate() error

type DownloadFileRequest ¶

type DownloadFileRequest struct {
	// Path of the file including the file name and extension e.g. /folder1/file.ext.
	Path *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "storageName" value: (*string) Storage name.
	   key: "versionId" value: (*string) File version ID to download. */
	Optionals map[string]interface{}
}

DownloadFileRequest contains request data for WordsApiService.DownloadFile method.

func (*DownloadFileRequest) CreateRequestData ¶

func (data *DownloadFileRequest) CreateRequestData() (RequestData, error)

func (*DownloadFileRequest) CreateResponse ¶

func (data *DownloadFileRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type DownsampleOptionsData ¶

type DownsampleOptionsData struct {
	// Container class for Downsample options.
	DownsampleImages *bool `json:"DownsampleImages,omitempty"`

	// Container class for Downsample options.
	Resolution *int32 `json:"Resolution,omitempty"`

	// Container class for Downsample options.
	ResolutionThreshold *int32 `json:"ResolutionThreshold,omitempty"`
}

func (*DownsampleOptionsData) CollectFilesContent ¶

func (obj *DownsampleOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DownsampleOptionsData) Deserialize ¶

func (obj *DownsampleOptionsData) Deserialize(json map[string]interface{})

func (*DownsampleOptionsData) GetDownsampleImages ¶

func (obj *DownsampleOptionsData) GetDownsampleImages() *bool

func (*DownsampleOptionsData) GetResolution ¶

func (obj *DownsampleOptionsData) GetResolution() *int32

func (*DownsampleOptionsData) GetResolutionThreshold ¶

func (obj *DownsampleOptionsData) GetResolutionThreshold() *int32

func (*DownsampleOptionsData) Initialize ¶

func (obj *DownsampleOptionsData) Initialize()

func (DownsampleOptionsData) IsDownsampleOptionsData ¶

func (DownsampleOptionsData) IsDownsampleOptionsData() bool

func (*DownsampleOptionsData) SetDownsampleImages ¶

func (obj *DownsampleOptionsData) SetDownsampleImages(value *bool)

func (*DownsampleOptionsData) SetResolution ¶

func (obj *DownsampleOptionsData) SetResolution(value *int32)

func (*DownsampleOptionsData) SetResolutionThreshold ¶

func (obj *DownsampleOptionsData) SetResolutionThreshold(value *int32)

func (*DownsampleOptionsData) Validate ¶

func (obj *DownsampleOptionsData) Validate() error

type DrawingObject ¶

type DrawingObject struct {
	// DTO container with a DrawingObject.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a DrawingObject.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with a DrawingObject.
	RenderLinks []IWordsApiLink `json:"RenderLinks,omitempty"`

	// DTO container with a DrawingObject.
	Width *float64 `json:"Width,omitempty"`

	// DTO container with a DrawingObject.
	Height *float64 `json:"Height,omitempty"`

	// DTO container with a DrawingObject.
	OleDataLink IWordsApiLink `json:"OleDataLink,omitempty"`

	// DTO container with a DrawingObject.
	ImageDataLink IWordsApiLink `json:"ImageDataLink,omitempty"`

	// DTO container with a DrawingObject.
	RelativeHorizontalPosition *string `json:"RelativeHorizontalPosition,omitempty"`

	// DTO container with a DrawingObject.
	Left *float64 `json:"Left,omitempty"`

	// DTO container with a DrawingObject.
	RelativeVerticalPosition *string `json:"RelativeVerticalPosition,omitempty"`

	// DTO container with a DrawingObject.
	Top *float64 `json:"Top,omitempty"`

	// DTO container with a DrawingObject.
	WrapType *string `json:"WrapType,omitempty"`
}

func (*DrawingObject) CollectFilesContent ¶

func (obj *DrawingObject) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DrawingObject) Deserialize ¶

func (obj *DrawingObject) Deserialize(json map[string]interface{})

func (*DrawingObject) GetHeight ¶

func (obj *DrawingObject) GetHeight() *float64
func (obj *DrawingObject) GetImageDataLink() IWordsApiLink

func (*DrawingObject) GetLeft ¶

func (obj *DrawingObject) GetLeft() *float64
func (obj *DrawingObject) GetLink() IWordsApiLink

func (*DrawingObject) GetNodeId ¶

func (obj *DrawingObject) GetNodeId() *string
func (obj *DrawingObject) GetOleDataLink() IWordsApiLink

func (*DrawingObject) GetRelativeHorizontalPosition ¶

func (obj *DrawingObject) GetRelativeHorizontalPosition() *string

func (*DrawingObject) GetRelativeVerticalPosition ¶

func (obj *DrawingObject) GetRelativeVerticalPosition() *string
func (obj *DrawingObject) GetRenderLinks() []IWordsApiLink

func (*DrawingObject) GetTop ¶

func (obj *DrawingObject) GetTop() *float64

func (*DrawingObject) GetWidth ¶

func (obj *DrawingObject) GetWidth() *float64

func (*DrawingObject) GetWrapType ¶

func (obj *DrawingObject) GetWrapType() *string

func (*DrawingObject) Initialize ¶

func (obj *DrawingObject) Initialize()

func (DrawingObject) IsDrawingObject ¶

func (DrawingObject) IsDrawingObject() bool
func (DrawingObject) IsDrawingObjectLink() bool

func (DrawingObject) IsLinkElement ¶

func (DrawingObject) IsLinkElement() bool
func (DrawingObject) IsNodeLink() bool

func (*DrawingObject) SetHeight ¶

func (obj *DrawingObject) SetHeight(value *float64)
func (obj *DrawingObject) SetImageDataLink(value IWordsApiLink)

func (*DrawingObject) SetLeft ¶

func (obj *DrawingObject) SetLeft(value *float64)
func (obj *DrawingObject) SetLink(value IWordsApiLink)

func (*DrawingObject) SetNodeId ¶

func (obj *DrawingObject) SetNodeId(value *string)
func (obj *DrawingObject) SetOleDataLink(value IWordsApiLink)

func (*DrawingObject) SetRelativeHorizontalPosition ¶

func (obj *DrawingObject) SetRelativeHorizontalPosition(value *string)

func (*DrawingObject) SetRelativeVerticalPosition ¶

func (obj *DrawingObject) SetRelativeVerticalPosition(value *string)
func (obj *DrawingObject) SetRenderLinks(value []IWordsApiLink)

func (*DrawingObject) SetTop ¶

func (obj *DrawingObject) SetTop(value *float64)

func (*DrawingObject) SetWidth ¶

func (obj *DrawingObject) SetWidth(value *float64)

func (*DrawingObject) SetWrapType ¶

func (obj *DrawingObject) SetWrapType(value *string)

func (*DrawingObject) Validate ¶

func (obj *DrawingObject) Validate() error

type DrawingObjectCollection ¶

type DrawingObjectCollection struct {
	// DTO container with a collection of DrawingObjects links.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a collection of DrawingObjects links.
	List []ILinkElement `json:"List,omitempty"`
}

func (*DrawingObjectCollection) CollectFilesContent ¶

func (obj *DrawingObjectCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DrawingObjectCollection) Deserialize ¶

func (obj *DrawingObjectCollection) Deserialize(json map[string]interface{})
func (obj *DrawingObjectCollection) GetLink() IWordsApiLink

func (*DrawingObjectCollection) GetList ¶

func (obj *DrawingObjectCollection) GetList() []ILinkElement

func (*DrawingObjectCollection) Initialize ¶

func (obj *DrawingObjectCollection) Initialize()

func (DrawingObjectCollection) IsDrawingObjectCollection ¶

func (DrawingObjectCollection) IsDrawingObjectCollection() bool

func (DrawingObjectCollection) IsLinkElement ¶

func (DrawingObjectCollection) IsLinkElement() bool
func (obj *DrawingObjectCollection) SetLink(value IWordsApiLink)

func (*DrawingObjectCollection) SetList ¶

func (obj *DrawingObjectCollection) SetList(value []ILinkElement)

func (*DrawingObjectCollection) Validate ¶

func (obj *DrawingObjectCollection) Validate() error

type DrawingObjectInsert ¶

type DrawingObjectInsert struct {
	// Drawing object element for insert.
	Position IPosition `json:"Position,omitempty"`

	// Drawing object element for insert.
	RelativeHorizontalPosition *string `json:"RelativeHorizontalPosition,omitempty"`

	// Drawing object element for insert.
	Left *float64 `json:"Left,omitempty"`

	// Drawing object element for insert.
	RelativeVerticalPosition *string `json:"RelativeVerticalPosition,omitempty"`

	// Drawing object element for insert.
	Top *float64 `json:"Top,omitempty"`

	// Drawing object element for insert.
	Width *float64 `json:"Width,omitempty"`

	// Drawing object element for insert.
	Height *float64 `json:"Height,omitempty"`

	// Drawing object element for insert.
	WrapType *string `json:"WrapType,omitempty"`
}

func (*DrawingObjectInsert) CollectFilesContent ¶

func (obj *DrawingObjectInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DrawingObjectInsert) Deserialize ¶

func (obj *DrawingObjectInsert) Deserialize(json map[string]interface{})

func (*DrawingObjectInsert) GetHeight ¶

func (obj *DrawingObjectInsert) GetHeight() *float64

func (*DrawingObjectInsert) GetLeft ¶

func (obj *DrawingObjectInsert) GetLeft() *float64

func (*DrawingObjectInsert) GetPosition ¶

func (obj *DrawingObjectInsert) GetPosition() IPosition

func (*DrawingObjectInsert) GetRelativeHorizontalPosition ¶

func (obj *DrawingObjectInsert) GetRelativeHorizontalPosition() *string

func (*DrawingObjectInsert) GetRelativeVerticalPosition ¶

func (obj *DrawingObjectInsert) GetRelativeVerticalPosition() *string

func (*DrawingObjectInsert) GetTop ¶

func (obj *DrawingObjectInsert) GetTop() *float64

func (*DrawingObjectInsert) GetWidth ¶

func (obj *DrawingObjectInsert) GetWidth() *float64

func (*DrawingObjectInsert) GetWrapType ¶

func (obj *DrawingObjectInsert) GetWrapType() *string

func (*DrawingObjectInsert) Initialize ¶

func (obj *DrawingObjectInsert) Initialize()

func (DrawingObjectInsert) IsDrawingObjectInsert ¶

func (DrawingObjectInsert) IsDrawingObjectInsert() bool

func (*DrawingObjectInsert) SetHeight ¶

func (obj *DrawingObjectInsert) SetHeight(value *float64)

func (*DrawingObjectInsert) SetLeft ¶

func (obj *DrawingObjectInsert) SetLeft(value *float64)

func (*DrawingObjectInsert) SetPosition ¶

func (obj *DrawingObjectInsert) SetPosition(value IPosition)

func (*DrawingObjectInsert) SetRelativeHorizontalPosition ¶

func (obj *DrawingObjectInsert) SetRelativeHorizontalPosition(value *string)

func (*DrawingObjectInsert) SetRelativeVerticalPosition ¶

func (obj *DrawingObjectInsert) SetRelativeVerticalPosition(value *string)

func (*DrawingObjectInsert) SetTop ¶

func (obj *DrawingObjectInsert) SetTop(value *float64)

func (*DrawingObjectInsert) SetWidth ¶

func (obj *DrawingObjectInsert) SetWidth(value *float64)

func (*DrawingObjectInsert) SetWrapType ¶

func (obj *DrawingObjectInsert) SetWrapType(value *string)

func (*DrawingObjectInsert) Validate ¶

func (obj *DrawingObjectInsert) Validate() error
type DrawingObjectLink struct {
	// Represents link for Drawing Object DTO.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Represents link for Drawing Object DTO.
	NodeId *string `json:"NodeId,omitempty"`
}

func (*DrawingObjectLink) CollectFilesContent ¶

func (obj *DrawingObjectLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DrawingObjectLink) Deserialize ¶

func (obj *DrawingObjectLink) Deserialize(json map[string]interface{})
func (obj *DrawingObjectLink) GetLink() IWordsApiLink

func (*DrawingObjectLink) GetNodeId ¶

func (obj *DrawingObjectLink) GetNodeId() *string

func (*DrawingObjectLink) Initialize ¶

func (obj *DrawingObjectLink) Initialize()
func (DrawingObjectLink) IsDrawingObjectLink() bool

func (DrawingObjectLink) IsLinkElement ¶

func (DrawingObjectLink) IsLinkElement() bool
func (DrawingObjectLink) IsNodeLink() bool
func (obj *DrawingObjectLink) SetLink(value IWordsApiLink)

func (*DrawingObjectLink) SetNodeId ¶

func (obj *DrawingObjectLink) SetNodeId(value *string)

func (*DrawingObjectLink) Validate ¶

func (obj *DrawingObjectLink) Validate() error

type DrawingObjectResponse ¶

type DrawingObjectResponse struct {
	// The REST response with a DrawingObject.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a DrawingObject.
	DrawingObject IDrawingObject `json:"DrawingObject,omitempty"`
}

func (*DrawingObjectResponse) CollectFilesContent ¶

func (obj *DrawingObjectResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DrawingObjectResponse) Deserialize ¶

func (obj *DrawingObjectResponse) Deserialize(json map[string]interface{})

func (*DrawingObjectResponse) GetDrawingObject ¶

func (obj *DrawingObjectResponse) GetDrawingObject() IDrawingObject

func (*DrawingObjectResponse) GetRequestId ¶

func (obj *DrawingObjectResponse) GetRequestId() *string

func (*DrawingObjectResponse) Initialize ¶

func (obj *DrawingObjectResponse) Initialize()

func (DrawingObjectResponse) IsDrawingObjectResponse ¶

func (DrawingObjectResponse) IsDrawingObjectResponse() bool

func (DrawingObjectResponse) IsWordsResponse ¶

func (DrawingObjectResponse) IsWordsResponse() bool

func (*DrawingObjectResponse) SetDrawingObject ¶

func (obj *DrawingObjectResponse) SetDrawingObject(value IDrawingObject)

func (*DrawingObjectResponse) SetRequestId ¶

func (obj *DrawingObjectResponse) SetRequestId(value *string)

func (*DrawingObjectResponse) Validate ¶

func (obj *DrawingObjectResponse) Validate() error

type DrawingObjectUpdate ¶

type DrawingObjectUpdate struct {
	// Drawing object element for update.
	RelativeHorizontalPosition *string `json:"RelativeHorizontalPosition,omitempty"`

	// Drawing object element for update.
	Left *float64 `json:"Left,omitempty"`

	// Drawing object element for update.
	RelativeVerticalPosition *string `json:"RelativeVerticalPosition,omitempty"`

	// Drawing object element for update.
	Top *float64 `json:"Top,omitempty"`

	// Drawing object element for update.
	Width *float64 `json:"Width,omitempty"`

	// Drawing object element for update.
	Height *float64 `json:"Height,omitempty"`

	// Drawing object element for update.
	WrapType *string `json:"WrapType,omitempty"`
}

func (*DrawingObjectUpdate) CollectFilesContent ¶

func (obj *DrawingObjectUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DrawingObjectUpdate) Deserialize ¶

func (obj *DrawingObjectUpdate) Deserialize(json map[string]interface{})

func (*DrawingObjectUpdate) GetHeight ¶

func (obj *DrawingObjectUpdate) GetHeight() *float64

func (*DrawingObjectUpdate) GetLeft ¶

func (obj *DrawingObjectUpdate) GetLeft() *float64

func (*DrawingObjectUpdate) GetRelativeHorizontalPosition ¶

func (obj *DrawingObjectUpdate) GetRelativeHorizontalPosition() *string

func (*DrawingObjectUpdate) GetRelativeVerticalPosition ¶

func (obj *DrawingObjectUpdate) GetRelativeVerticalPosition() *string

func (*DrawingObjectUpdate) GetTop ¶

func (obj *DrawingObjectUpdate) GetTop() *float64

func (*DrawingObjectUpdate) GetWidth ¶

func (obj *DrawingObjectUpdate) GetWidth() *float64

func (*DrawingObjectUpdate) GetWrapType ¶

func (obj *DrawingObjectUpdate) GetWrapType() *string

func (*DrawingObjectUpdate) Initialize ¶

func (obj *DrawingObjectUpdate) Initialize()

func (DrawingObjectUpdate) IsDrawingObjectUpdate ¶

func (DrawingObjectUpdate) IsDrawingObjectUpdate() bool

func (*DrawingObjectUpdate) SetHeight ¶

func (obj *DrawingObjectUpdate) SetHeight(value *float64)

func (*DrawingObjectUpdate) SetLeft ¶

func (obj *DrawingObjectUpdate) SetLeft(value *float64)

func (*DrawingObjectUpdate) SetRelativeHorizontalPosition ¶

func (obj *DrawingObjectUpdate) SetRelativeHorizontalPosition(value *string)

func (*DrawingObjectUpdate) SetRelativeVerticalPosition ¶

func (obj *DrawingObjectUpdate) SetRelativeVerticalPosition(value *string)

func (*DrawingObjectUpdate) SetTop ¶

func (obj *DrawingObjectUpdate) SetTop(value *float64)

func (*DrawingObjectUpdate) SetWidth ¶

func (obj *DrawingObjectUpdate) SetWidth(value *float64)

func (*DrawingObjectUpdate) SetWrapType ¶

func (obj *DrawingObjectUpdate) SetWrapType(value *string)

func (*DrawingObjectUpdate) Validate ¶

func (obj *DrawingObjectUpdate) Validate() error

type DrawingObjectsResponse ¶

type DrawingObjectsResponse struct {
	// The REST response with a collection of DrawingObjects.
	// This response should be returned by the service when handling: GET /drawingObjects.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of DrawingObjects.
	// This response should be returned by the service when handling: GET /drawingObjects.
	DrawingObjects IDrawingObjectCollection `json:"DrawingObjects,omitempty"`
}

func (*DrawingObjectsResponse) CollectFilesContent ¶

func (obj *DrawingObjectsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*DrawingObjectsResponse) Deserialize ¶

func (obj *DrawingObjectsResponse) Deserialize(json map[string]interface{})

func (*DrawingObjectsResponse) GetDrawingObjects ¶

func (obj *DrawingObjectsResponse) GetDrawingObjects() IDrawingObjectCollection

func (*DrawingObjectsResponse) GetRequestId ¶

func (obj *DrawingObjectsResponse) GetRequestId() *string

func (*DrawingObjectsResponse) Initialize ¶

func (obj *DrawingObjectsResponse) Initialize()

func (DrawingObjectsResponse) IsDrawingObjectsResponse ¶

func (DrawingObjectsResponse) IsDrawingObjectsResponse() bool

func (DrawingObjectsResponse) IsWordsResponse ¶

func (DrawingObjectsResponse) IsWordsResponse() bool

func (*DrawingObjectsResponse) SetDrawingObjects ¶

func (obj *DrawingObjectsResponse) SetDrawingObjects(value IDrawingObjectCollection)

func (*DrawingObjectsResponse) SetRequestId ¶

func (obj *DrawingObjectsResponse) SetRequestId(value *string)

func (*DrawingObjectsResponse) Validate ¶

func (obj *DrawingObjectsResponse) Validate() error

type Duration ¶

type Duration struct {
	time.Duration
}

func (Duration) MarshalJSON ¶

func (d Duration) MarshalJSON() ([]byte, error)

func (*Duration) UnmarshalJSON ¶

func (d *Duration) UnmarshalJSON(b []byte) error

type EmfSaveOptionsData ¶

type EmfSaveOptionsData struct {
	// Container class for emf save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for emf save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for emf save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for emf save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for emf save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for emf save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for emf save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for emf save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for emf save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for emf save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for emf save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for emf save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for emf save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for emf save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for emf save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for emf save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for emf save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for emf save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for emf save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for emf save options.
	HorizontalResolution *float64 `json:"HorizontalResolution,omitempty"`

	// Container class for emf save options.
	ImageBrightness *float64 `json:"ImageBrightness,omitempty"`

	// Container class for emf save options.
	ImageColorMode *string `json:"ImageColorMode,omitempty"`

	// Container class for emf save options.
	ImageContrast *float64 `json:"ImageContrast,omitempty"`

	// Container class for emf save options.
	PaperColor *string `json:"PaperColor,omitempty"`

	// Container class for emf save options.
	PixelFormat *string `json:"PixelFormat,omitempty"`

	// Container class for emf save options.
	Resolution *float64 `json:"Resolution,omitempty"`

	// Container class for emf save options.
	Scale *float64 `json:"Scale,omitempty"`

	// Container class for emf save options.
	UseAntiAliasing *bool `json:"UseAntiAliasing,omitempty"`

	// Container class for emf save options.
	UseHighQualityRendering *bool `json:"UseHighQualityRendering,omitempty"`

	// Container class for emf save options.
	VerticalResolution *float64 `json:"VerticalResolution,omitempty"`

	// Container class for emf save options.
	ImageHeight *int32 `json:"ImageHeight,omitempty"`

	// Container class for emf save options.
	ImageWidth *int32 `json:"ImageWidth,omitempty"`

	// Container class for emf save options.
	UseGdiEmfRenderer *bool `json:"UseGdiEmfRenderer,omitempty"`

	// Container class for emf save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*EmfSaveOptionsData) CollectFilesContent ¶

func (obj *EmfSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*EmfSaveOptionsData) Deserialize ¶

func (obj *EmfSaveOptionsData) Deserialize(json map[string]interface{})

func (*EmfSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *EmfSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*EmfSaveOptionsData) GetColorMode ¶

func (obj *EmfSaveOptionsData) GetColorMode() *string

func (*EmfSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *EmfSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*EmfSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *EmfSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*EmfSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *EmfSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*EmfSaveOptionsData) GetDmlRenderingMode ¶

func (obj *EmfSaveOptionsData) GetDmlRenderingMode() *string

func (*EmfSaveOptionsData) GetFileName ¶

func (obj *EmfSaveOptionsData) GetFileName() *string

func (*EmfSaveOptionsData) GetHorizontalResolution ¶

func (obj *EmfSaveOptionsData) GetHorizontalResolution() *float64

func (*EmfSaveOptionsData) GetImageBrightness ¶

func (obj *EmfSaveOptionsData) GetImageBrightness() *float64

func (*EmfSaveOptionsData) GetImageColorMode ¶

func (obj *EmfSaveOptionsData) GetImageColorMode() *string

func (*EmfSaveOptionsData) GetImageContrast ¶

func (obj *EmfSaveOptionsData) GetImageContrast() *float64

func (*EmfSaveOptionsData) GetImageHeight ¶

func (obj *EmfSaveOptionsData) GetImageHeight() *int32

func (*EmfSaveOptionsData) GetImageWidth ¶

func (obj *EmfSaveOptionsData) GetImageWidth() *int32

func (*EmfSaveOptionsData) GetImlRenderingMode ¶

func (obj *EmfSaveOptionsData) GetImlRenderingMode() *string

func (*EmfSaveOptionsData) GetJpegQuality ¶

func (obj *EmfSaveOptionsData) GetJpegQuality() *int32

func (*EmfSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *EmfSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*EmfSaveOptionsData) GetNumeralFormat ¶

func (obj *EmfSaveOptionsData) GetNumeralFormat() *string

func (*EmfSaveOptionsData) GetOptimizeOutput ¶

func (obj *EmfSaveOptionsData) GetOptimizeOutput() *bool

func (*EmfSaveOptionsData) GetPageCount ¶

func (obj *EmfSaveOptionsData) GetPageCount() *int32

func (*EmfSaveOptionsData) GetPageIndex ¶

func (obj *EmfSaveOptionsData) GetPageIndex() *int32

func (*EmfSaveOptionsData) GetPaperColor ¶

func (obj *EmfSaveOptionsData) GetPaperColor() *string

func (*EmfSaveOptionsData) GetPixelFormat ¶

func (obj *EmfSaveOptionsData) GetPixelFormat() *string

func (*EmfSaveOptionsData) GetResolution ¶

func (obj *EmfSaveOptionsData) GetResolution() *float64

func (*EmfSaveOptionsData) GetSaveFormat ¶

func (obj *EmfSaveOptionsData) GetSaveFormat() *string

func (*EmfSaveOptionsData) GetScale ¶

func (obj *EmfSaveOptionsData) GetScale() *float64

func (*EmfSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *EmfSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*EmfSaveOptionsData) GetUpdateFields ¶

func (obj *EmfSaveOptionsData) GetUpdateFields() *bool

func (*EmfSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *EmfSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*EmfSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *EmfSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*EmfSaveOptionsData) GetUseAntiAliasing ¶

func (obj *EmfSaveOptionsData) GetUseAntiAliasing() *bool

func (*EmfSaveOptionsData) GetUseGdiEmfRenderer ¶

func (obj *EmfSaveOptionsData) GetUseGdiEmfRenderer() *bool

func (*EmfSaveOptionsData) GetUseHighQualityRendering ¶

func (obj *EmfSaveOptionsData) GetUseHighQualityRendering() *bool

func (*EmfSaveOptionsData) GetVerticalResolution ¶

func (obj *EmfSaveOptionsData) GetVerticalResolution() *float64

func (*EmfSaveOptionsData) GetZipOutput ¶

func (obj *EmfSaveOptionsData) GetZipOutput() *bool

func (*EmfSaveOptionsData) Initialize ¶

func (obj *EmfSaveOptionsData) Initialize()

func (EmfSaveOptionsData) IsEmfSaveOptionsData ¶

func (EmfSaveOptionsData) IsEmfSaveOptionsData() bool

func (EmfSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (EmfSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (EmfSaveOptionsData) IsImageSaveOptionsData ¶

func (EmfSaveOptionsData) IsImageSaveOptionsData() bool

func (EmfSaveOptionsData) IsSaveOptionsData ¶

func (EmfSaveOptionsData) IsSaveOptionsData() bool

func (*EmfSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *EmfSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*EmfSaveOptionsData) SetColorMode ¶

func (obj *EmfSaveOptionsData) SetColorMode(value *string)

func (*EmfSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *EmfSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*EmfSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *EmfSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*EmfSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *EmfSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*EmfSaveOptionsData) SetDmlRenderingMode ¶

func (obj *EmfSaveOptionsData) SetDmlRenderingMode(value *string)

func (*EmfSaveOptionsData) SetFileName ¶

func (obj *EmfSaveOptionsData) SetFileName(value *string)

func (*EmfSaveOptionsData) SetHorizontalResolution ¶

func (obj *EmfSaveOptionsData) SetHorizontalResolution(value *float64)

func (*EmfSaveOptionsData) SetImageBrightness ¶

func (obj *EmfSaveOptionsData) SetImageBrightness(value *float64)

func (*EmfSaveOptionsData) SetImageColorMode ¶

func (obj *EmfSaveOptionsData) SetImageColorMode(value *string)

func (*EmfSaveOptionsData) SetImageContrast ¶

func (obj *EmfSaveOptionsData) SetImageContrast(value *float64)

func (*EmfSaveOptionsData) SetImageHeight ¶

func (obj *EmfSaveOptionsData) SetImageHeight(value *int32)

func (*EmfSaveOptionsData) SetImageWidth ¶

func (obj *EmfSaveOptionsData) SetImageWidth(value *int32)

func (*EmfSaveOptionsData) SetImlRenderingMode ¶

func (obj *EmfSaveOptionsData) SetImlRenderingMode(value *string)

func (*EmfSaveOptionsData) SetJpegQuality ¶

func (obj *EmfSaveOptionsData) SetJpegQuality(value *int32)

func (*EmfSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *EmfSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*EmfSaveOptionsData) SetNumeralFormat ¶

func (obj *EmfSaveOptionsData) SetNumeralFormat(value *string)

func (*EmfSaveOptionsData) SetOptimizeOutput ¶

func (obj *EmfSaveOptionsData) SetOptimizeOutput(value *bool)

func (*EmfSaveOptionsData) SetPageCount ¶

func (obj *EmfSaveOptionsData) SetPageCount(value *int32)

func (*EmfSaveOptionsData) SetPageIndex ¶

func (obj *EmfSaveOptionsData) SetPageIndex(value *int32)

func (*EmfSaveOptionsData) SetPaperColor ¶

func (obj *EmfSaveOptionsData) SetPaperColor(value *string)

func (*EmfSaveOptionsData) SetPixelFormat ¶

func (obj *EmfSaveOptionsData) SetPixelFormat(value *string)

func (*EmfSaveOptionsData) SetResolution ¶

func (obj *EmfSaveOptionsData) SetResolution(value *float64)

func (*EmfSaveOptionsData) SetSaveFormat ¶

func (obj *EmfSaveOptionsData) SetSaveFormat(value *string)

func (*EmfSaveOptionsData) SetScale ¶

func (obj *EmfSaveOptionsData) SetScale(value *float64)

func (*EmfSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *EmfSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*EmfSaveOptionsData) SetUpdateFields ¶

func (obj *EmfSaveOptionsData) SetUpdateFields(value *bool)

func (*EmfSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *EmfSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*EmfSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *EmfSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*EmfSaveOptionsData) SetUseAntiAliasing ¶

func (obj *EmfSaveOptionsData) SetUseAntiAliasing(value *bool)

func (*EmfSaveOptionsData) SetUseGdiEmfRenderer ¶

func (obj *EmfSaveOptionsData) SetUseGdiEmfRenderer(value *bool)

func (*EmfSaveOptionsData) SetUseHighQualityRendering ¶

func (obj *EmfSaveOptionsData) SetUseHighQualityRendering(value *bool)

func (*EmfSaveOptionsData) SetVerticalResolution ¶

func (obj *EmfSaveOptionsData) SetVerticalResolution(value *float64)

func (*EmfSaveOptionsData) SetZipOutput ¶

func (obj *EmfSaveOptionsData) SetZipOutput(value *bool)

func (*EmfSaveOptionsData) Validate ¶

func (obj *EmfSaveOptionsData) Validate() error

type EpsSaveOptionsData ¶

type EpsSaveOptionsData struct {
	// Container class for eps save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for eps save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for eps save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for eps save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for eps save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for eps save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for eps save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for eps save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for eps save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for eps save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for eps save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for eps save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for eps save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for eps save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for eps save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for eps save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for eps save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for eps save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for eps save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for eps save options.
	HorizontalResolution *float64 `json:"HorizontalResolution,omitempty"`

	// Container class for eps save options.
	ImageBrightness *float64 `json:"ImageBrightness,omitempty"`

	// Container class for eps save options.
	ImageColorMode *string `json:"ImageColorMode,omitempty"`

	// Container class for eps save options.
	ImageContrast *float64 `json:"ImageContrast,omitempty"`

	// Container class for eps save options.
	PaperColor *string `json:"PaperColor,omitempty"`

	// Container class for eps save options.
	PixelFormat *string `json:"PixelFormat,omitempty"`

	// Container class for eps save options.
	Resolution *float64 `json:"Resolution,omitempty"`

	// Container class for eps save options.
	Scale *float64 `json:"Scale,omitempty"`

	// Container class for eps save options.
	UseAntiAliasing *bool `json:"UseAntiAliasing,omitempty"`

	// Container class for eps save options.
	UseHighQualityRendering *bool `json:"UseHighQualityRendering,omitempty"`

	// Container class for eps save options.
	VerticalResolution *float64 `json:"VerticalResolution,omitempty"`

	// Container class for eps save options.
	ImageHeight *int32 `json:"ImageHeight,omitempty"`

	// Container class for eps save options.
	ImageWidth *int32 `json:"ImageWidth,omitempty"`

	// Container class for eps save options.
	UseGdiEmfRenderer *bool `json:"UseGdiEmfRenderer,omitempty"`

	// Container class for eps save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*EpsSaveOptionsData) CollectFilesContent ¶

func (obj *EpsSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*EpsSaveOptionsData) Deserialize ¶

func (obj *EpsSaveOptionsData) Deserialize(json map[string]interface{})

func (*EpsSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *EpsSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*EpsSaveOptionsData) GetColorMode ¶

func (obj *EpsSaveOptionsData) GetColorMode() *string

func (*EpsSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *EpsSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*EpsSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *EpsSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*EpsSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *EpsSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*EpsSaveOptionsData) GetDmlRenderingMode ¶

func (obj *EpsSaveOptionsData) GetDmlRenderingMode() *string

func (*EpsSaveOptionsData) GetFileName ¶

func (obj *EpsSaveOptionsData) GetFileName() *string

func (*EpsSaveOptionsData) GetHorizontalResolution ¶

func (obj *EpsSaveOptionsData) GetHorizontalResolution() *float64

func (*EpsSaveOptionsData) GetImageBrightness ¶

func (obj *EpsSaveOptionsData) GetImageBrightness() *float64

func (*EpsSaveOptionsData) GetImageColorMode ¶

func (obj *EpsSaveOptionsData) GetImageColorMode() *string

func (*EpsSaveOptionsData) GetImageContrast ¶

func (obj *EpsSaveOptionsData) GetImageContrast() *float64

func (*EpsSaveOptionsData) GetImageHeight ¶

func (obj *EpsSaveOptionsData) GetImageHeight() *int32

func (*EpsSaveOptionsData) GetImageWidth ¶

func (obj *EpsSaveOptionsData) GetImageWidth() *int32

func (*EpsSaveOptionsData) GetImlRenderingMode ¶

func (obj *EpsSaveOptionsData) GetImlRenderingMode() *string

func (*EpsSaveOptionsData) GetJpegQuality ¶

func (obj *EpsSaveOptionsData) GetJpegQuality() *int32

func (*EpsSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *EpsSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*EpsSaveOptionsData) GetNumeralFormat ¶

func (obj *EpsSaveOptionsData) GetNumeralFormat() *string

func (*EpsSaveOptionsData) GetOptimizeOutput ¶

func (obj *EpsSaveOptionsData) GetOptimizeOutput() *bool

func (*EpsSaveOptionsData) GetPageCount ¶

func (obj *EpsSaveOptionsData) GetPageCount() *int32

func (*EpsSaveOptionsData) GetPageIndex ¶

func (obj *EpsSaveOptionsData) GetPageIndex() *int32

func (*EpsSaveOptionsData) GetPaperColor ¶

func (obj *EpsSaveOptionsData) GetPaperColor() *string

func (*EpsSaveOptionsData) GetPixelFormat ¶

func (obj *EpsSaveOptionsData) GetPixelFormat() *string

func (*EpsSaveOptionsData) GetResolution ¶

func (obj *EpsSaveOptionsData) GetResolution() *float64

func (*EpsSaveOptionsData) GetSaveFormat ¶

func (obj *EpsSaveOptionsData) GetSaveFormat() *string

func (*EpsSaveOptionsData) GetScale ¶

func (obj *EpsSaveOptionsData) GetScale() *float64

func (*EpsSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *EpsSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*EpsSaveOptionsData) GetUpdateFields ¶

func (obj *EpsSaveOptionsData) GetUpdateFields() *bool

func (*EpsSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *EpsSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*EpsSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *EpsSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*EpsSaveOptionsData) GetUseAntiAliasing ¶

func (obj *EpsSaveOptionsData) GetUseAntiAliasing() *bool

func (*EpsSaveOptionsData) GetUseGdiEmfRenderer ¶

func (obj *EpsSaveOptionsData) GetUseGdiEmfRenderer() *bool

func (*EpsSaveOptionsData) GetUseHighQualityRendering ¶

func (obj *EpsSaveOptionsData) GetUseHighQualityRendering() *bool

func (*EpsSaveOptionsData) GetVerticalResolution ¶

func (obj *EpsSaveOptionsData) GetVerticalResolution() *float64

func (*EpsSaveOptionsData) GetZipOutput ¶

func (obj *EpsSaveOptionsData) GetZipOutput() *bool

func (*EpsSaveOptionsData) Initialize ¶

func (obj *EpsSaveOptionsData) Initialize()

func (EpsSaveOptionsData) IsEpsSaveOptionsData ¶

func (EpsSaveOptionsData) IsEpsSaveOptionsData() bool

func (EpsSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (EpsSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (EpsSaveOptionsData) IsImageSaveOptionsData ¶

func (EpsSaveOptionsData) IsImageSaveOptionsData() bool

func (EpsSaveOptionsData) IsSaveOptionsData ¶

func (EpsSaveOptionsData) IsSaveOptionsData() bool

func (*EpsSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *EpsSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*EpsSaveOptionsData) SetColorMode ¶

func (obj *EpsSaveOptionsData) SetColorMode(value *string)

func (*EpsSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *EpsSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*EpsSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *EpsSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*EpsSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *EpsSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*EpsSaveOptionsData) SetDmlRenderingMode ¶

func (obj *EpsSaveOptionsData) SetDmlRenderingMode(value *string)

func (*EpsSaveOptionsData) SetFileName ¶

func (obj *EpsSaveOptionsData) SetFileName(value *string)

func (*EpsSaveOptionsData) SetHorizontalResolution ¶

func (obj *EpsSaveOptionsData) SetHorizontalResolution(value *float64)

func (*EpsSaveOptionsData) SetImageBrightness ¶

func (obj *EpsSaveOptionsData) SetImageBrightness(value *float64)

func (*EpsSaveOptionsData) SetImageColorMode ¶

func (obj *EpsSaveOptionsData) SetImageColorMode(value *string)

func (*EpsSaveOptionsData) SetImageContrast ¶

func (obj *EpsSaveOptionsData) SetImageContrast(value *float64)

func (*EpsSaveOptionsData) SetImageHeight ¶

func (obj *EpsSaveOptionsData) SetImageHeight(value *int32)

func (*EpsSaveOptionsData) SetImageWidth ¶

func (obj *EpsSaveOptionsData) SetImageWidth(value *int32)

func (*EpsSaveOptionsData) SetImlRenderingMode ¶

func (obj *EpsSaveOptionsData) SetImlRenderingMode(value *string)

func (*EpsSaveOptionsData) SetJpegQuality ¶

func (obj *EpsSaveOptionsData) SetJpegQuality(value *int32)

func (*EpsSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *EpsSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*EpsSaveOptionsData) SetNumeralFormat ¶

func (obj *EpsSaveOptionsData) SetNumeralFormat(value *string)

func (*EpsSaveOptionsData) SetOptimizeOutput ¶

func (obj *EpsSaveOptionsData) SetOptimizeOutput(value *bool)

func (*EpsSaveOptionsData) SetPageCount ¶

func (obj *EpsSaveOptionsData) SetPageCount(value *int32)

func (*EpsSaveOptionsData) SetPageIndex ¶

func (obj *EpsSaveOptionsData) SetPageIndex(value *int32)

func (*EpsSaveOptionsData) SetPaperColor ¶

func (obj *EpsSaveOptionsData) SetPaperColor(value *string)

func (*EpsSaveOptionsData) SetPixelFormat ¶

func (obj *EpsSaveOptionsData) SetPixelFormat(value *string)

func (*EpsSaveOptionsData) SetResolution ¶

func (obj *EpsSaveOptionsData) SetResolution(value *float64)

func (*EpsSaveOptionsData) SetSaveFormat ¶

func (obj *EpsSaveOptionsData) SetSaveFormat(value *string)

func (*EpsSaveOptionsData) SetScale ¶

func (obj *EpsSaveOptionsData) SetScale(value *float64)

func (*EpsSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *EpsSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*EpsSaveOptionsData) SetUpdateFields ¶

func (obj *EpsSaveOptionsData) SetUpdateFields(value *bool)

func (*EpsSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *EpsSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*EpsSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *EpsSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*EpsSaveOptionsData) SetUseAntiAliasing ¶

func (obj *EpsSaveOptionsData) SetUseAntiAliasing(value *bool)

func (*EpsSaveOptionsData) SetUseGdiEmfRenderer ¶

func (obj *EpsSaveOptionsData) SetUseGdiEmfRenderer(value *bool)

func (*EpsSaveOptionsData) SetUseHighQualityRendering ¶

func (obj *EpsSaveOptionsData) SetUseHighQualityRendering(value *bool)

func (*EpsSaveOptionsData) SetVerticalResolution ¶

func (obj *EpsSaveOptionsData) SetVerticalResolution(value *float64)

func (*EpsSaveOptionsData) SetZipOutput ¶

func (obj *EpsSaveOptionsData) SetZipOutput(value *bool)

func (*EpsSaveOptionsData) Validate ¶

func (obj *EpsSaveOptionsData) Validate() error

type EpubSaveOptionsData ¶

type EpubSaveOptionsData struct {
	// Container class for epub save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for epub save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for epub save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for epub save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for epub save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for epub save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for epub save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for epub save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for epub save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for epub save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for epub save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for epub save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for epub save options.
	AllowNegativeIndent *bool `json:"AllowNegativeIndent,omitempty"`

	// Container class for epub save options.
	CssClassNamePrefix *string `json:"CssClassNamePrefix,omitempty"`

	// Container class for epub save options.
	CssStyleSheetFileName *string `json:"CssStyleSheetFileName,omitempty"`

	// Container class for epub save options.
	CssStyleSheetType *string `json:"CssStyleSheetType,omitempty"`

	// Container class for epub save options.
	DocumentSplitCriteria *string `json:"DocumentSplitCriteria,omitempty"`

	// Container class for epub save options.
	DocumentSplitHeadingLevel *int32 `json:"DocumentSplitHeadingLevel,omitempty"`

	// Container class for epub save options.
	Encoding *string `json:"Encoding,omitempty"`

	// Container class for epub save options.
	ExportDocumentProperties *bool `json:"ExportDocumentProperties,omitempty"`

	// Container class for epub save options.
	ExportDropDownFormFieldAsText *bool `json:"ExportDropDownFormFieldAsText,omitempty"`

	// Container class for epub save options.
	ExportFontResources *bool `json:"ExportFontResources,omitempty"`

	// Container class for epub save options.
	ExportFontsAsBase64 *bool `json:"ExportFontsAsBase64,omitempty"`

	// Container class for epub save options.
	ExportHeadersFootersMode *string `json:"ExportHeadersFootersMode,omitempty"`

	// Container class for epub save options.
	ExportImagesAsBase64 *bool `json:"ExportImagesAsBase64,omitempty"`

	// Container class for epub save options.
	ExportLanguageInformation *bool `json:"ExportLanguageInformation,omitempty"`

	// Container class for epub save options.
	ExportListLabels *string `json:"ExportListLabels,omitempty"`

	// Container class for epub save options.
	ExportOriginalUrlForLinkedImages *bool `json:"ExportOriginalUrlForLinkedImages,omitempty"`

	// Container class for epub save options.
	ExportPageMargins *bool `json:"ExportPageMargins,omitempty"`

	// Container class for epub save options.
	ExportPageSetup *bool `json:"ExportPageSetup,omitempty"`

	// Container class for epub save options.
	ExportRelativeFontSize *bool `json:"ExportRelativeFontSize,omitempty"`

	// Container class for epub save options.
	ExportRoundtripInformation *bool `json:"ExportRoundtripInformation,omitempty"`

	// Container class for epub save options.
	ExportTextInputFormFieldAsText *bool `json:"ExportTextInputFormFieldAsText,omitempty"`

	// Container class for epub save options.
	ExportTocPageNumbers *bool `json:"ExportTocPageNumbers,omitempty"`

	// Container class for epub save options.
	ExportXhtmlTransitional *bool `json:"ExportXhtmlTransitional,omitempty"`

	// Container class for epub save options.
	FontResourcesSubsettingSizeThreshold *int32 `json:"FontResourcesSubsettingSizeThreshold,omitempty"`

	// Container class for epub save options.
	FontsFolder *string `json:"FontsFolder,omitempty"`

	// Container class for epub save options.
	FontsFolderAlias *string `json:"FontsFolderAlias,omitempty"`

	// Container class for epub save options.
	HtmlVersion *string `json:"HtmlVersion,omitempty"`

	// Container class for epub save options.
	ImageResolution *int32 `json:"ImageResolution,omitempty"`

	// Container class for epub save options.
	ImagesFolder *string `json:"ImagesFolder,omitempty"`

	// Container class for epub save options.
	ImagesFolderAlias *string `json:"ImagesFolderAlias,omitempty"`

	// Container class for epub save options.
	MetafileFormat *string `json:"MetafileFormat,omitempty"`

	// Container class for epub save options.
	OfficeMathOutputMode *string `json:"OfficeMathOutputMode,omitempty"`

	// Container class for epub save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for epub save options.
	ResolveFontNames *bool `json:"ResolveFontNames,omitempty"`

	// Container class for epub save options.
	ResourceFolder *string `json:"ResourceFolder,omitempty"`

	// Container class for epub save options.
	ResourceFolderAlias *string `json:"ResourceFolderAlias,omitempty"`

	// Container class for epub save options.
	ScaleImageToShapeSize *bool `json:"ScaleImageToShapeSize,omitempty"`

	// Container class for epub save options.
	TableWidthOutputMode *string `json:"TableWidthOutputMode,omitempty"`

	// Container class for epub save options.
	NavigationMapLevel *int32 `json:"NavigationMapLevel,omitempty"`

	// Container class for epub save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*EpubSaveOptionsData) CollectFilesContent ¶

func (obj *EpubSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*EpubSaveOptionsData) Deserialize ¶

func (obj *EpubSaveOptionsData) Deserialize(json map[string]interface{})

func (*EpubSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *EpubSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*EpubSaveOptionsData) GetAllowNegativeIndent ¶

func (obj *EpubSaveOptionsData) GetAllowNegativeIndent() *bool

func (*EpubSaveOptionsData) GetCssClassNamePrefix ¶

func (obj *EpubSaveOptionsData) GetCssClassNamePrefix() *string

func (*EpubSaveOptionsData) GetCssStyleSheetFileName ¶

func (obj *EpubSaveOptionsData) GetCssStyleSheetFileName() *string

func (*EpubSaveOptionsData) GetCssStyleSheetType ¶

func (obj *EpubSaveOptionsData) GetCssStyleSheetType() *string

func (*EpubSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *EpubSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*EpubSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *EpubSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*EpubSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *EpubSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*EpubSaveOptionsData) GetDmlRenderingMode ¶

func (obj *EpubSaveOptionsData) GetDmlRenderingMode() *string

func (*EpubSaveOptionsData) GetDocumentSplitCriteria ¶

func (obj *EpubSaveOptionsData) GetDocumentSplitCriteria() *string

func (*EpubSaveOptionsData) GetDocumentSplitHeadingLevel ¶

func (obj *EpubSaveOptionsData) GetDocumentSplitHeadingLevel() *int32

func (*EpubSaveOptionsData) GetEncoding ¶

func (obj *EpubSaveOptionsData) GetEncoding() *string

func (*EpubSaveOptionsData) GetExportDocumentProperties ¶

func (obj *EpubSaveOptionsData) GetExportDocumentProperties() *bool

func (*EpubSaveOptionsData) GetExportDropDownFormFieldAsText ¶

func (obj *EpubSaveOptionsData) GetExportDropDownFormFieldAsText() *bool

func (*EpubSaveOptionsData) GetExportFontResources ¶

func (obj *EpubSaveOptionsData) GetExportFontResources() *bool

func (*EpubSaveOptionsData) GetExportFontsAsBase64 ¶

func (obj *EpubSaveOptionsData) GetExportFontsAsBase64() *bool

func (*EpubSaveOptionsData) GetExportHeadersFootersMode ¶

func (obj *EpubSaveOptionsData) GetExportHeadersFootersMode() *string

func (*EpubSaveOptionsData) GetExportImagesAsBase64 ¶

func (obj *EpubSaveOptionsData) GetExportImagesAsBase64() *bool

func (*EpubSaveOptionsData) GetExportLanguageInformation ¶

func (obj *EpubSaveOptionsData) GetExportLanguageInformation() *bool

func (*EpubSaveOptionsData) GetExportListLabels ¶

func (obj *EpubSaveOptionsData) GetExportListLabels() *string

func (*EpubSaveOptionsData) GetExportOriginalUrlForLinkedImages ¶

func (obj *EpubSaveOptionsData) GetExportOriginalUrlForLinkedImages() *bool

func (*EpubSaveOptionsData) GetExportPageMargins ¶

func (obj *EpubSaveOptionsData) GetExportPageMargins() *bool

func (*EpubSaveOptionsData) GetExportPageSetup ¶

func (obj *EpubSaveOptionsData) GetExportPageSetup() *bool

func (*EpubSaveOptionsData) GetExportRelativeFontSize ¶

func (obj *EpubSaveOptionsData) GetExportRelativeFontSize() *bool

func (*EpubSaveOptionsData) GetExportRoundtripInformation ¶

func (obj *EpubSaveOptionsData) GetExportRoundtripInformation() *bool

func (*EpubSaveOptionsData) GetExportTextInputFormFieldAsText ¶

func (obj *EpubSaveOptionsData) GetExportTextInputFormFieldAsText() *bool

func (*EpubSaveOptionsData) GetExportTocPageNumbers ¶

func (obj *EpubSaveOptionsData) GetExportTocPageNumbers() *bool

func (*EpubSaveOptionsData) GetExportXhtmlTransitional ¶

func (obj *EpubSaveOptionsData) GetExportXhtmlTransitional() *bool

func (*EpubSaveOptionsData) GetFileName ¶

func (obj *EpubSaveOptionsData) GetFileName() *string

func (*EpubSaveOptionsData) GetFontResourcesSubsettingSizeThreshold ¶

func (obj *EpubSaveOptionsData) GetFontResourcesSubsettingSizeThreshold() *int32

func (*EpubSaveOptionsData) GetFontsFolder ¶

func (obj *EpubSaveOptionsData) GetFontsFolder() *string

func (*EpubSaveOptionsData) GetFontsFolderAlias ¶

func (obj *EpubSaveOptionsData) GetFontsFolderAlias() *string

func (*EpubSaveOptionsData) GetHtmlVersion ¶

func (obj *EpubSaveOptionsData) GetHtmlVersion() *string

func (*EpubSaveOptionsData) GetImageResolution ¶

func (obj *EpubSaveOptionsData) GetImageResolution() *int32

func (*EpubSaveOptionsData) GetImagesFolder ¶

func (obj *EpubSaveOptionsData) GetImagesFolder() *string

func (*EpubSaveOptionsData) GetImagesFolderAlias ¶

func (obj *EpubSaveOptionsData) GetImagesFolderAlias() *string

func (*EpubSaveOptionsData) GetImlRenderingMode ¶

func (obj *EpubSaveOptionsData) GetImlRenderingMode() *string

func (*EpubSaveOptionsData) GetMetafileFormat ¶

func (obj *EpubSaveOptionsData) GetMetafileFormat() *string

func (*EpubSaveOptionsData) GetNavigationMapLevel ¶

func (obj *EpubSaveOptionsData) GetNavigationMapLevel() *int32

func (*EpubSaveOptionsData) GetOfficeMathOutputMode ¶

func (obj *EpubSaveOptionsData) GetOfficeMathOutputMode() *string

func (*EpubSaveOptionsData) GetPrettyFormat ¶

func (obj *EpubSaveOptionsData) GetPrettyFormat() *bool

func (*EpubSaveOptionsData) GetResolveFontNames ¶

func (obj *EpubSaveOptionsData) GetResolveFontNames() *bool

func (*EpubSaveOptionsData) GetResourceFolder ¶

func (obj *EpubSaveOptionsData) GetResourceFolder() *string

func (*EpubSaveOptionsData) GetResourceFolderAlias ¶

func (obj *EpubSaveOptionsData) GetResourceFolderAlias() *string

func (*EpubSaveOptionsData) GetSaveFormat ¶

func (obj *EpubSaveOptionsData) GetSaveFormat() *string

func (*EpubSaveOptionsData) GetScaleImageToShapeSize ¶

func (obj *EpubSaveOptionsData) GetScaleImageToShapeSize() *bool

func (*EpubSaveOptionsData) GetTableWidthOutputMode ¶

func (obj *EpubSaveOptionsData) GetTableWidthOutputMode() *string

func (*EpubSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *EpubSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*EpubSaveOptionsData) GetUpdateFields ¶

func (obj *EpubSaveOptionsData) GetUpdateFields() *bool

func (*EpubSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *EpubSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*EpubSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *EpubSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*EpubSaveOptionsData) GetZipOutput ¶

func (obj *EpubSaveOptionsData) GetZipOutput() *bool

func (*EpubSaveOptionsData) Initialize ¶

func (obj *EpubSaveOptionsData) Initialize()

func (EpubSaveOptionsData) IsEpubSaveOptionsData ¶

func (EpubSaveOptionsData) IsEpubSaveOptionsData() bool

func (EpubSaveOptionsData) IsHtmlSaveOptionsData ¶

func (EpubSaveOptionsData) IsHtmlSaveOptionsData() bool

func (EpubSaveOptionsData) IsSaveOptionsData ¶

func (EpubSaveOptionsData) IsSaveOptionsData() bool

func (*EpubSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *EpubSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*EpubSaveOptionsData) SetAllowNegativeIndent ¶

func (obj *EpubSaveOptionsData) SetAllowNegativeIndent(value *bool)

func (*EpubSaveOptionsData) SetCssClassNamePrefix ¶

func (obj *EpubSaveOptionsData) SetCssClassNamePrefix(value *string)

func (*EpubSaveOptionsData) SetCssStyleSheetFileName ¶

func (obj *EpubSaveOptionsData) SetCssStyleSheetFileName(value *string)

func (*EpubSaveOptionsData) SetCssStyleSheetType ¶

func (obj *EpubSaveOptionsData) SetCssStyleSheetType(value *string)

func (*EpubSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *EpubSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*EpubSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *EpubSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*EpubSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *EpubSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*EpubSaveOptionsData) SetDmlRenderingMode ¶

func (obj *EpubSaveOptionsData) SetDmlRenderingMode(value *string)

func (*EpubSaveOptionsData) SetDocumentSplitCriteria ¶

func (obj *EpubSaveOptionsData) SetDocumentSplitCriteria(value *string)

func (*EpubSaveOptionsData) SetDocumentSplitHeadingLevel ¶

func (obj *EpubSaveOptionsData) SetDocumentSplitHeadingLevel(value *int32)

func (*EpubSaveOptionsData) SetEncoding ¶

func (obj *EpubSaveOptionsData) SetEncoding(value *string)

func (*EpubSaveOptionsData) SetExportDocumentProperties ¶

func (obj *EpubSaveOptionsData) SetExportDocumentProperties(value *bool)

func (*EpubSaveOptionsData) SetExportDropDownFormFieldAsText ¶

func (obj *EpubSaveOptionsData) SetExportDropDownFormFieldAsText(value *bool)

func (*EpubSaveOptionsData) SetExportFontResources ¶

func (obj *EpubSaveOptionsData) SetExportFontResources(value *bool)

func (*EpubSaveOptionsData) SetExportFontsAsBase64 ¶

func (obj *EpubSaveOptionsData) SetExportFontsAsBase64(value *bool)

func (*EpubSaveOptionsData) SetExportHeadersFootersMode ¶

func (obj *EpubSaveOptionsData) SetExportHeadersFootersMode(value *string)

func (*EpubSaveOptionsData) SetExportImagesAsBase64 ¶

func (obj *EpubSaveOptionsData) SetExportImagesAsBase64(value *bool)

func (*EpubSaveOptionsData) SetExportLanguageInformation ¶

func (obj *EpubSaveOptionsData) SetExportLanguageInformation(value *bool)

func (*EpubSaveOptionsData) SetExportListLabels ¶

func (obj *EpubSaveOptionsData) SetExportListLabels(value *string)

func (*EpubSaveOptionsData) SetExportOriginalUrlForLinkedImages ¶

func (obj *EpubSaveOptionsData) SetExportOriginalUrlForLinkedImages(value *bool)

func (*EpubSaveOptionsData) SetExportPageMargins ¶

func (obj *EpubSaveOptionsData) SetExportPageMargins(value *bool)

func (*EpubSaveOptionsData) SetExportPageSetup ¶

func (obj *EpubSaveOptionsData) SetExportPageSetup(value *bool)

func (*EpubSaveOptionsData) SetExportRelativeFontSize ¶

func (obj *EpubSaveOptionsData) SetExportRelativeFontSize(value *bool)

func (*EpubSaveOptionsData) SetExportRoundtripInformation ¶

func (obj *EpubSaveOptionsData) SetExportRoundtripInformation(value *bool)

func (*EpubSaveOptionsData) SetExportTextInputFormFieldAsText ¶

func (obj *EpubSaveOptionsData) SetExportTextInputFormFieldAsText(value *bool)

func (*EpubSaveOptionsData) SetExportTocPageNumbers ¶

func (obj *EpubSaveOptionsData) SetExportTocPageNumbers(value *bool)

func (*EpubSaveOptionsData) SetExportXhtmlTransitional ¶

func (obj *EpubSaveOptionsData) SetExportXhtmlTransitional(value *bool)

func (*EpubSaveOptionsData) SetFileName ¶

func (obj *EpubSaveOptionsData) SetFileName(value *string)

func (*EpubSaveOptionsData) SetFontResourcesSubsettingSizeThreshold ¶

func (obj *EpubSaveOptionsData) SetFontResourcesSubsettingSizeThreshold(value *int32)

func (*EpubSaveOptionsData) SetFontsFolder ¶

func (obj *EpubSaveOptionsData) SetFontsFolder(value *string)

func (*EpubSaveOptionsData) SetFontsFolderAlias ¶

func (obj *EpubSaveOptionsData) SetFontsFolderAlias(value *string)

func (*EpubSaveOptionsData) SetHtmlVersion ¶

func (obj *EpubSaveOptionsData) SetHtmlVersion(value *string)

func (*EpubSaveOptionsData) SetImageResolution ¶

func (obj *EpubSaveOptionsData) SetImageResolution(value *int32)

func (*EpubSaveOptionsData) SetImagesFolder ¶

func (obj *EpubSaveOptionsData) SetImagesFolder(value *string)

func (*EpubSaveOptionsData) SetImagesFolderAlias ¶

func (obj *EpubSaveOptionsData) SetImagesFolderAlias(value *string)

func (*EpubSaveOptionsData) SetImlRenderingMode ¶

func (obj *EpubSaveOptionsData) SetImlRenderingMode(value *string)

func (*EpubSaveOptionsData) SetMetafileFormat ¶

func (obj *EpubSaveOptionsData) SetMetafileFormat(value *string)

func (*EpubSaveOptionsData) SetNavigationMapLevel ¶

func (obj *EpubSaveOptionsData) SetNavigationMapLevel(value *int32)

func (*EpubSaveOptionsData) SetOfficeMathOutputMode ¶

func (obj *EpubSaveOptionsData) SetOfficeMathOutputMode(value *string)

func (*EpubSaveOptionsData) SetPrettyFormat ¶

func (obj *EpubSaveOptionsData) SetPrettyFormat(value *bool)

func (*EpubSaveOptionsData) SetResolveFontNames ¶

func (obj *EpubSaveOptionsData) SetResolveFontNames(value *bool)

func (*EpubSaveOptionsData) SetResourceFolder ¶

func (obj *EpubSaveOptionsData) SetResourceFolder(value *string)

func (*EpubSaveOptionsData) SetResourceFolderAlias ¶

func (obj *EpubSaveOptionsData) SetResourceFolderAlias(value *string)

func (*EpubSaveOptionsData) SetSaveFormat ¶

func (obj *EpubSaveOptionsData) SetSaveFormat(value *string)

func (*EpubSaveOptionsData) SetScaleImageToShapeSize ¶

func (obj *EpubSaveOptionsData) SetScaleImageToShapeSize(value *bool)

func (*EpubSaveOptionsData) SetTableWidthOutputMode ¶

func (obj *EpubSaveOptionsData) SetTableWidthOutputMode(value *string)

func (*EpubSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *EpubSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*EpubSaveOptionsData) SetUpdateFields ¶

func (obj *EpubSaveOptionsData) SetUpdateFields(value *bool)

func (*EpubSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *EpubSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*EpubSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *EpubSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*EpubSaveOptionsData) SetZipOutput ¶

func (obj *EpubSaveOptionsData) SetZipOutput(value *bool)

func (*EpubSaveOptionsData) Validate ¶

func (obj *EpubSaveOptionsData) Validate() error

type Error ¶

type Error struct {
	// Error.
	Code *string `json:"Code,omitempty"`

	// Error.
	Description *string `json:"Description,omitempty"`

	// Error.
	InnerError IErrorDetails `json:"InnerError,omitempty"`

	// Error.
	Message *string `json:"Message,omitempty"`
}

func (*Error) CollectFilesContent ¶

func (obj *Error) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Error) Deserialize ¶

func (obj *Error) Deserialize(json map[string]interface{})

func (*Error) GetCode ¶

func (obj *Error) GetCode() *string

func (*Error) GetDescription ¶

func (obj *Error) GetDescription() *string

func (*Error) GetInnerError ¶

func (obj *Error) GetInnerError() IErrorDetails

func (*Error) GetMessage ¶

func (obj *Error) GetMessage() *string

func (*Error) Initialize ¶

func (obj *Error) Initialize()

func (Error) IsError ¶

func (Error) IsError() bool

func (*Error) SetCode ¶

func (obj *Error) SetCode(value *string)

func (*Error) SetDescription ¶

func (obj *Error) SetDescription(value *string)

func (*Error) SetInnerError ¶

func (obj *Error) SetInnerError(value IErrorDetails)

func (*Error) SetMessage ¶

func (obj *Error) SetMessage(value *string)

func (*Error) Validate ¶

func (obj *Error) Validate() error

type ErrorDetails ¶

type ErrorDetails struct {
	// The error details.
	ErrorDateTime *Time `json:"ErrorDateTime,omitempty"`

	// The error details.
	RequestId *string `json:"RequestId,omitempty"`
}

func (*ErrorDetails) CollectFilesContent ¶

func (obj *ErrorDetails) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ErrorDetails) Deserialize ¶

func (obj *ErrorDetails) Deserialize(json map[string]interface{})

func (*ErrorDetails) GetErrorDateTime ¶

func (obj *ErrorDetails) GetErrorDateTime() *Time

func (*ErrorDetails) GetRequestId ¶

func (obj *ErrorDetails) GetRequestId() *string

func (*ErrorDetails) Initialize ¶

func (obj *ErrorDetails) Initialize()

func (ErrorDetails) IsErrorDetails ¶

func (ErrorDetails) IsErrorDetails() bool

func (*ErrorDetails) SetErrorDateTime ¶

func (obj *ErrorDetails) SetErrorDateTime(value *Time)

func (*ErrorDetails) SetRequestId ¶

func (obj *ErrorDetails) SetRequestId(value *string)

func (*ErrorDetails) Validate ¶

func (obj *ErrorDetails) Validate() error

type ExecuteMailMergeOnlineRequest ¶

type ExecuteMailMergeOnlineRequest struct {
	// File with template.
	Template io.ReadCloser
	// File with mailmerge data.
	Data io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "options" value: (IFieldOptions) Field options.
	   key: "withRegions" value: (*bool) The flag indicating whether to execute Mail Merge operation with regions.
	   key: "cleanup" value: (*string) The cleanup options.
	   key: "documentFileName" value: (*string) The filename of the output document, that will be used when the resulting document has a dynamic field {filename}. If it is not set, the "template" will be used instead. */
	Optionals map[string]interface{}
}

ExecuteMailMergeOnlineRequest contains request data for WordsApiService.ExecuteMailMergeOnline method.

func (*ExecuteMailMergeOnlineRequest) CreateRequestData ¶

func (data *ExecuteMailMergeOnlineRequest) CreateRequestData() (RequestData, error)

func (*ExecuteMailMergeOnlineRequest) CreateResponse ¶

func (data *ExecuteMailMergeOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ExecuteMailMergeRequest ¶

type ExecuteMailMergeRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "data" value: (*string) Mail merge data.
	   key: "options" value: (IFieldOptions) Field options.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "withRegions" value: (*bool) The flag indicating whether to execute Mail Merge operation with regions.
	   key: "mailMergeDataFile" value: (*string) The data file.
	   key: "cleanup" value: (*string) The cleanup options.
	   key: "useWholeParagraphAsRegion" value: (*bool) The flag indicating whether paragraph with TableStart or TableEnd field should be fully included into mail merge region or particular range between TableStart and TableEnd fields. The default value is true.
	   key: "destFileName" value: (*string) The filename of the output document. If this parameter is omitted, the result will be saved with autogenerated name. */
	Optionals map[string]interface{}
}

ExecuteMailMergeRequest contains request data for WordsApiService.ExecuteMailMerge method.

func (*ExecuteMailMergeRequest) CreateRequestData ¶

func (data *ExecuteMailMergeRequest) CreateRequestData() (RequestData, error)

func (*ExecuteMailMergeRequest) CreateResponse ¶

func (data *ExecuteMailMergeRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type Field ¶

type Field struct {
	// DTO container with a field.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a field.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with a field.
	FieldCode *string `json:"FieldCode,omitempty"`

	// DTO container with a field.
	LocaleId *string `json:"LocaleId,omitempty"`

	// DTO container with a field.
	Result *string `json:"Result,omitempty"`
}

func (*Field) CollectFilesContent ¶

func (obj *Field) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Field) Deserialize ¶

func (obj *Field) Deserialize(json map[string]interface{})

func (*Field) GetFieldCode ¶

func (obj *Field) GetFieldCode() *string
func (obj *Field) GetLink() IWordsApiLink

func (*Field) GetLocaleId ¶

func (obj *Field) GetLocaleId() *string

func (*Field) GetNodeId ¶

func (obj *Field) GetNodeId() *string

func (*Field) GetResult ¶

func (obj *Field) GetResult() *string

func (*Field) Initialize ¶

func (obj *Field) Initialize()

func (Field) IsField ¶

func (Field) IsField() bool
func (Field) IsFieldLink() bool

func (Field) IsLinkElement ¶

func (Field) IsLinkElement() bool
func (Field) IsNodeLink() bool

func (*Field) SetFieldCode ¶

func (obj *Field) SetFieldCode(value *string)
func (obj *Field) SetLink(value IWordsApiLink)

func (*Field) SetLocaleId ¶

func (obj *Field) SetLocaleId(value *string)

func (*Field) SetNodeId ¶

func (obj *Field) SetNodeId(value *string)

func (*Field) SetResult ¶

func (obj *Field) SetResult(value *string)

func (*Field) Validate ¶

func (obj *Field) Validate() error

type FieldCollection ¶

type FieldCollection struct {
	// DTO container with a collection of fields.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a collection of fields.
	List []IField `json:"List,omitempty"`
}

func (*FieldCollection) CollectFilesContent ¶

func (obj *FieldCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FieldCollection) Deserialize ¶

func (obj *FieldCollection) Deserialize(json map[string]interface{})
func (obj *FieldCollection) GetLink() IWordsApiLink

func (*FieldCollection) GetList ¶

func (obj *FieldCollection) GetList() []IField

func (*FieldCollection) Initialize ¶

func (obj *FieldCollection) Initialize()

func (FieldCollection) IsFieldCollection ¶

func (FieldCollection) IsFieldCollection() bool

func (FieldCollection) IsLinkElement ¶

func (FieldCollection) IsLinkElement() bool
func (obj *FieldCollection) SetLink(value IWordsApiLink)

func (*FieldCollection) SetList ¶

func (obj *FieldCollection) SetList(value []IField)

func (*FieldCollection) Validate ¶

func (obj *FieldCollection) Validate() error

type FieldInsert ¶

type FieldInsert struct {
	// Field for insert.
	LocaleId *string `json:"LocaleId,omitempty"`

	// Field for insert.
	FieldCode *string `json:"FieldCode,omitempty"`

	// Field for insert.
	Position IPosition `json:"Position,omitempty"`
}

func (*FieldInsert) CollectFilesContent ¶

func (obj *FieldInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FieldInsert) Deserialize ¶

func (obj *FieldInsert) Deserialize(json map[string]interface{})

func (*FieldInsert) GetFieldCode ¶

func (obj *FieldInsert) GetFieldCode() *string

func (*FieldInsert) GetLocaleId ¶

func (obj *FieldInsert) GetLocaleId() *string

func (*FieldInsert) GetPosition ¶

func (obj *FieldInsert) GetPosition() IPosition

func (*FieldInsert) Initialize ¶

func (obj *FieldInsert) Initialize()

func (FieldInsert) IsFieldBase ¶

func (FieldInsert) IsFieldBase() bool

func (FieldInsert) IsFieldInsert ¶

func (FieldInsert) IsFieldInsert() bool

func (*FieldInsert) SetFieldCode ¶

func (obj *FieldInsert) SetFieldCode(value *string)

func (*FieldInsert) SetLocaleId ¶

func (obj *FieldInsert) SetLocaleId(value *string)

func (*FieldInsert) SetPosition ¶

func (obj *FieldInsert) SetPosition(value IPosition)

func (*FieldInsert) Validate ¶

func (obj *FieldInsert) Validate() error
type FieldLink struct {
	// Field link.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Field link.
	NodeId *string `json:"NodeId,omitempty"`

	// Field link.
	FieldCode *string `json:"FieldCode,omitempty"`
}

func (*FieldLink) CollectFilesContent ¶

func (obj *FieldLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FieldLink) Deserialize ¶

func (obj *FieldLink) Deserialize(json map[string]interface{})

func (*FieldLink) GetFieldCode ¶

func (obj *FieldLink) GetFieldCode() *string
func (obj *FieldLink) GetLink() IWordsApiLink

func (*FieldLink) GetNodeId ¶

func (obj *FieldLink) GetNodeId() *string

func (*FieldLink) Initialize ¶

func (obj *FieldLink) Initialize()
func (FieldLink) IsFieldLink() bool

func (FieldLink) IsLinkElement ¶

func (FieldLink) IsLinkElement() bool
func (FieldLink) IsNodeLink() bool

func (*FieldLink) SetFieldCode ¶

func (obj *FieldLink) SetFieldCode(value *string)
func (obj *FieldLink) SetLink(value IWordsApiLink)

func (*FieldLink) SetNodeId ¶

func (obj *FieldLink) SetNodeId(value *string)

func (*FieldLink) Validate ¶

func (obj *FieldLink) Validate() error

type FieldNames ¶

type FieldNames struct {
	// Represents a collection of merge fields within a document.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Represents a collection of merge fields within a document.
	Names []string `json:"Names,omitempty"`
}

func (*FieldNames) CollectFilesContent ¶

func (obj *FieldNames) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FieldNames) Deserialize ¶

func (obj *FieldNames) Deserialize(json map[string]interface{})
func (obj *FieldNames) GetLink() IWordsApiLink

func (*FieldNames) GetNames ¶

func (obj *FieldNames) GetNames() []string

func (*FieldNames) Initialize ¶

func (obj *FieldNames) Initialize()

func (FieldNames) IsFieldNames ¶

func (FieldNames) IsFieldNames() bool

func (FieldNames) IsLinkElement ¶

func (FieldNames) IsLinkElement() bool
func (obj *FieldNames) SetLink(value IWordsApiLink)

func (*FieldNames) SetNames ¶

func (obj *FieldNames) SetNames(value []string)

func (*FieldNames) Validate ¶

func (obj *FieldNames) Validate() error

type FieldNamesResponse ¶

type FieldNamesResponse struct {
	// The REST response with a collection of mail merge fields.
	// This response should be returned by the service when handling: GET /{name}/mailMergeFieldNames.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of mail merge fields.
	// This response should be returned by the service when handling: GET /{name}/mailMergeFieldNames.
	FieldNames IFieldNames `json:"FieldNames,omitempty"`
}

func (*FieldNamesResponse) CollectFilesContent ¶

func (obj *FieldNamesResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FieldNamesResponse) Deserialize ¶

func (obj *FieldNamesResponse) Deserialize(json map[string]interface{})

func (*FieldNamesResponse) GetFieldNames ¶

func (obj *FieldNamesResponse) GetFieldNames() IFieldNames

func (*FieldNamesResponse) GetRequestId ¶

func (obj *FieldNamesResponse) GetRequestId() *string

func (*FieldNamesResponse) Initialize ¶

func (obj *FieldNamesResponse) Initialize()

func (FieldNamesResponse) IsFieldNamesResponse ¶

func (FieldNamesResponse) IsFieldNamesResponse() bool

func (FieldNamesResponse) IsWordsResponse ¶

func (FieldNamesResponse) IsWordsResponse() bool

func (*FieldNamesResponse) SetFieldNames ¶

func (obj *FieldNamesResponse) SetFieldNames(value IFieldNames)

func (*FieldNamesResponse) SetRequestId ¶

func (obj *FieldNamesResponse) SetRequestId(value *string)

func (*FieldNamesResponse) Validate ¶

func (obj *FieldNamesResponse) Validate() error

type FieldOptions ¶

type FieldOptions struct {
	// DTO for field options.
	CurrentUser IUserInformation `json:"CurrentUser,omitempty"`

	// DTO for field options.
	CustomTocStyleSeparator *string `json:"CustomTocStyleSeparator,omitempty"`

	// DTO for field options.
	DefaultDocumentAuthor *string `json:"DefaultDocumentAuthor,omitempty"`

	// DTO for field options.
	FieldIndexFormat *string `json:"FieldIndexFormat,omitempty"`

	// DTO for field options.
	FieldUpdateCultureName *string `json:"FieldUpdateCultureName,omitempty"`

	// DTO for field options.
	FieldUpdateCultureSource *string `json:"FieldUpdateCultureSource,omitempty"`

	// DTO for field options.
	FileName *string `json:"FileName,omitempty"`

	// DTO for field options.
	IsBidiTextSupportedOnUpdate *bool `json:"IsBidiTextSupportedOnUpdate,omitempty"`

	// DTO for field options.
	LegacyNumberFormat *bool `json:"LegacyNumberFormat,omitempty"`

	// DTO for field options.
	PreProcessCultureName *string `json:"PreProcessCultureName,omitempty"`

	// DTO for field options.
	TemplateName *string `json:"TemplateName,omitempty"`

	// DTO for field options.
	UseInvariantCultureNumberFormat *bool `json:"UseInvariantCultureNumberFormat,omitempty"`

	// DTO for field options.
	BuiltInTemplatesPaths []string `json:"BuiltInTemplatesPaths,omitempty"`
}

func (*FieldOptions) CollectFilesContent ¶

func (obj *FieldOptions) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FieldOptions) Deserialize ¶

func (obj *FieldOptions) Deserialize(json map[string]interface{})

func (*FieldOptions) GetBuiltInTemplatesPaths ¶

func (obj *FieldOptions) GetBuiltInTemplatesPaths() []string

func (*FieldOptions) GetCurrentUser ¶

func (obj *FieldOptions) GetCurrentUser() IUserInformation

func (*FieldOptions) GetCustomTocStyleSeparator ¶

func (obj *FieldOptions) GetCustomTocStyleSeparator() *string

func (*FieldOptions) GetDefaultDocumentAuthor ¶

func (obj *FieldOptions) GetDefaultDocumentAuthor() *string

func (*FieldOptions) GetFieldIndexFormat ¶

func (obj *FieldOptions) GetFieldIndexFormat() *string

func (*FieldOptions) GetFieldUpdateCultureName ¶

func (obj *FieldOptions) GetFieldUpdateCultureName() *string

func (*FieldOptions) GetFieldUpdateCultureSource ¶

func (obj *FieldOptions) GetFieldUpdateCultureSource() *string

func (*FieldOptions) GetFileName ¶

func (obj *FieldOptions) GetFileName() *string

func (*FieldOptions) GetIsBidiTextSupportedOnUpdate ¶

func (obj *FieldOptions) GetIsBidiTextSupportedOnUpdate() *bool

func (*FieldOptions) GetLegacyNumberFormat ¶

func (obj *FieldOptions) GetLegacyNumberFormat() *bool

func (*FieldOptions) GetPreProcessCultureName ¶

func (obj *FieldOptions) GetPreProcessCultureName() *string

func (*FieldOptions) GetTemplateName ¶

func (obj *FieldOptions) GetTemplateName() *string

func (*FieldOptions) GetUseInvariantCultureNumberFormat ¶

func (obj *FieldOptions) GetUseInvariantCultureNumberFormat() *bool

func (*FieldOptions) Initialize ¶

func (obj *FieldOptions) Initialize()

func (FieldOptions) IsFieldOptions ¶

func (FieldOptions) IsFieldOptions() bool

func (*FieldOptions) SetBuiltInTemplatesPaths ¶

func (obj *FieldOptions) SetBuiltInTemplatesPaths(value []string)

func (*FieldOptions) SetCurrentUser ¶

func (obj *FieldOptions) SetCurrentUser(value IUserInformation)

func (*FieldOptions) SetCustomTocStyleSeparator ¶

func (obj *FieldOptions) SetCustomTocStyleSeparator(value *string)

func (*FieldOptions) SetDefaultDocumentAuthor ¶

func (obj *FieldOptions) SetDefaultDocumentAuthor(value *string)

func (*FieldOptions) SetFieldIndexFormat ¶

func (obj *FieldOptions) SetFieldIndexFormat(value *string)

func (*FieldOptions) SetFieldUpdateCultureName ¶

func (obj *FieldOptions) SetFieldUpdateCultureName(value *string)

func (*FieldOptions) SetFieldUpdateCultureSource ¶

func (obj *FieldOptions) SetFieldUpdateCultureSource(value *string)

func (*FieldOptions) SetFileName ¶

func (obj *FieldOptions) SetFileName(value *string)

func (*FieldOptions) SetIsBidiTextSupportedOnUpdate ¶

func (obj *FieldOptions) SetIsBidiTextSupportedOnUpdate(value *bool)

func (*FieldOptions) SetLegacyNumberFormat ¶

func (obj *FieldOptions) SetLegacyNumberFormat(value *bool)

func (*FieldOptions) SetPreProcessCultureName ¶

func (obj *FieldOptions) SetPreProcessCultureName(value *string)

func (*FieldOptions) SetTemplateName ¶

func (obj *FieldOptions) SetTemplateName(value *string)

func (*FieldOptions) SetUseInvariantCultureNumberFormat ¶

func (obj *FieldOptions) SetUseInvariantCultureNumberFormat(value *bool)

func (*FieldOptions) Validate ¶

func (obj *FieldOptions) Validate() error

type FieldResponse ¶

type FieldResponse struct {
	// The REST response with a field.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/fields/{1}" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a field.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/fields/{1}" REST API requests.
	Field IField `json:"Field,omitempty"`
}

func (*FieldResponse) CollectFilesContent ¶

func (obj *FieldResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FieldResponse) Deserialize ¶

func (obj *FieldResponse) Deserialize(json map[string]interface{})

func (*FieldResponse) GetField ¶

func (obj *FieldResponse) GetField() IField

func (*FieldResponse) GetRequestId ¶

func (obj *FieldResponse) GetRequestId() *string

func (*FieldResponse) Initialize ¶

func (obj *FieldResponse) Initialize()

func (FieldResponse) IsFieldResponse ¶

func (FieldResponse) IsFieldResponse() bool

func (FieldResponse) IsWordsResponse ¶

func (FieldResponse) IsWordsResponse() bool

func (*FieldResponse) SetField ¶

func (obj *FieldResponse) SetField(value IField)

func (*FieldResponse) SetRequestId ¶

func (obj *FieldResponse) SetRequestId(value *string)

func (*FieldResponse) Validate ¶

func (obj *FieldResponse) Validate() error

type FieldUpdate ¶

type FieldUpdate struct {
	// Field for update.
	LocaleId *string `json:"LocaleId,omitempty"`

	// Field for update.
	FieldCode *string `json:"FieldCode,omitempty"`
}

func (*FieldUpdate) CollectFilesContent ¶

func (obj *FieldUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FieldUpdate) Deserialize ¶

func (obj *FieldUpdate) Deserialize(json map[string]interface{})

func (*FieldUpdate) GetFieldCode ¶

func (obj *FieldUpdate) GetFieldCode() *string

func (*FieldUpdate) GetLocaleId ¶

func (obj *FieldUpdate) GetLocaleId() *string

func (*FieldUpdate) Initialize ¶

func (obj *FieldUpdate) Initialize()

func (FieldUpdate) IsFieldBase ¶

func (FieldUpdate) IsFieldBase() bool

func (FieldUpdate) IsFieldUpdate ¶

func (FieldUpdate) IsFieldUpdate() bool

func (*FieldUpdate) SetFieldCode ¶

func (obj *FieldUpdate) SetFieldCode(value *string)

func (*FieldUpdate) SetLocaleId ¶

func (obj *FieldUpdate) SetLocaleId(value *string)

func (*FieldUpdate) Validate ¶

func (obj *FieldUpdate) Validate() error

type FieldsResponse ¶

type FieldsResponse struct {
	// The REST response with a collection of fields.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/{nodePath}/fields" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of fields.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/{nodePath}/fields" REST API requests.
	Fields IFieldCollection `json:"Fields,omitempty"`
}

func (*FieldsResponse) CollectFilesContent ¶

func (obj *FieldsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FieldsResponse) Deserialize ¶

func (obj *FieldsResponse) Deserialize(json map[string]interface{})

func (*FieldsResponse) GetFields ¶

func (obj *FieldsResponse) GetFields() IFieldCollection

func (*FieldsResponse) GetRequestId ¶

func (obj *FieldsResponse) GetRequestId() *string

func (*FieldsResponse) Initialize ¶

func (obj *FieldsResponse) Initialize()

func (FieldsResponse) IsFieldsResponse ¶

func (FieldsResponse) IsFieldsResponse() bool

func (FieldsResponse) IsWordsResponse ¶

func (FieldsResponse) IsWordsResponse() bool

func (*FieldsResponse) SetFields ¶

func (obj *FieldsResponse) SetFields(value IFieldCollection)

func (*FieldsResponse) SetRequestId ¶

func (obj *FieldsResponse) SetRequestId(value *string)

func (*FieldsResponse) Validate ¶

func (obj *FieldsResponse) Validate() error
type FileLink struct {
	// Provides information for the file link.
	Href *string `json:"Href,omitempty"`

	// Provides information for the file link.
	Rel *string `json:"Rel,omitempty"`

	// Provides information for the file link.
	Title *string `json:"Title,omitempty"`

	// Provides information for the file link.
	Type *string `json:"Type,omitempty"`
}

func (*FileLink) CollectFilesContent ¶

func (obj *FileLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FileLink) Deserialize ¶

func (obj *FileLink) Deserialize(json map[string]interface{})

func (*FileLink) GetHref ¶

func (obj *FileLink) GetHref() *string

func (*FileLink) GetRel ¶

func (obj *FileLink) GetRel() *string

func (*FileLink) GetTitle ¶

func (obj *FileLink) GetTitle() *string

func (*FileLink) GetType ¶

func (obj *FileLink) GetType() *string

func (*FileLink) Initialize ¶

func (obj *FileLink) Initialize()
func (FileLink) IsFileLink() bool
func (FileLink) IsLink() bool

func (*FileLink) SetHref ¶

func (obj *FileLink) SetHref(value *string)

func (*FileLink) SetRel ¶

func (obj *FileLink) SetRel(value *string)

func (*FileLink) SetTitle ¶

func (obj *FileLink) SetTitle(value *string)

func (*FileLink) SetType ¶

func (obj *FileLink) SetType(value *string)

func (*FileLink) Validate ¶

func (obj *FileLink) Validate() error

type FileReference ¶

type FileReference struct {
	// File source.
	Source string `json:"Source"`

	// File reference.
	Reference string `json:"Reference"`

	// Password.
	Password *string `json:"Password"`

	// Encrypted password.
	EncryptedPassword *string `json:"EncryptedPassword"`

	// File local data.
	Content io.ReadCloser `json:"-"`
}

func CreateLocalFileReference ¶

func CreateLocalFileReference(localFileContent io.ReadCloser) FileReference

func CreateLocalFileReferenceWithPassword ¶

func CreateLocalFileReferenceWithPassword(localFileContent io.ReadCloser, password string) FileReference

func CreateRemoteFileReference ¶

func CreateRemoteFileReference(remoteFilePath string) FileReference

func CreateRemoteFileReferenceWithPassword ¶

func CreateRemoteFileReferenceWithPassword(remoteFilePath string, password string) FileReference

func (*FileReference) CollectFilesContent ¶

func (obj *FileReference) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FileReference) Deserialize ¶

func (obj *FileReference) Deserialize(json map[string]interface{})

func (*FileReference) Initialize ¶

func (obj *FileReference) Initialize()

func (FileReference) IsFileReference ¶

func (FileReference) IsFileReference() bool

func (*FileReference) Validate ¶

func (obj *FileReference) Validate() error

type FilesList ¶

type FilesList struct {
	// Files list.
	Value []IStorageFile `json:"Value,omitempty"`
}

func (*FilesList) CollectFilesContent ¶

func (obj *FilesList) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FilesList) Deserialize ¶

func (obj *FilesList) Deserialize(json map[string]interface{})

func (*FilesList) GetValue ¶

func (obj *FilesList) GetValue() []IStorageFile

func (*FilesList) Initialize ¶

func (obj *FilesList) Initialize()

func (FilesList) IsFilesList ¶

func (FilesList) IsFilesList() bool

func (*FilesList) SetValue ¶

func (obj *FilesList) SetValue(value []IStorageFile)

func (*FilesList) Validate ¶

func (obj *FilesList) Validate() error

type FilesUploadResult ¶

type FilesUploadResult struct {
	// File upload result.
	Errors []IError `json:"Errors,omitempty"`

	// File upload result.
	Uploaded []string `json:"Uploaded,omitempty"`
}

func (*FilesUploadResult) CollectFilesContent ¶

func (obj *FilesUploadResult) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FilesUploadResult) Deserialize ¶

func (obj *FilesUploadResult) Deserialize(json map[string]interface{})

func (*FilesUploadResult) GetErrors ¶

func (obj *FilesUploadResult) GetErrors() []IError

func (*FilesUploadResult) GetUploaded ¶

func (obj *FilesUploadResult) GetUploaded() []string

func (*FilesUploadResult) Initialize ¶

func (obj *FilesUploadResult) Initialize()

func (FilesUploadResult) IsFilesUploadResult ¶

func (FilesUploadResult) IsFilesUploadResult() bool

func (*FilesUploadResult) SetErrors ¶

func (obj *FilesUploadResult) SetErrors(value []IError)

func (*FilesUploadResult) SetUploaded ¶

func (obj *FilesUploadResult) SetUploaded(value []string)

func (*FilesUploadResult) Validate ¶

func (obj *FilesUploadResult) Validate() error

type FlatOpcMacroSaveOptionsData ¶

type FlatOpcMacroSaveOptionsData struct {
	// Container class for fopc_macro save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for fopc_macro save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for fopc_macro save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for fopc_macro save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for fopc_macro save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for fopc_macro save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for fopc_macro save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for fopc_macro save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for fopc_macro save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for fopc_macro save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for fopc_macro save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for fopc_macro save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for fopc_macro save options.
	Compliance *string `json:"Compliance,omitempty"`

	// Container class for fopc_macro save options.
	CompressionLevel *string `json:"CompressionLevel,omitempty"`

	// Container class for fopc_macro save options.
	Password *string `json:"Password,omitempty"`

	// Container class for fopc_macro save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for fopc_macro save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*FlatOpcMacroSaveOptionsData) CollectFilesContent ¶

func (obj *FlatOpcMacroSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FlatOpcMacroSaveOptionsData) Deserialize ¶

func (obj *FlatOpcMacroSaveOptionsData) Deserialize(json map[string]interface{})

func (*FlatOpcMacroSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *FlatOpcMacroSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*FlatOpcMacroSaveOptionsData) GetCompliance ¶

func (obj *FlatOpcMacroSaveOptionsData) GetCompliance() *string

func (*FlatOpcMacroSaveOptionsData) GetCompressionLevel ¶

func (obj *FlatOpcMacroSaveOptionsData) GetCompressionLevel() *string

func (*FlatOpcMacroSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *FlatOpcMacroSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*FlatOpcMacroSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *FlatOpcMacroSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*FlatOpcMacroSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *FlatOpcMacroSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*FlatOpcMacroSaveOptionsData) GetDmlRenderingMode ¶

func (obj *FlatOpcMacroSaveOptionsData) GetDmlRenderingMode() *string

func (*FlatOpcMacroSaveOptionsData) GetFileName ¶

func (obj *FlatOpcMacroSaveOptionsData) GetFileName() *string

func (*FlatOpcMacroSaveOptionsData) GetImlRenderingMode ¶

func (obj *FlatOpcMacroSaveOptionsData) GetImlRenderingMode() *string

func (*FlatOpcMacroSaveOptionsData) GetPassword ¶

func (obj *FlatOpcMacroSaveOptionsData) GetPassword() *string

func (*FlatOpcMacroSaveOptionsData) GetPrettyFormat ¶

func (obj *FlatOpcMacroSaveOptionsData) GetPrettyFormat() *bool

func (*FlatOpcMacroSaveOptionsData) GetSaveFormat ¶

func (obj *FlatOpcMacroSaveOptionsData) GetSaveFormat() *string

func (*FlatOpcMacroSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *FlatOpcMacroSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*FlatOpcMacroSaveOptionsData) GetUpdateFields ¶

func (obj *FlatOpcMacroSaveOptionsData) GetUpdateFields() *bool

func (*FlatOpcMacroSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *FlatOpcMacroSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*FlatOpcMacroSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *FlatOpcMacroSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*FlatOpcMacroSaveOptionsData) GetZipOutput ¶

func (obj *FlatOpcMacroSaveOptionsData) GetZipOutput() *bool

func (*FlatOpcMacroSaveOptionsData) Initialize ¶

func (obj *FlatOpcMacroSaveOptionsData) Initialize()

func (FlatOpcMacroSaveOptionsData) IsFlatOpcMacroSaveOptionsData ¶

func (FlatOpcMacroSaveOptionsData) IsFlatOpcMacroSaveOptionsData() bool

func (FlatOpcMacroSaveOptionsData) IsOoxmlSaveOptionsData ¶

func (FlatOpcMacroSaveOptionsData) IsOoxmlSaveOptionsData() bool

func (FlatOpcMacroSaveOptionsData) IsSaveOptionsData ¶

func (FlatOpcMacroSaveOptionsData) IsSaveOptionsData() bool

func (*FlatOpcMacroSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *FlatOpcMacroSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*FlatOpcMacroSaveOptionsData) SetCompliance ¶

func (obj *FlatOpcMacroSaveOptionsData) SetCompliance(value *string)

func (*FlatOpcMacroSaveOptionsData) SetCompressionLevel ¶

func (obj *FlatOpcMacroSaveOptionsData) SetCompressionLevel(value *string)

func (*FlatOpcMacroSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *FlatOpcMacroSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*FlatOpcMacroSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *FlatOpcMacroSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*FlatOpcMacroSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *FlatOpcMacroSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*FlatOpcMacroSaveOptionsData) SetDmlRenderingMode ¶

func (obj *FlatOpcMacroSaveOptionsData) SetDmlRenderingMode(value *string)

func (*FlatOpcMacroSaveOptionsData) SetFileName ¶

func (obj *FlatOpcMacroSaveOptionsData) SetFileName(value *string)

func (*FlatOpcMacroSaveOptionsData) SetImlRenderingMode ¶

func (obj *FlatOpcMacroSaveOptionsData) SetImlRenderingMode(value *string)

func (*FlatOpcMacroSaveOptionsData) SetPassword ¶

func (obj *FlatOpcMacroSaveOptionsData) SetPassword(value *string)

func (*FlatOpcMacroSaveOptionsData) SetPrettyFormat ¶

func (obj *FlatOpcMacroSaveOptionsData) SetPrettyFormat(value *bool)

func (*FlatOpcMacroSaveOptionsData) SetSaveFormat ¶

func (obj *FlatOpcMacroSaveOptionsData) SetSaveFormat(value *string)

func (*FlatOpcMacroSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *FlatOpcMacroSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*FlatOpcMacroSaveOptionsData) SetUpdateFields ¶

func (obj *FlatOpcMacroSaveOptionsData) SetUpdateFields(value *bool)

func (*FlatOpcMacroSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *FlatOpcMacroSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*FlatOpcMacroSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *FlatOpcMacroSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*FlatOpcMacroSaveOptionsData) SetZipOutput ¶

func (obj *FlatOpcMacroSaveOptionsData) SetZipOutput(value *bool)

func (*FlatOpcMacroSaveOptionsData) Validate ¶

func (obj *FlatOpcMacroSaveOptionsData) Validate() error

type FlatOpcSaveOptionsData ¶

type FlatOpcSaveOptionsData struct {
	// Container class for fopc save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for fopc save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for fopc save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for fopc save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for fopc save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for fopc save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for fopc save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for fopc save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for fopc save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for fopc save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for fopc save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for fopc save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for fopc save options.
	Compliance *string `json:"Compliance,omitempty"`

	// Container class for fopc save options.
	CompressionLevel *string `json:"CompressionLevel,omitempty"`

	// Container class for fopc save options.
	Password *string `json:"Password,omitempty"`

	// Container class for fopc save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for fopc save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*FlatOpcSaveOptionsData) CollectFilesContent ¶

func (obj *FlatOpcSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FlatOpcSaveOptionsData) Deserialize ¶

func (obj *FlatOpcSaveOptionsData) Deserialize(json map[string]interface{})

func (*FlatOpcSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *FlatOpcSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*FlatOpcSaveOptionsData) GetCompliance ¶

func (obj *FlatOpcSaveOptionsData) GetCompliance() *string

func (*FlatOpcSaveOptionsData) GetCompressionLevel ¶

func (obj *FlatOpcSaveOptionsData) GetCompressionLevel() *string

func (*FlatOpcSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *FlatOpcSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*FlatOpcSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *FlatOpcSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*FlatOpcSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *FlatOpcSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*FlatOpcSaveOptionsData) GetDmlRenderingMode ¶

func (obj *FlatOpcSaveOptionsData) GetDmlRenderingMode() *string

func (*FlatOpcSaveOptionsData) GetFileName ¶

func (obj *FlatOpcSaveOptionsData) GetFileName() *string

func (*FlatOpcSaveOptionsData) GetImlRenderingMode ¶

func (obj *FlatOpcSaveOptionsData) GetImlRenderingMode() *string

func (*FlatOpcSaveOptionsData) GetPassword ¶

func (obj *FlatOpcSaveOptionsData) GetPassword() *string

func (*FlatOpcSaveOptionsData) GetPrettyFormat ¶

func (obj *FlatOpcSaveOptionsData) GetPrettyFormat() *bool

func (*FlatOpcSaveOptionsData) GetSaveFormat ¶

func (obj *FlatOpcSaveOptionsData) GetSaveFormat() *string

func (*FlatOpcSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *FlatOpcSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*FlatOpcSaveOptionsData) GetUpdateFields ¶

func (obj *FlatOpcSaveOptionsData) GetUpdateFields() *bool

func (*FlatOpcSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *FlatOpcSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*FlatOpcSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *FlatOpcSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*FlatOpcSaveOptionsData) GetZipOutput ¶

func (obj *FlatOpcSaveOptionsData) GetZipOutput() *bool

func (*FlatOpcSaveOptionsData) Initialize ¶

func (obj *FlatOpcSaveOptionsData) Initialize()

func (FlatOpcSaveOptionsData) IsFlatOpcSaveOptionsData ¶

func (FlatOpcSaveOptionsData) IsFlatOpcSaveOptionsData() bool

func (FlatOpcSaveOptionsData) IsOoxmlSaveOptionsData ¶

func (FlatOpcSaveOptionsData) IsOoxmlSaveOptionsData() bool

func (FlatOpcSaveOptionsData) IsSaveOptionsData ¶

func (FlatOpcSaveOptionsData) IsSaveOptionsData() bool

func (*FlatOpcSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *FlatOpcSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*FlatOpcSaveOptionsData) SetCompliance ¶

func (obj *FlatOpcSaveOptionsData) SetCompliance(value *string)

func (*FlatOpcSaveOptionsData) SetCompressionLevel ¶

func (obj *FlatOpcSaveOptionsData) SetCompressionLevel(value *string)

func (*FlatOpcSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *FlatOpcSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*FlatOpcSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *FlatOpcSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*FlatOpcSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *FlatOpcSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*FlatOpcSaveOptionsData) SetDmlRenderingMode ¶

func (obj *FlatOpcSaveOptionsData) SetDmlRenderingMode(value *string)

func (*FlatOpcSaveOptionsData) SetFileName ¶

func (obj *FlatOpcSaveOptionsData) SetFileName(value *string)

func (*FlatOpcSaveOptionsData) SetImlRenderingMode ¶

func (obj *FlatOpcSaveOptionsData) SetImlRenderingMode(value *string)

func (*FlatOpcSaveOptionsData) SetPassword ¶

func (obj *FlatOpcSaveOptionsData) SetPassword(value *string)

func (*FlatOpcSaveOptionsData) SetPrettyFormat ¶

func (obj *FlatOpcSaveOptionsData) SetPrettyFormat(value *bool)

func (*FlatOpcSaveOptionsData) SetSaveFormat ¶

func (obj *FlatOpcSaveOptionsData) SetSaveFormat(value *string)

func (*FlatOpcSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *FlatOpcSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*FlatOpcSaveOptionsData) SetUpdateFields ¶

func (obj *FlatOpcSaveOptionsData) SetUpdateFields(value *bool)

func (*FlatOpcSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *FlatOpcSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*FlatOpcSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *FlatOpcSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*FlatOpcSaveOptionsData) SetZipOutput ¶

func (obj *FlatOpcSaveOptionsData) SetZipOutput(value *bool)

func (*FlatOpcSaveOptionsData) Validate ¶

func (obj *FlatOpcSaveOptionsData) Validate() error

type FlatOpcTemplateMacroSaveOptionsData ¶

type FlatOpcTemplateMacroSaveOptionsData struct {
	// Container class for fopc_template_macro save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for fopc_template_macro save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for fopc_template_macro save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for fopc_template_macro save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for fopc_template_macro save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for fopc_template_macro save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for fopc_template_macro save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for fopc_template_macro save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for fopc_template_macro save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for fopc_template_macro save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for fopc_template_macro save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for fopc_template_macro save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for fopc_template_macro save options.
	Compliance *string `json:"Compliance,omitempty"`

	// Container class for fopc_template_macro save options.
	CompressionLevel *string `json:"CompressionLevel,omitempty"`

	// Container class for fopc_template_macro save options.
	Password *string `json:"Password,omitempty"`

	// Container class for fopc_template_macro save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for fopc_template_macro save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*FlatOpcTemplateMacroSaveOptionsData) CollectFilesContent ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FlatOpcTemplateMacroSaveOptionsData) Deserialize ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) Deserialize(json map[string]interface{})

func (*FlatOpcTemplateMacroSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*FlatOpcTemplateMacroSaveOptionsData) GetCompliance ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetCompliance() *string

func (*FlatOpcTemplateMacroSaveOptionsData) GetCompressionLevel ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetCompressionLevel() *string

func (*FlatOpcTemplateMacroSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*FlatOpcTemplateMacroSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*FlatOpcTemplateMacroSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*FlatOpcTemplateMacroSaveOptionsData) GetDmlRenderingMode ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetDmlRenderingMode() *string

func (*FlatOpcTemplateMacroSaveOptionsData) GetFileName ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetFileName() *string

func (*FlatOpcTemplateMacroSaveOptionsData) GetImlRenderingMode ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetImlRenderingMode() *string

func (*FlatOpcTemplateMacroSaveOptionsData) GetPassword ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetPassword() *string

func (*FlatOpcTemplateMacroSaveOptionsData) GetPrettyFormat ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetPrettyFormat() *bool

func (*FlatOpcTemplateMacroSaveOptionsData) GetSaveFormat ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetSaveFormat() *string

func (*FlatOpcTemplateMacroSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*FlatOpcTemplateMacroSaveOptionsData) GetUpdateFields ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetUpdateFields() *bool

func (*FlatOpcTemplateMacroSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*FlatOpcTemplateMacroSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*FlatOpcTemplateMacroSaveOptionsData) GetZipOutput ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) GetZipOutput() *bool

func (*FlatOpcTemplateMacroSaveOptionsData) Initialize ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) Initialize()

func (FlatOpcTemplateMacroSaveOptionsData) IsFlatOpcTemplateMacroSaveOptionsData ¶

func (FlatOpcTemplateMacroSaveOptionsData) IsFlatOpcTemplateMacroSaveOptionsData() bool

func (FlatOpcTemplateMacroSaveOptionsData) IsOoxmlSaveOptionsData ¶

func (FlatOpcTemplateMacroSaveOptionsData) IsOoxmlSaveOptionsData() bool

func (FlatOpcTemplateMacroSaveOptionsData) IsSaveOptionsData ¶

func (FlatOpcTemplateMacroSaveOptionsData) IsSaveOptionsData() bool

func (*FlatOpcTemplateMacroSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*FlatOpcTemplateMacroSaveOptionsData) SetCompliance ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetCompliance(value *string)

func (*FlatOpcTemplateMacroSaveOptionsData) SetCompressionLevel ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetCompressionLevel(value *string)

func (*FlatOpcTemplateMacroSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*FlatOpcTemplateMacroSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*FlatOpcTemplateMacroSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*FlatOpcTemplateMacroSaveOptionsData) SetDmlRenderingMode ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetDmlRenderingMode(value *string)

func (*FlatOpcTemplateMacroSaveOptionsData) SetFileName ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetFileName(value *string)

func (*FlatOpcTemplateMacroSaveOptionsData) SetImlRenderingMode ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetImlRenderingMode(value *string)

func (*FlatOpcTemplateMacroSaveOptionsData) SetPassword ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetPassword(value *string)

func (*FlatOpcTemplateMacroSaveOptionsData) SetPrettyFormat ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetPrettyFormat(value *bool)

func (*FlatOpcTemplateMacroSaveOptionsData) SetSaveFormat ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetSaveFormat(value *string)

func (*FlatOpcTemplateMacroSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*FlatOpcTemplateMacroSaveOptionsData) SetUpdateFields ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetUpdateFields(value *bool)

func (*FlatOpcTemplateMacroSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*FlatOpcTemplateMacroSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*FlatOpcTemplateMacroSaveOptionsData) SetZipOutput ¶

func (obj *FlatOpcTemplateMacroSaveOptionsData) SetZipOutput(value *bool)

func (*FlatOpcTemplateMacroSaveOptionsData) Validate ¶

type FlatOpcTemplateSaveOptionsData ¶

type FlatOpcTemplateSaveOptionsData struct {
	// Container class for fopc_template save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for fopc_template save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for fopc_template save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for fopc_template save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for fopc_template save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for fopc_template save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for fopc_template save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for fopc_template save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for fopc_template save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for fopc_template save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for fopc_template save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for fopc_template save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for fopc_template save options.
	Compliance *string `json:"Compliance,omitempty"`

	// Container class for fopc_template save options.
	CompressionLevel *string `json:"CompressionLevel,omitempty"`

	// Container class for fopc_template save options.
	Password *string `json:"Password,omitempty"`

	// Container class for fopc_template save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for fopc_template save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*FlatOpcTemplateSaveOptionsData) CollectFilesContent ¶

func (obj *FlatOpcTemplateSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FlatOpcTemplateSaveOptionsData) Deserialize ¶

func (obj *FlatOpcTemplateSaveOptionsData) Deserialize(json map[string]interface{})

func (*FlatOpcTemplateSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*FlatOpcTemplateSaveOptionsData) GetCompliance ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetCompliance() *string

func (*FlatOpcTemplateSaveOptionsData) GetCompressionLevel ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetCompressionLevel() *string

func (*FlatOpcTemplateSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*FlatOpcTemplateSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*FlatOpcTemplateSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*FlatOpcTemplateSaveOptionsData) GetDmlRenderingMode ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetDmlRenderingMode() *string

func (*FlatOpcTemplateSaveOptionsData) GetFileName ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetFileName() *string

func (*FlatOpcTemplateSaveOptionsData) GetImlRenderingMode ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetImlRenderingMode() *string

func (*FlatOpcTemplateSaveOptionsData) GetPassword ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetPassword() *string

func (*FlatOpcTemplateSaveOptionsData) GetPrettyFormat ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetPrettyFormat() *bool

func (*FlatOpcTemplateSaveOptionsData) GetSaveFormat ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetSaveFormat() *string

func (*FlatOpcTemplateSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*FlatOpcTemplateSaveOptionsData) GetUpdateFields ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetUpdateFields() *bool

func (*FlatOpcTemplateSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*FlatOpcTemplateSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*FlatOpcTemplateSaveOptionsData) GetZipOutput ¶

func (obj *FlatOpcTemplateSaveOptionsData) GetZipOutput() *bool

func (*FlatOpcTemplateSaveOptionsData) Initialize ¶

func (obj *FlatOpcTemplateSaveOptionsData) Initialize()

func (FlatOpcTemplateSaveOptionsData) IsFlatOpcTemplateSaveOptionsData ¶

func (FlatOpcTemplateSaveOptionsData) IsFlatOpcTemplateSaveOptionsData() bool

func (FlatOpcTemplateSaveOptionsData) IsOoxmlSaveOptionsData ¶

func (FlatOpcTemplateSaveOptionsData) IsOoxmlSaveOptionsData() bool

func (FlatOpcTemplateSaveOptionsData) IsSaveOptionsData ¶

func (FlatOpcTemplateSaveOptionsData) IsSaveOptionsData() bool

func (*FlatOpcTemplateSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*FlatOpcTemplateSaveOptionsData) SetCompliance ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetCompliance(value *string)

func (*FlatOpcTemplateSaveOptionsData) SetCompressionLevel ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetCompressionLevel(value *string)

func (*FlatOpcTemplateSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*FlatOpcTemplateSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*FlatOpcTemplateSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*FlatOpcTemplateSaveOptionsData) SetDmlRenderingMode ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetDmlRenderingMode(value *string)

func (*FlatOpcTemplateSaveOptionsData) SetFileName ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetFileName(value *string)

func (*FlatOpcTemplateSaveOptionsData) SetImlRenderingMode ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetImlRenderingMode(value *string)

func (*FlatOpcTemplateSaveOptionsData) SetPassword ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetPassword(value *string)

func (*FlatOpcTemplateSaveOptionsData) SetPrettyFormat ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetPrettyFormat(value *bool)

func (*FlatOpcTemplateSaveOptionsData) SetSaveFormat ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetSaveFormat(value *string)

func (*FlatOpcTemplateSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*FlatOpcTemplateSaveOptionsData) SetUpdateFields ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetUpdateFields(value *bool)

func (*FlatOpcTemplateSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*FlatOpcTemplateSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*FlatOpcTemplateSaveOptionsData) SetZipOutput ¶

func (obj *FlatOpcTemplateSaveOptionsData) SetZipOutput(value *bool)

func (*FlatOpcTemplateSaveOptionsData) Validate ¶

func (obj *FlatOpcTemplateSaveOptionsData) Validate() error

type Font ¶

type Font struct {
	// DTO container with a font element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a font element.
	AllCaps *bool `json:"AllCaps,omitempty"`

	// DTO container with a font element.
	Bidi *bool `json:"Bidi,omitempty"`

	// DTO container with a font element.
	Bold *bool `json:"Bold,omitempty"`

	// DTO container with a font element.
	BoldBi *bool `json:"BoldBi,omitempty"`

	// DTO container with a font element.
	Border IBorder `json:"Border,omitempty"`

	// DTO container with a font element.
	Color IXmlColor `json:"Color,omitempty"`

	// DTO container with a font element.
	ComplexScript *bool `json:"ComplexScript,omitempty"`

	// DTO container with a font element.
	DoubleStrikeThrough *bool `json:"DoubleStrikeThrough,omitempty"`

	// DTO container with a font element.
	Emboss *bool `json:"Emboss,omitempty"`

	// DTO container with a font element.
	Engrave *bool `json:"Engrave,omitempty"`

	// DTO container with a font element.
	Hidden *bool `json:"Hidden,omitempty"`

	// DTO container with a font element.
	HighlightColor IXmlColor `json:"HighlightColor,omitempty"`

	// DTO container with a font element.
	Italic *bool `json:"Italic,omitempty"`

	// DTO container with a font element.
	ItalicBi *bool `json:"ItalicBi,omitempty"`

	// DTO container with a font element.
	Kerning *float64 `json:"Kerning,omitempty"`

	// DTO container with a font element.
	LocaleId *int32 `json:"LocaleId,omitempty"`

	// DTO container with a font element.
	LocaleIdBi *int32 `json:"LocaleIdBi,omitempty"`

	// DTO container with a font element.
	LocaleIdFarEast *int32 `json:"LocaleIdFarEast,omitempty"`

	// DTO container with a font element.
	Name *string `json:"Name,omitempty"`

	// DTO container with a font element.
	NameAscii *string `json:"NameAscii,omitempty"`

	// DTO container with a font element.
	NameBi *string `json:"NameBi,omitempty"`

	// DTO container with a font element.
	NameFarEast *string `json:"NameFarEast,omitempty"`

	// DTO container with a font element.
	NameOther *string `json:"NameOther,omitempty"`

	// DTO container with a font element.
	NoProofing *bool `json:"NoProofing,omitempty"`

	// DTO container with a font element.
	Outline *bool `json:"Outline,omitempty"`

	// DTO container with a font element.
	Position *float64 `json:"Position,omitempty"`

	// DTO container with a font element.
	Scaling *int32 `json:"Scaling,omitempty"`

	// DTO container with a font element.
	Shadow *bool `json:"Shadow,omitempty"`

	// DTO container with a font element.
	Size *float64 `json:"Size,omitempty"`

	// DTO container with a font element.
	SizeBi *float64 `json:"SizeBi,omitempty"`

	// DTO container with a font element.
	SmallCaps *bool `json:"SmallCaps,omitempty"`

	// DTO container with a font element.
	Spacing *float64 `json:"Spacing,omitempty"`

	// DTO container with a font element.
	StrikeThrough *bool `json:"StrikeThrough,omitempty"`

	// DTO container with a font element.
	StyleIdentifier *string `json:"StyleIdentifier,omitempty"`

	// DTO container with a font element.
	StyleName *string `json:"StyleName,omitempty"`

	// DTO container with a font element.
	Subscript *bool `json:"Subscript,omitempty"`

	// DTO container with a font element.
	Superscript *bool `json:"Superscript,omitempty"`

	// DTO container with a font element.
	TextEffect *string `json:"TextEffect,omitempty"`

	// DTO container with a font element.
	Underline *string `json:"Underline,omitempty"`

	// DTO container with a font element.
	UnderlineColor IXmlColor `json:"UnderlineColor,omitempty"`
}

func (*Font) CollectFilesContent ¶

func (obj *Font) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Font) Deserialize ¶

func (obj *Font) Deserialize(json map[string]interface{})

func (*Font) GetAllCaps ¶

func (obj *Font) GetAllCaps() *bool

func (*Font) GetBidi ¶

func (obj *Font) GetBidi() *bool

func (*Font) GetBold ¶

func (obj *Font) GetBold() *bool

func (*Font) GetBoldBi ¶

func (obj *Font) GetBoldBi() *bool

func (*Font) GetBorder ¶

func (obj *Font) GetBorder() IBorder

func (*Font) GetColor ¶

func (obj *Font) GetColor() IXmlColor

func (*Font) GetComplexScript ¶

func (obj *Font) GetComplexScript() *bool

func (*Font) GetDoubleStrikeThrough ¶

func (obj *Font) GetDoubleStrikeThrough() *bool

func (*Font) GetEmboss ¶

func (obj *Font) GetEmboss() *bool

func (*Font) GetEngrave ¶

func (obj *Font) GetEngrave() *bool

func (*Font) GetHidden ¶

func (obj *Font) GetHidden() *bool

func (*Font) GetHighlightColor ¶

func (obj *Font) GetHighlightColor() IXmlColor

func (*Font) GetItalic ¶

func (obj *Font) GetItalic() *bool

func (*Font) GetItalicBi ¶

func (obj *Font) GetItalicBi() *bool

func (*Font) GetKerning ¶

func (obj *Font) GetKerning() *float64
func (obj *Font) GetLink() IWordsApiLink

func (*Font) GetLocaleId ¶

func (obj *Font) GetLocaleId() *int32

func (*Font) GetLocaleIdBi ¶

func (obj *Font) GetLocaleIdBi() *int32

func (*Font) GetLocaleIdFarEast ¶

func (obj *Font) GetLocaleIdFarEast() *int32

func (*Font) GetName ¶

func (obj *Font) GetName() *string

func (*Font) GetNameAscii ¶

func (obj *Font) GetNameAscii() *string

func (*Font) GetNameBi ¶

func (obj *Font) GetNameBi() *string

func (*Font) GetNameFarEast ¶

func (obj *Font) GetNameFarEast() *string

func (*Font) GetNameOther ¶

func (obj *Font) GetNameOther() *string

func (*Font) GetNoProofing ¶

func (obj *Font) GetNoProofing() *bool

func (*Font) GetOutline ¶

func (obj *Font) GetOutline() *bool

func (*Font) GetPosition ¶

func (obj *Font) GetPosition() *float64

func (*Font) GetScaling ¶

func (obj *Font) GetScaling() *int32

func (*Font) GetShadow ¶

func (obj *Font) GetShadow() *bool

func (*Font) GetSize ¶

func (obj *Font) GetSize() *float64

func (*Font) GetSizeBi ¶

func (obj *Font) GetSizeBi() *float64

func (*Font) GetSmallCaps ¶

func (obj *Font) GetSmallCaps() *bool

func (*Font) GetSpacing ¶

func (obj *Font) GetSpacing() *float64

func (*Font) GetStrikeThrough ¶

func (obj *Font) GetStrikeThrough() *bool

func (*Font) GetStyleIdentifier ¶

func (obj *Font) GetStyleIdentifier() *string

func (*Font) GetStyleName ¶

func (obj *Font) GetStyleName() *string

func (*Font) GetSubscript ¶

func (obj *Font) GetSubscript() *bool

func (*Font) GetSuperscript ¶

func (obj *Font) GetSuperscript() *bool

func (*Font) GetTextEffect ¶

func (obj *Font) GetTextEffect() *string

func (*Font) GetUnderline ¶

func (obj *Font) GetUnderline() *string

func (*Font) GetUnderlineColor ¶

func (obj *Font) GetUnderlineColor() IXmlColor

func (*Font) Initialize ¶

func (obj *Font) Initialize()

func (Font) IsFont ¶

func (Font) IsFont() bool

func (Font) IsLinkElement ¶

func (Font) IsLinkElement() bool

func (*Font) SetAllCaps ¶

func (obj *Font) SetAllCaps(value *bool)

func (*Font) SetBidi ¶

func (obj *Font) SetBidi(value *bool)

func (*Font) SetBold ¶

func (obj *Font) SetBold(value *bool)

func (*Font) SetBoldBi ¶

func (obj *Font) SetBoldBi(value *bool)

func (*Font) SetBorder ¶

func (obj *Font) SetBorder(value IBorder)

func (*Font) SetColor ¶

func (obj *Font) SetColor(value IXmlColor)

func (*Font) SetComplexScript ¶

func (obj *Font) SetComplexScript(value *bool)

func (*Font) SetDoubleStrikeThrough ¶

func (obj *Font) SetDoubleStrikeThrough(value *bool)

func (*Font) SetEmboss ¶

func (obj *Font) SetEmboss(value *bool)

func (*Font) SetEngrave ¶

func (obj *Font) SetEngrave(value *bool)

func (*Font) SetHidden ¶

func (obj *Font) SetHidden(value *bool)

func (*Font) SetHighlightColor ¶

func (obj *Font) SetHighlightColor(value IXmlColor)

func (*Font) SetItalic ¶

func (obj *Font) SetItalic(value *bool)

func (*Font) SetItalicBi ¶

func (obj *Font) SetItalicBi(value *bool)

func (*Font) SetKerning ¶

func (obj *Font) SetKerning(value *float64)
func (obj *Font) SetLink(value IWordsApiLink)

func (*Font) SetLocaleId ¶

func (obj *Font) SetLocaleId(value *int32)

func (*Font) SetLocaleIdBi ¶

func (obj *Font) SetLocaleIdBi(value *int32)

func (*Font) SetLocaleIdFarEast ¶

func (obj *Font) SetLocaleIdFarEast(value *int32)

func (*Font) SetName ¶

func (obj *Font) SetName(value *string)

func (*Font) SetNameAscii ¶

func (obj *Font) SetNameAscii(value *string)

func (*Font) SetNameBi ¶

func (obj *Font) SetNameBi(value *string)

func (*Font) SetNameFarEast ¶

func (obj *Font) SetNameFarEast(value *string)

func (*Font) SetNameOther ¶

func (obj *Font) SetNameOther(value *string)

func (*Font) SetNoProofing ¶

func (obj *Font) SetNoProofing(value *bool)

func (*Font) SetOutline ¶

func (obj *Font) SetOutline(value *bool)

func (*Font) SetPosition ¶

func (obj *Font) SetPosition(value *float64)

func (*Font) SetScaling ¶

func (obj *Font) SetScaling(value *int32)

func (*Font) SetShadow ¶

func (obj *Font) SetShadow(value *bool)

func (*Font) SetSize ¶

func (obj *Font) SetSize(value *float64)

func (*Font) SetSizeBi ¶

func (obj *Font) SetSizeBi(value *float64)

func (*Font) SetSmallCaps ¶

func (obj *Font) SetSmallCaps(value *bool)

func (*Font) SetSpacing ¶

func (obj *Font) SetSpacing(value *float64)

func (*Font) SetStrikeThrough ¶

func (obj *Font) SetStrikeThrough(value *bool)

func (*Font) SetStyleIdentifier ¶

func (obj *Font) SetStyleIdentifier(value *string)

func (*Font) SetStyleName ¶

func (obj *Font) SetStyleName(value *string)

func (*Font) SetSubscript ¶

func (obj *Font) SetSubscript(value *bool)

func (*Font) SetSuperscript ¶

func (obj *Font) SetSuperscript(value *bool)

func (*Font) SetTextEffect ¶

func (obj *Font) SetTextEffect(value *string)

func (*Font) SetUnderline ¶

func (obj *Font) SetUnderline(value *string)

func (*Font) SetUnderlineColor ¶

func (obj *Font) SetUnderlineColor(value IXmlColor)

func (*Font) Validate ¶

func (obj *Font) Validate() error

type FontInfo ¶

type FontInfo struct {
	// DTO container with font info.
	FilePath *string `json:"FilePath,omitempty"`

	// DTO container with font info.
	FontFamilyName *string `json:"FontFamilyName,omitempty"`

	// DTO container with font info.
	FullFontName *string `json:"FullFontName,omitempty"`

	// DTO container with font info.
	Version *string `json:"Version,omitempty"`
}

func (*FontInfo) CollectFilesContent ¶

func (obj *FontInfo) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FontInfo) Deserialize ¶

func (obj *FontInfo) Deserialize(json map[string]interface{})

func (*FontInfo) GetFilePath ¶

func (obj *FontInfo) GetFilePath() *string

func (*FontInfo) GetFontFamilyName ¶

func (obj *FontInfo) GetFontFamilyName() *string

func (*FontInfo) GetFullFontName ¶

func (obj *FontInfo) GetFullFontName() *string

func (*FontInfo) GetVersion ¶

func (obj *FontInfo) GetVersion() *string

func (*FontInfo) Initialize ¶

func (obj *FontInfo) Initialize()

func (FontInfo) IsFontInfo ¶

func (FontInfo) IsFontInfo() bool

func (*FontInfo) SetFilePath ¶

func (obj *FontInfo) SetFilePath(value *string)

func (*FontInfo) SetFontFamilyName ¶

func (obj *FontInfo) SetFontFamilyName(value *string)

func (*FontInfo) SetFullFontName ¶

func (obj *FontInfo) SetFullFontName(value *string)

func (*FontInfo) SetVersion ¶

func (obj *FontInfo) SetVersion(value *string)

func (*FontInfo) Validate ¶

func (obj *FontInfo) Validate() error

type FontResponse ¶

type FontResponse struct {
	// The REST response with a font.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/runs/{1}/font" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a font.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/runs/{1}/font" REST API requests.
	Font IFont `json:"Font,omitempty"`
}

func (*FontResponse) CollectFilesContent ¶

func (obj *FontResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FontResponse) Deserialize ¶

func (obj *FontResponse) Deserialize(json map[string]interface{})

func (*FontResponse) GetFont ¶

func (obj *FontResponse) GetFont() IFont

func (*FontResponse) GetRequestId ¶

func (obj *FontResponse) GetRequestId() *string

func (*FontResponse) Initialize ¶

func (obj *FontResponse) Initialize()

func (FontResponse) IsFontResponse ¶

func (FontResponse) IsFontResponse() bool

func (FontResponse) IsWordsResponse ¶

func (FontResponse) IsWordsResponse() bool

func (*FontResponse) SetFont ¶

func (obj *FontResponse) SetFont(value IFont)

func (*FontResponse) SetRequestId ¶

func (obj *FontResponse) SetRequestId(value *string)

func (*FontResponse) Validate ¶

func (obj *FontResponse) Validate() error

type Footnote ¶

type Footnote struct {
	// DTO container with a footnote.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a footnote.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with a footnote.
	Position IDocumentPosition `json:"Position,omitempty"`

	// DTO container with a footnote.
	FootnoteType *string `json:"FootnoteType,omitempty"`

	// DTO container with a footnote.
	ReferenceMark *string `json:"ReferenceMark,omitempty"`

	// DTO container with a footnote.
	Text *string `json:"Text,omitempty"`

	// DTO container with a footnote.
	Content IStoryChildNodes `json:"Content,omitempty"`
}

func (*Footnote) CollectFilesContent ¶

func (obj *Footnote) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Footnote) Deserialize ¶

func (obj *Footnote) Deserialize(json map[string]interface{})

func (*Footnote) GetContent ¶

func (obj *Footnote) GetContent() IStoryChildNodes

func (*Footnote) GetFootnoteType ¶

func (obj *Footnote) GetFootnoteType() *string
func (obj *Footnote) GetLink() IWordsApiLink

func (*Footnote) GetNodeId ¶

func (obj *Footnote) GetNodeId() *string

func (*Footnote) GetPosition ¶

func (obj *Footnote) GetPosition() IDocumentPosition

func (*Footnote) GetReferenceMark ¶

func (obj *Footnote) GetReferenceMark() *string

func (*Footnote) GetText ¶

func (obj *Footnote) GetText() *string

func (*Footnote) Initialize ¶

func (obj *Footnote) Initialize()

func (Footnote) IsFootnote ¶

func (Footnote) IsFootnote() bool
func (Footnote) IsFootnoteLink() bool

func (Footnote) IsLinkElement ¶

func (Footnote) IsLinkElement() bool
func (Footnote) IsNodeLink() bool

func (*Footnote) SetContent ¶

func (obj *Footnote) SetContent(value IStoryChildNodes)

func (*Footnote) SetFootnoteType ¶

func (obj *Footnote) SetFootnoteType(value *string)
func (obj *Footnote) SetLink(value IWordsApiLink)

func (*Footnote) SetNodeId ¶

func (obj *Footnote) SetNodeId(value *string)

func (*Footnote) SetPosition ¶

func (obj *Footnote) SetPosition(value IDocumentPosition)

func (*Footnote) SetReferenceMark ¶

func (obj *Footnote) SetReferenceMark(value *string)

func (*Footnote) SetText ¶

func (obj *Footnote) SetText(value *string)

func (*Footnote) Validate ¶

func (obj *Footnote) Validate() error

type FootnoteCollection ¶

type FootnoteCollection struct {
	// DTO container with a collection of footnotes.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a collection of footnotes.
	List []IFootnote `json:"List,omitempty"`
}

func (*FootnoteCollection) CollectFilesContent ¶

func (obj *FootnoteCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FootnoteCollection) Deserialize ¶

func (obj *FootnoteCollection) Deserialize(json map[string]interface{})
func (obj *FootnoteCollection) GetLink() IWordsApiLink

func (*FootnoteCollection) GetList ¶

func (obj *FootnoteCollection) GetList() []IFootnote

func (*FootnoteCollection) Initialize ¶

func (obj *FootnoteCollection) Initialize()

func (FootnoteCollection) IsFootnoteCollection ¶

func (FootnoteCollection) IsFootnoteCollection() bool

func (FootnoteCollection) IsLinkElement ¶

func (FootnoteCollection) IsLinkElement() bool
func (obj *FootnoteCollection) SetLink(value IWordsApiLink)

func (*FootnoteCollection) SetList ¶

func (obj *FootnoteCollection) SetList(value []IFootnote)

func (*FootnoteCollection) Validate ¶

func (obj *FootnoteCollection) Validate() error

type FootnoteInsert ¶

type FootnoteInsert struct {
	// Footnote for insert.
	Position IPosition `json:"Position,omitempty"`

	// Footnote for insert.
	FootnoteType *string `json:"FootnoteType,omitempty"`

	// Footnote for insert.
	ReferenceMark *string `json:"ReferenceMark,omitempty"`

	// Footnote for insert.
	Text *string `json:"Text,omitempty"`
}

func (*FootnoteInsert) CollectFilesContent ¶

func (obj *FootnoteInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FootnoteInsert) Deserialize ¶

func (obj *FootnoteInsert) Deserialize(json map[string]interface{})

func (*FootnoteInsert) GetFootnoteType ¶

func (obj *FootnoteInsert) GetFootnoteType() *string

func (*FootnoteInsert) GetPosition ¶

func (obj *FootnoteInsert) GetPosition() IPosition

func (*FootnoteInsert) GetReferenceMark ¶

func (obj *FootnoteInsert) GetReferenceMark() *string

func (*FootnoteInsert) GetText ¶

func (obj *FootnoteInsert) GetText() *string

func (*FootnoteInsert) Initialize ¶

func (obj *FootnoteInsert) Initialize()

func (FootnoteInsert) IsFootnoteBase ¶

func (FootnoteInsert) IsFootnoteBase() bool

func (FootnoteInsert) IsFootnoteInsert ¶

func (FootnoteInsert) IsFootnoteInsert() bool

func (*FootnoteInsert) SetFootnoteType ¶

func (obj *FootnoteInsert) SetFootnoteType(value *string)

func (*FootnoteInsert) SetPosition ¶

func (obj *FootnoteInsert) SetPosition(value IPosition)

func (*FootnoteInsert) SetReferenceMark ¶

func (obj *FootnoteInsert) SetReferenceMark(value *string)

func (*FootnoteInsert) SetText ¶

func (obj *FootnoteInsert) SetText(value *string)

func (*FootnoteInsert) Validate ¶

func (obj *FootnoteInsert) Validate() error
type FootnoteLink struct {
	// Footnote link.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Footnote link.
	NodeId *string `json:"NodeId,omitempty"`
}

func (*FootnoteLink) CollectFilesContent ¶

func (obj *FootnoteLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FootnoteLink) Deserialize ¶

func (obj *FootnoteLink) Deserialize(json map[string]interface{})
func (obj *FootnoteLink) GetLink() IWordsApiLink

func (*FootnoteLink) GetNodeId ¶

func (obj *FootnoteLink) GetNodeId() *string

func (*FootnoteLink) Initialize ¶

func (obj *FootnoteLink) Initialize()
func (FootnoteLink) IsFootnoteLink() bool

func (FootnoteLink) IsLinkElement ¶

func (FootnoteLink) IsLinkElement() bool
func (FootnoteLink) IsNodeLink() bool
func (obj *FootnoteLink) SetLink(value IWordsApiLink)

func (*FootnoteLink) SetNodeId ¶

func (obj *FootnoteLink) SetNodeId(value *string)

func (*FootnoteLink) Validate ¶

func (obj *FootnoteLink) Validate() error

type FootnoteResponse ¶

type FootnoteResponse struct {
	// The REST response with a footnote.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/footnote/0" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a footnote.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/footnote/0" REST API requests.
	Footnote IFootnote `json:"Footnote,omitempty"`
}

func (*FootnoteResponse) CollectFilesContent ¶

func (obj *FootnoteResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FootnoteResponse) Deserialize ¶

func (obj *FootnoteResponse) Deserialize(json map[string]interface{})

func (*FootnoteResponse) GetFootnote ¶

func (obj *FootnoteResponse) GetFootnote() IFootnote

func (*FootnoteResponse) GetRequestId ¶

func (obj *FootnoteResponse) GetRequestId() *string

func (*FootnoteResponse) Initialize ¶

func (obj *FootnoteResponse) Initialize()

func (FootnoteResponse) IsFootnoteResponse ¶

func (FootnoteResponse) IsFootnoteResponse() bool

func (FootnoteResponse) IsWordsResponse ¶

func (FootnoteResponse) IsWordsResponse() bool

func (*FootnoteResponse) SetFootnote ¶

func (obj *FootnoteResponse) SetFootnote(value IFootnote)

func (*FootnoteResponse) SetRequestId ¶

func (obj *FootnoteResponse) SetRequestId(value *string)

func (*FootnoteResponse) Validate ¶

func (obj *FootnoteResponse) Validate() error

type FootnoteUpdate ¶

type FootnoteUpdate struct {
	// Footnote for update.
	Position IPosition `json:"Position,omitempty"`

	// Footnote for update.
	FootnoteType *string `json:"FootnoteType,omitempty"`

	// Footnote for update.
	ReferenceMark *string `json:"ReferenceMark,omitempty"`

	// Footnote for update.
	Text *string `json:"Text,omitempty"`
}

func (*FootnoteUpdate) CollectFilesContent ¶

func (obj *FootnoteUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FootnoteUpdate) Deserialize ¶

func (obj *FootnoteUpdate) Deserialize(json map[string]interface{})

func (*FootnoteUpdate) GetFootnoteType ¶

func (obj *FootnoteUpdate) GetFootnoteType() *string

func (*FootnoteUpdate) GetPosition ¶

func (obj *FootnoteUpdate) GetPosition() IPosition

func (*FootnoteUpdate) GetReferenceMark ¶

func (obj *FootnoteUpdate) GetReferenceMark() *string

func (*FootnoteUpdate) GetText ¶

func (obj *FootnoteUpdate) GetText() *string

func (*FootnoteUpdate) Initialize ¶

func (obj *FootnoteUpdate) Initialize()

func (FootnoteUpdate) IsFootnoteBase ¶

func (FootnoteUpdate) IsFootnoteBase() bool

func (FootnoteUpdate) IsFootnoteUpdate ¶

func (FootnoteUpdate) IsFootnoteUpdate() bool

func (*FootnoteUpdate) SetFootnoteType ¶

func (obj *FootnoteUpdate) SetFootnoteType(value *string)

func (*FootnoteUpdate) SetPosition ¶

func (obj *FootnoteUpdate) SetPosition(value IPosition)

func (*FootnoteUpdate) SetReferenceMark ¶

func (obj *FootnoteUpdate) SetReferenceMark(value *string)

func (*FootnoteUpdate) SetText ¶

func (obj *FootnoteUpdate) SetText(value *string)

func (*FootnoteUpdate) Validate ¶

func (obj *FootnoteUpdate) Validate() error

type FootnotesResponse ¶

type FootnotesResponse struct {
	// The REST response with a collection of footnotes.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/footnotes" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of footnotes.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/footnotes" REST API requests.
	Footnotes IFootnoteCollection `json:"Footnotes,omitempty"`
}

func (*FootnotesResponse) CollectFilesContent ¶

func (obj *FootnotesResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FootnotesResponse) Deserialize ¶

func (obj *FootnotesResponse) Deserialize(json map[string]interface{})

func (*FootnotesResponse) GetFootnotes ¶

func (obj *FootnotesResponse) GetFootnotes() IFootnoteCollection

func (*FootnotesResponse) GetRequestId ¶

func (obj *FootnotesResponse) GetRequestId() *string

func (*FootnotesResponse) Initialize ¶

func (obj *FootnotesResponse) Initialize()

func (FootnotesResponse) IsFootnotesResponse ¶

func (FootnotesResponse) IsFootnotesResponse() bool

func (FootnotesResponse) IsWordsResponse ¶

func (FootnotesResponse) IsWordsResponse() bool

func (*FootnotesResponse) SetFootnotes ¶

func (obj *FootnotesResponse) SetFootnotes(value IFootnoteCollection)

func (*FootnotesResponse) SetRequestId ¶

func (obj *FootnotesResponse) SetRequestId(value *string)

func (*FootnotesResponse) Validate ¶

func (obj *FootnotesResponse) Validate() error

type FootnotesStatData ¶

type FootnotesStatData struct {
	// Container for the footnotes statistical data.
	ParagraphCount *int32 `json:"ParagraphCount,omitempty"`

	// Container for the footnotes statistical data.
	WordCount *int32 `json:"WordCount,omitempty"`
}

func (*FootnotesStatData) CollectFilesContent ¶

func (obj *FootnotesStatData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FootnotesStatData) Deserialize ¶

func (obj *FootnotesStatData) Deserialize(json map[string]interface{})

func (*FootnotesStatData) GetParagraphCount ¶

func (obj *FootnotesStatData) GetParagraphCount() *int32

func (*FootnotesStatData) GetWordCount ¶

func (obj *FootnotesStatData) GetWordCount() *int32

func (*FootnotesStatData) Initialize ¶

func (obj *FootnotesStatData) Initialize()

func (FootnotesStatData) IsFootnotesStatData ¶

func (FootnotesStatData) IsFootnotesStatData() bool

func (*FootnotesStatData) SetParagraphCount ¶

func (obj *FootnotesStatData) SetParagraphCount(value *int32)

func (*FootnotesStatData) SetWordCount ¶

func (obj *FootnotesStatData) SetWordCount(value *int32)

func (*FootnotesStatData) Validate ¶

func (obj *FootnotesStatData) Validate() error

type FormFieldCheckbox ¶

type FormFieldCheckbox struct {
	// FormField checkbox element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// FormField checkbox element.
	NodeId *string `json:"NodeId,omitempty"`

	// FormField checkbox element.
	Name *string `json:"Name,omitempty"`

	// FormField checkbox element.
	Enabled *bool `json:"Enabled,omitempty"`

	// FormField checkbox element.
	StatusText *string `json:"StatusText,omitempty"`

	// FormField checkbox element.
	OwnStatus *bool `json:"OwnStatus,omitempty"`

	// FormField checkbox element.
	HelpText *string `json:"HelpText,omitempty"`

	// FormField checkbox element.
	OwnHelp *bool `json:"OwnHelp,omitempty"`

	// FormField checkbox element.
	CalculateOnExit *bool `json:"CalculateOnExit,omitempty"`

	// FormField checkbox element.
	EntryMacro *string `json:"EntryMacro,omitempty"`

	// FormField checkbox element.
	ExitMacro *string `json:"ExitMacro,omitempty"`

	// FormField checkbox element.
	IsCheckBoxExactSize *bool `json:"IsCheckBoxExactSize,omitempty"`

	// FormField checkbox element.
	CheckBoxSize *float64 `json:"CheckBoxSize,omitempty"`

	// FormField checkbox element.
	Checked *bool `json:"Checked,omitempty"`
}

func (*FormFieldCheckbox) CollectFilesContent ¶

func (obj *FormFieldCheckbox) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FormFieldCheckbox) Deserialize ¶

func (obj *FormFieldCheckbox) Deserialize(json map[string]interface{})

func (*FormFieldCheckbox) GetCalculateOnExit ¶

func (obj *FormFieldCheckbox) GetCalculateOnExit() *bool

func (*FormFieldCheckbox) GetCheckBoxSize ¶

func (obj *FormFieldCheckbox) GetCheckBoxSize() *float64

func (*FormFieldCheckbox) GetChecked ¶

func (obj *FormFieldCheckbox) GetChecked() *bool

func (*FormFieldCheckbox) GetEnabled ¶

func (obj *FormFieldCheckbox) GetEnabled() *bool

func (*FormFieldCheckbox) GetEntryMacro ¶

func (obj *FormFieldCheckbox) GetEntryMacro() *string

func (*FormFieldCheckbox) GetExitMacro ¶

func (obj *FormFieldCheckbox) GetExitMacro() *string

func (*FormFieldCheckbox) GetHelpText ¶

func (obj *FormFieldCheckbox) GetHelpText() *string

func (*FormFieldCheckbox) GetIsCheckBoxExactSize ¶

func (obj *FormFieldCheckbox) GetIsCheckBoxExactSize() *bool
func (obj *FormFieldCheckbox) GetLink() IWordsApiLink

func (*FormFieldCheckbox) GetName ¶

func (obj *FormFieldCheckbox) GetName() *string

func (*FormFieldCheckbox) GetNodeId ¶

func (obj *FormFieldCheckbox) GetNodeId() *string

func (*FormFieldCheckbox) GetOwnHelp ¶

func (obj *FormFieldCheckbox) GetOwnHelp() *bool

func (*FormFieldCheckbox) GetOwnStatus ¶

func (obj *FormFieldCheckbox) GetOwnStatus() *bool

func (*FormFieldCheckbox) GetStatusText ¶

func (obj *FormFieldCheckbox) GetStatusText() *string

func (*FormFieldCheckbox) Initialize ¶

func (obj *FormFieldCheckbox) Initialize()

func (FormFieldCheckbox) IsFormField ¶

func (FormFieldCheckbox) IsFormField() bool

func (FormFieldCheckbox) IsFormFieldCheckbox ¶

func (FormFieldCheckbox) IsFormFieldCheckbox() bool

func (FormFieldCheckbox) IsLinkElement ¶

func (FormFieldCheckbox) IsLinkElement() bool
func (FormFieldCheckbox) IsNodeLink() bool

func (*FormFieldCheckbox) SetCalculateOnExit ¶

func (obj *FormFieldCheckbox) SetCalculateOnExit(value *bool)

func (*FormFieldCheckbox) SetCheckBoxSize ¶

func (obj *FormFieldCheckbox) SetCheckBoxSize(value *float64)

func (*FormFieldCheckbox) SetChecked ¶

func (obj *FormFieldCheckbox) SetChecked(value *bool)

func (*FormFieldCheckbox) SetEnabled ¶

func (obj *FormFieldCheckbox) SetEnabled(value *bool)

func (*FormFieldCheckbox) SetEntryMacro ¶

func (obj *FormFieldCheckbox) SetEntryMacro(value *string)

func (*FormFieldCheckbox) SetExitMacro ¶

func (obj *FormFieldCheckbox) SetExitMacro(value *string)

func (*FormFieldCheckbox) SetHelpText ¶

func (obj *FormFieldCheckbox) SetHelpText(value *string)

func (*FormFieldCheckbox) SetIsCheckBoxExactSize ¶

func (obj *FormFieldCheckbox) SetIsCheckBoxExactSize(value *bool)
func (obj *FormFieldCheckbox) SetLink(value IWordsApiLink)

func (*FormFieldCheckbox) SetName ¶

func (obj *FormFieldCheckbox) SetName(value *string)

func (*FormFieldCheckbox) SetNodeId ¶

func (obj *FormFieldCheckbox) SetNodeId(value *string)

func (*FormFieldCheckbox) SetOwnHelp ¶

func (obj *FormFieldCheckbox) SetOwnHelp(value *bool)

func (*FormFieldCheckbox) SetOwnStatus ¶

func (obj *FormFieldCheckbox) SetOwnStatus(value *bool)

func (*FormFieldCheckbox) SetStatusText ¶

func (obj *FormFieldCheckbox) SetStatusText(value *string)

func (*FormFieldCheckbox) Validate ¶

func (obj *FormFieldCheckbox) Validate() error

type FormFieldCollection ¶

type FormFieldCollection struct {
	// DTO container with a collection of form fields.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a collection of form fields.
	List []IFormField `json:"List,omitempty"`
}

func (*FormFieldCollection) CollectFilesContent ¶

func (obj *FormFieldCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FormFieldCollection) Deserialize ¶

func (obj *FormFieldCollection) Deserialize(json map[string]interface{})
func (obj *FormFieldCollection) GetLink() IWordsApiLink

func (*FormFieldCollection) GetList ¶

func (obj *FormFieldCollection) GetList() []IFormField

func (*FormFieldCollection) Initialize ¶

func (obj *FormFieldCollection) Initialize()

func (FormFieldCollection) IsFormFieldCollection ¶

func (FormFieldCollection) IsFormFieldCollection() bool

func (FormFieldCollection) IsLinkElement ¶

func (FormFieldCollection) IsLinkElement() bool
func (obj *FormFieldCollection) SetLink(value IWordsApiLink)

func (*FormFieldCollection) SetList ¶

func (obj *FormFieldCollection) SetList(value []IFormField)

func (*FormFieldCollection) Validate ¶

func (obj *FormFieldCollection) Validate() error

type FormFieldDropDown ¶

type FormFieldDropDown struct {
	// FormField dropdownlist element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// FormField dropdownlist element.
	NodeId *string `json:"NodeId,omitempty"`

	// FormField dropdownlist element.
	Name *string `json:"Name,omitempty"`

	// FormField dropdownlist element.
	Enabled *bool `json:"Enabled,omitempty"`

	// FormField dropdownlist element.
	StatusText *string `json:"StatusText,omitempty"`

	// FormField dropdownlist element.
	OwnStatus *bool `json:"OwnStatus,omitempty"`

	// FormField dropdownlist element.
	HelpText *string `json:"HelpText,omitempty"`

	// FormField dropdownlist element.
	OwnHelp *bool `json:"OwnHelp,omitempty"`

	// FormField dropdownlist element.
	CalculateOnExit *bool `json:"CalculateOnExit,omitempty"`

	// FormField dropdownlist element.
	EntryMacro *string `json:"EntryMacro,omitempty"`

	// FormField dropdownlist element.
	ExitMacro *string `json:"ExitMacro,omitempty"`

	// FormField dropdownlist element.
	DropDownItems []string `json:"DropDownItems,omitempty"`

	// FormField dropdownlist element.
	DropDownSelectedIndex *int32 `json:"DropDownSelectedIndex,omitempty"`
}

func (*FormFieldDropDown) CollectFilesContent ¶

func (obj *FormFieldDropDown) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FormFieldDropDown) Deserialize ¶

func (obj *FormFieldDropDown) Deserialize(json map[string]interface{})

func (*FormFieldDropDown) GetCalculateOnExit ¶

func (obj *FormFieldDropDown) GetCalculateOnExit() *bool

func (*FormFieldDropDown) GetDropDownItems ¶

func (obj *FormFieldDropDown) GetDropDownItems() []string

func (*FormFieldDropDown) GetDropDownSelectedIndex ¶

func (obj *FormFieldDropDown) GetDropDownSelectedIndex() *int32

func (*FormFieldDropDown) GetEnabled ¶

func (obj *FormFieldDropDown) GetEnabled() *bool

func (*FormFieldDropDown) GetEntryMacro ¶

func (obj *FormFieldDropDown) GetEntryMacro() *string

func (*FormFieldDropDown) GetExitMacro ¶

func (obj *FormFieldDropDown) GetExitMacro() *string

func (*FormFieldDropDown) GetHelpText ¶

func (obj *FormFieldDropDown) GetHelpText() *string
func (obj *FormFieldDropDown) GetLink() IWordsApiLink

func (*FormFieldDropDown) GetName ¶

func (obj *FormFieldDropDown) GetName() *string

func (*FormFieldDropDown) GetNodeId ¶

func (obj *FormFieldDropDown) GetNodeId() *string

func (*FormFieldDropDown) GetOwnHelp ¶

func (obj *FormFieldDropDown) GetOwnHelp() *bool

func (*FormFieldDropDown) GetOwnStatus ¶

func (obj *FormFieldDropDown) GetOwnStatus() *bool

func (*FormFieldDropDown) GetStatusText ¶

func (obj *FormFieldDropDown) GetStatusText() *string

func (*FormFieldDropDown) Initialize ¶

func (obj *FormFieldDropDown) Initialize()

func (FormFieldDropDown) IsFormField ¶

func (FormFieldDropDown) IsFormField() bool

func (FormFieldDropDown) IsFormFieldDropDown ¶

func (FormFieldDropDown) IsFormFieldDropDown() bool

func (FormFieldDropDown) IsLinkElement ¶

func (FormFieldDropDown) IsLinkElement() bool
func (FormFieldDropDown) IsNodeLink() bool

func (*FormFieldDropDown) SetCalculateOnExit ¶

func (obj *FormFieldDropDown) SetCalculateOnExit(value *bool)

func (*FormFieldDropDown) SetDropDownItems ¶

func (obj *FormFieldDropDown) SetDropDownItems(value []string)

func (*FormFieldDropDown) SetDropDownSelectedIndex ¶

func (obj *FormFieldDropDown) SetDropDownSelectedIndex(value *int32)

func (*FormFieldDropDown) SetEnabled ¶

func (obj *FormFieldDropDown) SetEnabled(value *bool)

func (*FormFieldDropDown) SetEntryMacro ¶

func (obj *FormFieldDropDown) SetEntryMacro(value *string)

func (*FormFieldDropDown) SetExitMacro ¶

func (obj *FormFieldDropDown) SetExitMacro(value *string)

func (*FormFieldDropDown) SetHelpText ¶

func (obj *FormFieldDropDown) SetHelpText(value *string)
func (obj *FormFieldDropDown) SetLink(value IWordsApiLink)

func (*FormFieldDropDown) SetName ¶

func (obj *FormFieldDropDown) SetName(value *string)

func (*FormFieldDropDown) SetNodeId ¶

func (obj *FormFieldDropDown) SetNodeId(value *string)

func (*FormFieldDropDown) SetOwnHelp ¶

func (obj *FormFieldDropDown) SetOwnHelp(value *bool)

func (*FormFieldDropDown) SetOwnStatus ¶

func (obj *FormFieldDropDown) SetOwnStatus(value *bool)

func (*FormFieldDropDown) SetStatusText ¶

func (obj *FormFieldDropDown) SetStatusText(value *string)

func (*FormFieldDropDown) Validate ¶

func (obj *FormFieldDropDown) Validate() error

type FormFieldResponse ¶

type FormFieldResponse struct {
	// The REST response with a form field.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/form fields/{1}" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a form field.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/form fields/{1}" REST API requests.
	FormField IFormField `json:"FormField,omitempty"`
}

func (*FormFieldResponse) CollectFilesContent ¶

func (obj *FormFieldResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FormFieldResponse) Deserialize ¶

func (obj *FormFieldResponse) Deserialize(json map[string]interface{})

func (*FormFieldResponse) GetFormField ¶

func (obj *FormFieldResponse) GetFormField() IFormField

func (*FormFieldResponse) GetRequestId ¶

func (obj *FormFieldResponse) GetRequestId() *string

func (*FormFieldResponse) Initialize ¶

func (obj *FormFieldResponse) Initialize()

func (FormFieldResponse) IsFormFieldResponse ¶

func (FormFieldResponse) IsFormFieldResponse() bool

func (FormFieldResponse) IsWordsResponse ¶

func (FormFieldResponse) IsWordsResponse() bool

func (*FormFieldResponse) SetFormField ¶

func (obj *FormFieldResponse) SetFormField(value IFormField)

func (*FormFieldResponse) SetRequestId ¶

func (obj *FormFieldResponse) SetRequestId(value *string)

func (*FormFieldResponse) Validate ¶

func (obj *FormFieldResponse) Validate() error

type FormFieldTextInput ¶

type FormFieldTextInput struct {
	// FormField text input element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// FormField text input element.
	NodeId *string `json:"NodeId,omitempty"`

	// FormField text input element.
	Name *string `json:"Name,omitempty"`

	// FormField text input element.
	Enabled *bool `json:"Enabled,omitempty"`

	// FormField text input element.
	StatusText *string `json:"StatusText,omitempty"`

	// FormField text input element.
	OwnStatus *bool `json:"OwnStatus,omitempty"`

	// FormField text input element.
	HelpText *string `json:"HelpText,omitempty"`

	// FormField text input element.
	OwnHelp *bool `json:"OwnHelp,omitempty"`

	// FormField text input element.
	CalculateOnExit *bool `json:"CalculateOnExit,omitempty"`

	// FormField text input element.
	EntryMacro *string `json:"EntryMacro,omitempty"`

	// FormField text input element.
	ExitMacro *string `json:"ExitMacro,omitempty"`

	// FormField text input element.
	TextInputFormat *string `json:"TextInputFormat,omitempty"`

	// FormField text input element.
	TextInputType *string `json:"TextInputType,omitempty"`

	// FormField text input element.
	TextInputDefault *string `json:"TextInputDefault,omitempty"`

	// FormField text input element.
	MaxLength *int32 `json:"MaxLength,omitempty"`
}

func (*FormFieldTextInput) CollectFilesContent ¶

func (obj *FormFieldTextInput) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FormFieldTextInput) Deserialize ¶

func (obj *FormFieldTextInput) Deserialize(json map[string]interface{})

func (*FormFieldTextInput) GetCalculateOnExit ¶

func (obj *FormFieldTextInput) GetCalculateOnExit() *bool

func (*FormFieldTextInput) GetEnabled ¶

func (obj *FormFieldTextInput) GetEnabled() *bool

func (*FormFieldTextInput) GetEntryMacro ¶

func (obj *FormFieldTextInput) GetEntryMacro() *string

func (*FormFieldTextInput) GetExitMacro ¶

func (obj *FormFieldTextInput) GetExitMacro() *string

func (*FormFieldTextInput) GetHelpText ¶

func (obj *FormFieldTextInput) GetHelpText() *string
func (obj *FormFieldTextInput) GetLink() IWordsApiLink

func (*FormFieldTextInput) GetMaxLength ¶

func (obj *FormFieldTextInput) GetMaxLength() *int32

func (*FormFieldTextInput) GetName ¶

func (obj *FormFieldTextInput) GetName() *string

func (*FormFieldTextInput) GetNodeId ¶

func (obj *FormFieldTextInput) GetNodeId() *string

func (*FormFieldTextInput) GetOwnHelp ¶

func (obj *FormFieldTextInput) GetOwnHelp() *bool

func (*FormFieldTextInput) GetOwnStatus ¶

func (obj *FormFieldTextInput) GetOwnStatus() *bool

func (*FormFieldTextInput) GetStatusText ¶

func (obj *FormFieldTextInput) GetStatusText() *string

func (*FormFieldTextInput) GetTextInputDefault ¶

func (obj *FormFieldTextInput) GetTextInputDefault() *string

func (*FormFieldTextInput) GetTextInputFormat ¶

func (obj *FormFieldTextInput) GetTextInputFormat() *string

func (*FormFieldTextInput) GetTextInputType ¶

func (obj *FormFieldTextInput) GetTextInputType() *string

func (*FormFieldTextInput) Initialize ¶

func (obj *FormFieldTextInput) Initialize()

func (FormFieldTextInput) IsFormField ¶

func (FormFieldTextInput) IsFormField() bool

func (FormFieldTextInput) IsFormFieldTextInput ¶

func (FormFieldTextInput) IsFormFieldTextInput() bool

func (FormFieldTextInput) IsLinkElement ¶

func (FormFieldTextInput) IsLinkElement() bool
func (FormFieldTextInput) IsNodeLink() bool

func (*FormFieldTextInput) SetCalculateOnExit ¶

func (obj *FormFieldTextInput) SetCalculateOnExit(value *bool)

func (*FormFieldTextInput) SetEnabled ¶

func (obj *FormFieldTextInput) SetEnabled(value *bool)

func (*FormFieldTextInput) SetEntryMacro ¶

func (obj *FormFieldTextInput) SetEntryMacro(value *string)

func (*FormFieldTextInput) SetExitMacro ¶

func (obj *FormFieldTextInput) SetExitMacro(value *string)

func (*FormFieldTextInput) SetHelpText ¶

func (obj *FormFieldTextInput) SetHelpText(value *string)
func (obj *FormFieldTextInput) SetLink(value IWordsApiLink)

func (*FormFieldTextInput) SetMaxLength ¶

func (obj *FormFieldTextInput) SetMaxLength(value *int32)

func (*FormFieldTextInput) SetName ¶

func (obj *FormFieldTextInput) SetName(value *string)

func (*FormFieldTextInput) SetNodeId ¶

func (obj *FormFieldTextInput) SetNodeId(value *string)

func (*FormFieldTextInput) SetOwnHelp ¶

func (obj *FormFieldTextInput) SetOwnHelp(value *bool)

func (*FormFieldTextInput) SetOwnStatus ¶

func (obj *FormFieldTextInput) SetOwnStatus(value *bool)

func (*FormFieldTextInput) SetStatusText ¶

func (obj *FormFieldTextInput) SetStatusText(value *string)

func (*FormFieldTextInput) SetTextInputDefault ¶

func (obj *FormFieldTextInput) SetTextInputDefault(value *string)

func (*FormFieldTextInput) SetTextInputFormat ¶

func (obj *FormFieldTextInput) SetTextInputFormat(value *string)

func (*FormFieldTextInput) SetTextInputType ¶

func (obj *FormFieldTextInput) SetTextInputType(value *string)

func (*FormFieldTextInput) Validate ¶

func (obj *FormFieldTextInput) Validate() error

type FormFieldsResponse ¶

type FormFieldsResponse struct {
	// The REST response with a collection of form fields.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/{nodePath}/form fields" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of form fields.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/{nodePath}/form fields" REST API requests.
	FormFields IFormFieldCollection `json:"FormFields,omitempty"`
}

func (*FormFieldsResponse) CollectFilesContent ¶

func (obj *FormFieldsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*FormFieldsResponse) Deserialize ¶

func (obj *FormFieldsResponse) Deserialize(json map[string]interface{})

func (*FormFieldsResponse) GetFormFields ¶

func (obj *FormFieldsResponse) GetFormFields() IFormFieldCollection

func (*FormFieldsResponse) GetRequestId ¶

func (obj *FormFieldsResponse) GetRequestId() *string

func (*FormFieldsResponse) Initialize ¶

func (obj *FormFieldsResponse) Initialize()

func (FormFieldsResponse) IsFormFieldsResponse ¶

func (FormFieldsResponse) IsFormFieldsResponse() bool

func (FormFieldsResponse) IsWordsResponse ¶

func (FormFieldsResponse) IsWordsResponse() bool

func (*FormFieldsResponse) SetFormFields ¶

func (obj *FormFieldsResponse) SetFormFields(value IFormFieldCollection)

func (*FormFieldsResponse) SetRequestId ¶

func (obj *FormFieldsResponse) SetRequestId(value *string)

func (*FormFieldsResponse) Validate ¶

func (obj *FormFieldsResponse) Validate() error

type FormParamContainer ¶

type FormParamContainer struct {
	Name     string
	MimeType string
	Text     string
	File     []byte
	IsFile   bool
}

func NewFileFormParamContainer ¶

func NewFileFormParamContainer(name string, file []byte) (result FormParamContainer)

func NewJsonFormParamContainer ¶

func NewJsonFormParamContainer(name string, text string) (result FormParamContainer)

func NewTextFormParamContainer ¶

func NewTextFormParamContainer(name string, text string) (result FormParamContainer)

type GetAvailableFontsRequest ¶

type GetAvailableFontsRequest struct {
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "fontsLocation" value: (*string) The folder in cloud storage with custom fonts. */
	Optionals map[string]interface{}
}

GetAvailableFontsRequest contains request data for WordsApiService.GetAvailableFonts method.

func (*GetAvailableFontsRequest) CreateRequestData ¶

func (data *GetAvailableFontsRequest) CreateRequestData() (RequestData, error)

func (*GetAvailableFontsRequest) CreateResponse ¶

func (data *GetAvailableFontsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetBookmarkByNameOnlineRequest ¶

type GetBookmarkByNameOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The name of the bookmark.
	BookmarkName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetBookmarkByNameOnlineRequest contains request data for WordsApiService.GetBookmarkByNameOnline method.

func (*GetBookmarkByNameOnlineRequest) CreateRequestData ¶

func (data *GetBookmarkByNameOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetBookmarkByNameOnlineRequest) CreateResponse ¶

func (data *GetBookmarkByNameOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetBookmarkByNameRequest ¶

type GetBookmarkByNameRequest struct {
	// The filename of the input document.
	Name *string
	// The name of the bookmark.
	BookmarkName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetBookmarkByNameRequest contains request data for WordsApiService.GetBookmarkByName method.

func (*GetBookmarkByNameRequest) CreateRequestData ¶

func (data *GetBookmarkByNameRequest) CreateRequestData() (RequestData, error)

func (*GetBookmarkByNameRequest) CreateResponse ¶

func (data *GetBookmarkByNameRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetBookmarksOnlineRequest ¶

type GetBookmarksOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetBookmarksOnlineRequest contains request data for WordsApiService.GetBookmarksOnline method.

func (*GetBookmarksOnlineRequest) CreateRequestData ¶

func (data *GetBookmarksOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetBookmarksOnlineRequest) CreateResponse ¶

func (data *GetBookmarksOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetBookmarksRequest ¶

type GetBookmarksRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetBookmarksRequest contains request data for WordsApiService.GetBookmarks method.

func (*GetBookmarksRequest) CreateRequestData ¶

func (data *GetBookmarksRequest) CreateRequestData() (RequestData, error)

func (*GetBookmarksRequest) CreateResponse ¶

func (data *GetBookmarksRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetBorderOnlineRequest ¶

type GetBorderOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Border type.
	BorderType *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetBorderOnlineRequest contains request data for WordsApiService.GetBorderOnline method.

func (*GetBorderOnlineRequest) CreateRequestData ¶

func (data *GetBorderOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetBorderOnlineRequest) CreateResponse ¶

func (data *GetBorderOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetBorderRequest ¶

type GetBorderRequest struct {
	// The filename of the input document.
	Name *string
	// Border type.
	BorderType *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetBorderRequest contains request data for WordsApiService.GetBorder method.

func (*GetBorderRequest) CreateRequestData ¶

func (data *GetBorderRequest) CreateRequestData() (RequestData, error)

func (*GetBorderRequest) CreateResponse ¶

func (data *GetBorderRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetBordersOnlineRequest ¶

type GetBordersOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetBordersOnlineRequest contains request data for WordsApiService.GetBordersOnline method.

func (*GetBordersOnlineRequest) CreateRequestData ¶

func (data *GetBordersOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetBordersOnlineRequest) CreateResponse ¶

func (data *GetBordersOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetBordersRequest ¶

type GetBordersRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetBordersRequest contains request data for WordsApiService.GetBorders method.

func (*GetBordersRequest) CreateRequestData ¶

func (data *GetBordersRequest) CreateRequestData() (RequestData, error)

func (*GetBordersRequest) CreateResponse ¶

func (data *GetBordersRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetCommentOnlineRequest ¶

type GetCommentOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the comment.
	CommentIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetCommentOnlineRequest contains request data for WordsApiService.GetCommentOnline method.

func (*GetCommentOnlineRequest) CreateRequestData ¶

func (data *GetCommentOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetCommentOnlineRequest) CreateResponse ¶

func (data *GetCommentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetCommentRequest ¶

type GetCommentRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the comment.
	CommentIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetCommentRequest contains request data for WordsApiService.GetComment method.

func (*GetCommentRequest) CreateRequestData ¶

func (data *GetCommentRequest) CreateRequestData() (RequestData, error)

func (*GetCommentRequest) CreateResponse ¶

func (data *GetCommentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetCommentsOnlineRequest ¶

type GetCommentsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetCommentsOnlineRequest contains request data for WordsApiService.GetCommentsOnline method.

func (*GetCommentsOnlineRequest) CreateRequestData ¶

func (data *GetCommentsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetCommentsOnlineRequest) CreateResponse ¶

func (data *GetCommentsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetCommentsRequest ¶

type GetCommentsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetCommentsRequest contains request data for WordsApiService.GetComments method.

func (*GetCommentsRequest) CreateRequestData ¶

func (data *GetCommentsRequest) CreateRequestData() (RequestData, error)

func (*GetCommentsRequest) CreateResponse ¶

func (data *GetCommentsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetCustomXmlPartOnlineRequest ¶

type GetCustomXmlPartOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the custom xml part. This index is the number of the entry in the collection of custom xml parts, not the ID of the part.
	CustomXmlPartIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetCustomXmlPartOnlineRequest contains request data for WordsApiService.GetCustomXmlPartOnline method.

func (*GetCustomXmlPartOnlineRequest) CreateRequestData ¶

func (data *GetCustomXmlPartOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetCustomXmlPartOnlineRequest) CreateResponse ¶

func (data *GetCustomXmlPartOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetCustomXmlPartRequest ¶

type GetCustomXmlPartRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the custom xml part. This index is the number of the entry in the collection of custom xml parts, not the ID of the part.
	CustomXmlPartIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetCustomXmlPartRequest contains request data for WordsApiService.GetCustomXmlPart method.

func (*GetCustomXmlPartRequest) CreateRequestData ¶

func (data *GetCustomXmlPartRequest) CreateRequestData() (RequestData, error)

func (*GetCustomXmlPartRequest) CreateResponse ¶

func (data *GetCustomXmlPartRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetCustomXmlPartsOnlineRequest ¶

type GetCustomXmlPartsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetCustomXmlPartsOnlineRequest contains request data for WordsApiService.GetCustomXmlPartsOnline method.

func (*GetCustomXmlPartsOnlineRequest) CreateRequestData ¶

func (data *GetCustomXmlPartsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetCustomXmlPartsOnlineRequest) CreateResponse ¶

func (data *GetCustomXmlPartsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetCustomXmlPartsRequest ¶

type GetCustomXmlPartsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetCustomXmlPartsRequest contains request data for WordsApiService.GetCustomXmlParts method.

func (*GetCustomXmlPartsRequest) CreateRequestData ¶

func (data *GetCustomXmlPartsRequest) CreateRequestData() (RequestData, error)

func (*GetCustomXmlPartsRequest) CreateResponse ¶

func (data *GetCustomXmlPartsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentDrawingObjectByIndexOnlineRequest ¶

type GetDocumentDrawingObjectByIndexOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentDrawingObjectByIndexOnlineRequest contains request data for WordsApiService.GetDocumentDrawingObjectByIndexOnline method.

func (*GetDocumentDrawingObjectByIndexOnlineRequest) CreateRequestData ¶

func (data *GetDocumentDrawingObjectByIndexOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentDrawingObjectByIndexOnlineRequest) CreateResponse ¶

func (data *GetDocumentDrawingObjectByIndexOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentDrawingObjectByIndexRequest ¶

type GetDocumentDrawingObjectByIndexRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentDrawingObjectByIndexRequest contains request data for WordsApiService.GetDocumentDrawingObjectByIndex method.

func (*GetDocumentDrawingObjectByIndexRequest) CreateRequestData ¶

func (data *GetDocumentDrawingObjectByIndexRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentDrawingObjectByIndexRequest) CreateResponse ¶

func (data *GetDocumentDrawingObjectByIndexRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentDrawingObjectImageDataOnlineRequest ¶

type GetDocumentDrawingObjectImageDataOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentDrawingObjectImageDataOnlineRequest contains request data for WordsApiService.GetDocumentDrawingObjectImageDataOnline method.

func (*GetDocumentDrawingObjectImageDataOnlineRequest) CreateRequestData ¶

func (*GetDocumentDrawingObjectImageDataOnlineRequest) CreateResponse ¶

func (data *GetDocumentDrawingObjectImageDataOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentDrawingObjectImageDataRequest ¶

type GetDocumentDrawingObjectImageDataRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentDrawingObjectImageDataRequest contains request data for WordsApiService.GetDocumentDrawingObjectImageData method.

func (*GetDocumentDrawingObjectImageDataRequest) CreateRequestData ¶

func (data *GetDocumentDrawingObjectImageDataRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentDrawingObjectImageDataRequest) CreateResponse ¶

func (data *GetDocumentDrawingObjectImageDataRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentDrawingObjectOleDataOnlineRequest ¶

type GetDocumentDrawingObjectOleDataOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentDrawingObjectOleDataOnlineRequest contains request data for WordsApiService.GetDocumentDrawingObjectOleDataOnline method.

func (*GetDocumentDrawingObjectOleDataOnlineRequest) CreateRequestData ¶

func (data *GetDocumentDrawingObjectOleDataOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentDrawingObjectOleDataOnlineRequest) CreateResponse ¶

func (data *GetDocumentDrawingObjectOleDataOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentDrawingObjectOleDataRequest ¶

type GetDocumentDrawingObjectOleDataRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentDrawingObjectOleDataRequest contains request data for WordsApiService.GetDocumentDrawingObjectOleData method.

func (*GetDocumentDrawingObjectOleDataRequest) CreateRequestData ¶

func (data *GetDocumentDrawingObjectOleDataRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentDrawingObjectOleDataRequest) CreateResponse ¶

func (data *GetDocumentDrawingObjectOleDataRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentDrawingObjectsOnlineRequest ¶

type GetDocumentDrawingObjectsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentDrawingObjectsOnlineRequest contains request data for WordsApiService.GetDocumentDrawingObjectsOnline method.

func (*GetDocumentDrawingObjectsOnlineRequest) CreateRequestData ¶

func (data *GetDocumentDrawingObjectsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentDrawingObjectsOnlineRequest) CreateResponse ¶

func (data *GetDocumentDrawingObjectsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentDrawingObjectsRequest ¶

type GetDocumentDrawingObjectsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentDrawingObjectsRequest contains request data for WordsApiService.GetDocumentDrawingObjects method.

func (*GetDocumentDrawingObjectsRequest) CreateRequestData ¶

func (data *GetDocumentDrawingObjectsRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentDrawingObjectsRequest) CreateResponse ¶

func (data *GetDocumentDrawingObjectsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentFieldNamesOnlineRequest ¶

type GetDocumentFieldNamesOnlineRequest struct {
	// The template document.
	Template io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "useNonMergeFields" value: (*bool) The flag indicating whether to use non merge fields. If true, result includes "mustache" field names. */
	Optionals map[string]interface{}
}

GetDocumentFieldNamesOnlineRequest contains request data for WordsApiService.GetDocumentFieldNamesOnline method.

func (*GetDocumentFieldNamesOnlineRequest) CreateRequestData ¶

func (data *GetDocumentFieldNamesOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentFieldNamesOnlineRequest) CreateResponse ¶

func (data *GetDocumentFieldNamesOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentFieldNamesRequest ¶

type GetDocumentFieldNamesRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "useNonMergeFields" value: (*bool) The flag indicating whether to use non merge fields. If true, result includes "mustache" field names. */
	Optionals map[string]interface{}
}

GetDocumentFieldNamesRequest contains request data for WordsApiService.GetDocumentFieldNames method.

func (*GetDocumentFieldNamesRequest) CreateRequestData ¶

func (data *GetDocumentFieldNamesRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentFieldNamesRequest) CreateResponse ¶

func (data *GetDocumentFieldNamesRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentHyperlinkByIndexOnlineRequest ¶

type GetDocumentHyperlinkByIndexOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the hyperlink.
	HyperlinkIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentHyperlinkByIndexOnlineRequest contains request data for WordsApiService.GetDocumentHyperlinkByIndexOnline method.

func (*GetDocumentHyperlinkByIndexOnlineRequest) CreateRequestData ¶

func (data *GetDocumentHyperlinkByIndexOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentHyperlinkByIndexOnlineRequest) CreateResponse ¶

func (data *GetDocumentHyperlinkByIndexOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentHyperlinkByIndexRequest ¶

type GetDocumentHyperlinkByIndexRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the hyperlink.
	HyperlinkIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentHyperlinkByIndexRequest contains request data for WordsApiService.GetDocumentHyperlinkByIndex method.

func (*GetDocumentHyperlinkByIndexRequest) CreateRequestData ¶

func (data *GetDocumentHyperlinkByIndexRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentHyperlinkByIndexRequest) CreateResponse ¶

func (data *GetDocumentHyperlinkByIndexRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentHyperlinksOnlineRequest ¶

type GetDocumentHyperlinksOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentHyperlinksOnlineRequest contains request data for WordsApiService.GetDocumentHyperlinksOnline method.

func (*GetDocumentHyperlinksOnlineRequest) CreateRequestData ¶

func (data *GetDocumentHyperlinksOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentHyperlinksOnlineRequest) CreateResponse ¶

func (data *GetDocumentHyperlinksOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentHyperlinksRequest ¶

type GetDocumentHyperlinksRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentHyperlinksRequest contains request data for WordsApiService.GetDocumentHyperlinks method.

func (*GetDocumentHyperlinksRequest) CreateRequestData ¶

func (data *GetDocumentHyperlinksRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentHyperlinksRequest) CreateResponse ¶

func (data *GetDocumentHyperlinksRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentPropertiesOnlineRequest ¶

type GetDocumentPropertiesOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentPropertiesOnlineRequest contains request data for WordsApiService.GetDocumentPropertiesOnline method.

func (*GetDocumentPropertiesOnlineRequest) CreateRequestData ¶

func (data *GetDocumentPropertiesOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentPropertiesOnlineRequest) CreateResponse ¶

func (data *GetDocumentPropertiesOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentPropertiesRequest ¶

type GetDocumentPropertiesRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentPropertiesRequest contains request data for WordsApiService.GetDocumentProperties method.

func (*GetDocumentPropertiesRequest) CreateRequestData ¶

func (data *GetDocumentPropertiesRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentPropertiesRequest) CreateResponse ¶

func (data *GetDocumentPropertiesRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentPropertyOnlineRequest ¶

type GetDocumentPropertyOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The name of the property.
	PropertyName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentPropertyOnlineRequest contains request data for WordsApiService.GetDocumentPropertyOnline method.

func (*GetDocumentPropertyOnlineRequest) CreateRequestData ¶

func (data *GetDocumentPropertyOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentPropertyOnlineRequest) CreateResponse ¶

func (data *GetDocumentPropertyOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentPropertyRequest ¶

type GetDocumentPropertyRequest struct {
	// The filename of the input document.
	Name *string
	// The name of the property.
	PropertyName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentPropertyRequest contains request data for WordsApiService.GetDocumentProperty method.

func (*GetDocumentPropertyRequest) CreateRequestData ¶

func (data *GetDocumentPropertyRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentPropertyRequest) CreateResponse ¶

func (data *GetDocumentPropertyRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentProtectionOnlineRequest ¶

type GetDocumentProtectionOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentProtectionOnlineRequest contains request data for WordsApiService.GetDocumentProtectionOnline method.

func (*GetDocumentProtectionOnlineRequest) CreateRequestData ¶

func (data *GetDocumentProtectionOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentProtectionOnlineRequest) CreateResponse ¶

func (data *GetDocumentProtectionOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentProtectionRequest ¶

type GetDocumentProtectionRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentProtectionRequest contains request data for WordsApiService.GetDocumentProtection method.

func (*GetDocumentProtectionRequest) CreateRequestData ¶

func (data *GetDocumentProtectionRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentProtectionRequest) CreateResponse ¶

func (data *GetDocumentProtectionRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentRequest ¶

type GetDocumentRequest struct {
	// The filename of the input document.
	DocumentName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetDocumentRequest contains request data for WordsApiService.GetDocument method.

func (*GetDocumentRequest) CreateRequestData ¶

func (data *GetDocumentRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentRequest) CreateResponse ¶

func (data *GetDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentStatisticsOnlineRequest ¶

type GetDocumentStatisticsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "includeComments" value: (*bool) The flag indicating whether to include comments from the WordCount. The default value is "false".
	   key: "includeFootnotes" value: (*bool) The flag indicating whether to include footnotes from the WordCount. The default value is "false".
	   key: "includeTextInShapes" value: (*bool) The flag indicating whether to include shape's text from the WordCount. The default value is "false". */
	Optionals map[string]interface{}
}

GetDocumentStatisticsOnlineRequest contains request data for WordsApiService.GetDocumentStatisticsOnline method.

func (*GetDocumentStatisticsOnlineRequest) CreateRequestData ¶

func (data *GetDocumentStatisticsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentStatisticsOnlineRequest) CreateResponse ¶

func (data *GetDocumentStatisticsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentStatisticsRequest ¶

type GetDocumentStatisticsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "includeComments" value: (*bool) The flag indicating whether to include comments from the WordCount. The default value is "false".
	   key: "includeFootnotes" value: (*bool) The flag indicating whether to include footnotes from the WordCount. The default value is "false".
	   key: "includeTextInShapes" value: (*bool) The flag indicating whether to include shape's text from the WordCount. The default value is "false". */
	Optionals map[string]interface{}
}

GetDocumentStatisticsRequest contains request data for WordsApiService.GetDocumentStatistics method.

func (*GetDocumentStatisticsRequest) CreateRequestData ¶

func (data *GetDocumentStatisticsRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentStatisticsRequest) CreateResponse ¶

func (data *GetDocumentStatisticsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetDocumentWithFormatRequest ¶

type GetDocumentWithFormatRequest struct {
	// The filename of the input document.
	Name *string
	// The destination format.
	Format *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "outPath" value: (*string) The path to the output document.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

GetDocumentWithFormatRequest contains request data for WordsApiService.GetDocumentWithFormat method.

func (*GetDocumentWithFormatRequest) CreateRequestData ¶

func (data *GetDocumentWithFormatRequest) CreateRequestData() (RequestData, error)

func (*GetDocumentWithFormatRequest) CreateResponse ¶

func (data *GetDocumentWithFormatRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFieldOnlineRequest ¶

type GetFieldOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFieldOnlineRequest contains request data for WordsApiService.GetFieldOnline method.

func (*GetFieldOnlineRequest) CreateRequestData ¶

func (data *GetFieldOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetFieldOnlineRequest) CreateResponse ¶

func (data *GetFieldOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFieldRequest ¶

type GetFieldRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFieldRequest contains request data for WordsApiService.GetField method.

func (*GetFieldRequest) CreateRequestData ¶

func (data *GetFieldRequest) CreateRequestData() (RequestData, error)

func (*GetFieldRequest) CreateResponse ¶

func (data *GetFieldRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFieldsOnlineRequest ¶

type GetFieldsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFieldsOnlineRequest contains request data for WordsApiService.GetFieldsOnline method.

func (*GetFieldsOnlineRequest) CreateRequestData ¶

func (data *GetFieldsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetFieldsOnlineRequest) CreateResponse ¶

func (data *GetFieldsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFieldsRequest ¶

type GetFieldsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFieldsRequest contains request data for WordsApiService.GetFields method.

func (*GetFieldsRequest) CreateRequestData ¶

func (data *GetFieldsRequest) CreateRequestData() (RequestData, error)

func (*GetFieldsRequest) CreateResponse ¶

func (data *GetFieldsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFilesListRequest ¶

type GetFilesListRequest struct {
	// Folder path e.g. '/folder'.
	Path *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "storageName" value: (*string) Storage name. */
	Optionals map[string]interface{}
}

GetFilesListRequest contains request data for WordsApiService.GetFilesList method.

func (*GetFilesListRequest) CreateRequestData ¶

func (data *GetFilesListRequest) CreateRequestData() (RequestData, error)

func (*GetFilesListRequest) CreateResponse ¶

func (data *GetFilesListRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFootnoteOnlineRequest ¶

type GetFootnoteOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFootnoteOnlineRequest contains request data for WordsApiService.GetFootnoteOnline method.

func (*GetFootnoteOnlineRequest) CreateRequestData ¶

func (data *GetFootnoteOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetFootnoteOnlineRequest) CreateResponse ¶

func (data *GetFootnoteOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFootnoteRequest ¶

type GetFootnoteRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFootnoteRequest contains request data for WordsApiService.GetFootnote method.

func (*GetFootnoteRequest) CreateRequestData ¶

func (data *GetFootnoteRequest) CreateRequestData() (RequestData, error)

func (*GetFootnoteRequest) CreateResponse ¶

func (data *GetFootnoteRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFootnotesOnlineRequest ¶

type GetFootnotesOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFootnotesOnlineRequest contains request data for WordsApiService.GetFootnotesOnline method.

func (*GetFootnotesOnlineRequest) CreateRequestData ¶

func (data *GetFootnotesOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetFootnotesOnlineRequest) CreateResponse ¶

func (data *GetFootnotesOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFootnotesRequest ¶

type GetFootnotesRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFootnotesRequest contains request data for WordsApiService.GetFootnotes method.

func (*GetFootnotesRequest) CreateRequestData ¶

func (data *GetFootnotesRequest) CreateRequestData() (RequestData, error)

func (*GetFootnotesRequest) CreateResponse ¶

func (data *GetFootnotesRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFormFieldOnlineRequest ¶

type GetFormFieldOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFormFieldOnlineRequest contains request data for WordsApiService.GetFormFieldOnline method.

func (*GetFormFieldOnlineRequest) CreateRequestData ¶

func (data *GetFormFieldOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetFormFieldOnlineRequest) CreateResponse ¶

func (data *GetFormFieldOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFormFieldRequest ¶

type GetFormFieldRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFormFieldRequest contains request data for WordsApiService.GetFormField method.

func (*GetFormFieldRequest) CreateRequestData ¶

func (data *GetFormFieldRequest) CreateRequestData() (RequestData, error)

func (*GetFormFieldRequest) CreateResponse ¶

func (data *GetFormFieldRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFormFieldsOnlineRequest ¶

type GetFormFieldsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFormFieldsOnlineRequest contains request data for WordsApiService.GetFormFieldsOnline method.

func (*GetFormFieldsOnlineRequest) CreateRequestData ¶

func (data *GetFormFieldsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetFormFieldsOnlineRequest) CreateResponse ¶

func (data *GetFormFieldsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetFormFieldsRequest ¶

type GetFormFieldsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetFormFieldsRequest contains request data for WordsApiService.GetFormFields method.

func (*GetFormFieldsRequest) CreateRequestData ¶

func (data *GetFormFieldsRequest) CreateRequestData() (RequestData, error)

func (*GetFormFieldsRequest) CreateResponse ¶

func (data *GetFormFieldsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetHeaderFooterOfSectionOnlineRequest ¶

type GetHeaderFooterOfSectionOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the HeaderFooter object.
	HeaderFooterIndex *int32
	// The index of the section.
	SectionIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "filterByType" value: (*string) The list of HeaderFooter types. */
	Optionals map[string]interface{}
}

GetHeaderFooterOfSectionOnlineRequest contains request data for WordsApiService.GetHeaderFooterOfSectionOnline method.

func (*GetHeaderFooterOfSectionOnlineRequest) CreateRequestData ¶

func (data *GetHeaderFooterOfSectionOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetHeaderFooterOfSectionOnlineRequest) CreateResponse ¶

func (data *GetHeaderFooterOfSectionOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetHeaderFooterOfSectionRequest ¶

type GetHeaderFooterOfSectionRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the HeaderFooter object.
	HeaderFooterIndex *int32
	// The index of the section.
	SectionIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "filterByType" value: (*string) The list of HeaderFooter types. */
	Optionals map[string]interface{}
}

GetHeaderFooterOfSectionRequest contains request data for WordsApiService.GetHeaderFooterOfSection method.

func (*GetHeaderFooterOfSectionRequest) CreateRequestData ¶

func (data *GetHeaderFooterOfSectionRequest) CreateRequestData() (RequestData, error)

func (*GetHeaderFooterOfSectionRequest) CreateResponse ¶

func (data *GetHeaderFooterOfSectionRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetHeaderFooterOnlineRequest ¶

type GetHeaderFooterOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the HeaderFooter object.
	HeaderFooterIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "filterByType" value: (*string) The list of HeaderFooter types. */
	Optionals map[string]interface{}
}

GetHeaderFooterOnlineRequest contains request data for WordsApiService.GetHeaderFooterOnline method.

func (*GetHeaderFooterOnlineRequest) CreateRequestData ¶

func (data *GetHeaderFooterOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetHeaderFooterOnlineRequest) CreateResponse ¶

func (data *GetHeaderFooterOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetHeaderFooterRequest ¶

type GetHeaderFooterRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the HeaderFooter object.
	HeaderFooterIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "filterByType" value: (*string) The list of HeaderFooter types. */
	Optionals map[string]interface{}
}

GetHeaderFooterRequest contains request data for WordsApiService.GetHeaderFooter method.

func (*GetHeaderFooterRequest) CreateRequestData ¶

func (data *GetHeaderFooterRequest) CreateRequestData() (RequestData, error)

func (*GetHeaderFooterRequest) CreateResponse ¶

func (data *GetHeaderFooterRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetHeaderFootersOnlineRequest ¶

type GetHeaderFootersOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the section in the document tree.
	SectionPath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "filterByType" value: (*string) The list of HeaderFooter types. */
	Optionals map[string]interface{}
}

GetHeaderFootersOnlineRequest contains request data for WordsApiService.GetHeaderFootersOnline method.

func (*GetHeaderFootersOnlineRequest) CreateRequestData ¶

func (data *GetHeaderFootersOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetHeaderFootersOnlineRequest) CreateResponse ¶

func (data *GetHeaderFootersOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetHeaderFootersRequest ¶

type GetHeaderFootersRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the section in the document tree.
	SectionPath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "filterByType" value: (*string) The list of HeaderFooter types. */
	Optionals map[string]interface{}
}

GetHeaderFootersRequest contains request data for WordsApiService.GetHeaderFooters method.

func (*GetHeaderFootersRequest) CreateRequestData ¶

func (data *GetHeaderFootersRequest) CreateRequestData() (RequestData, error)

func (*GetHeaderFootersRequest) CreateResponse ¶

func (data *GetHeaderFootersRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetInfoRequest ¶

type GetInfoRequest struct {
}

GetInfoRequest contains request data for WordsApiService.GetInfo method.

func (*GetInfoRequest) CreateRequestData ¶

func (data *GetInfoRequest) CreateRequestData() (RequestData, error)

func (*GetInfoRequest) CreateResponse ¶

func (data *GetInfoRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetListOnlineRequest ¶

type GetListOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The list Id.
	ListId *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetListOnlineRequest contains request data for WordsApiService.GetListOnline method.

func (*GetListOnlineRequest) CreateRequestData ¶

func (data *GetListOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetListOnlineRequest) CreateResponse ¶

func (data *GetListOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetListRequest ¶

type GetListRequest struct {
	// The filename of the input document.
	Name *string
	// The list Id.
	ListId *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetListRequest contains request data for WordsApiService.GetList method.

func (*GetListRequest) CreateRequestData ¶

func (data *GetListRequest) CreateRequestData() (RequestData, error)

func (*GetListRequest) CreateResponse ¶

func (data *GetListRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetListsOnlineRequest ¶

type GetListsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetListsOnlineRequest contains request data for WordsApiService.GetListsOnline method.

func (*GetListsOnlineRequest) CreateRequestData ¶

func (data *GetListsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetListsOnlineRequest) CreateResponse ¶

func (data *GetListsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetListsRequest ¶

type GetListsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetListsRequest contains request data for WordsApiService.GetLists method.

func (*GetListsRequest) CreateRequestData ¶

func (data *GetListsRequest) CreateRequestData() (RequestData, error)

func (*GetListsRequest) CreateResponse ¶

func (data *GetListsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetOfficeMathObjectOnlineRequest ¶

type GetOfficeMathObjectOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetOfficeMathObjectOnlineRequest contains request data for WordsApiService.GetOfficeMathObjectOnline method.

func (*GetOfficeMathObjectOnlineRequest) CreateRequestData ¶

func (data *GetOfficeMathObjectOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetOfficeMathObjectOnlineRequest) CreateResponse ¶

func (data *GetOfficeMathObjectOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetOfficeMathObjectRequest ¶

type GetOfficeMathObjectRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetOfficeMathObjectRequest contains request data for WordsApiService.GetOfficeMathObject method.

func (*GetOfficeMathObjectRequest) CreateRequestData ¶

func (data *GetOfficeMathObjectRequest) CreateRequestData() (RequestData, error)

func (*GetOfficeMathObjectRequest) CreateResponse ¶

func (data *GetOfficeMathObjectRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetOfficeMathObjectsOnlineRequest ¶

type GetOfficeMathObjectsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetOfficeMathObjectsOnlineRequest contains request data for WordsApiService.GetOfficeMathObjectsOnline method.

func (*GetOfficeMathObjectsOnlineRequest) CreateRequestData ¶

func (data *GetOfficeMathObjectsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetOfficeMathObjectsOnlineRequest) CreateResponse ¶

func (data *GetOfficeMathObjectsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetOfficeMathObjectsRequest ¶

type GetOfficeMathObjectsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetOfficeMathObjectsRequest contains request data for WordsApiService.GetOfficeMathObjects method.

func (*GetOfficeMathObjectsRequest) CreateRequestData ¶

func (data *GetOfficeMathObjectsRequest) CreateRequestData() (RequestData, error)

func (*GetOfficeMathObjectsRequest) CreateResponse ¶

func (data *GetOfficeMathObjectsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetParagraphFormatOnlineRequest ¶

type GetParagraphFormatOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetParagraphFormatOnlineRequest contains request data for WordsApiService.GetParagraphFormatOnline method.

func (*GetParagraphFormatOnlineRequest) CreateRequestData ¶

func (data *GetParagraphFormatOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetParagraphFormatOnlineRequest) CreateResponse ¶

func (data *GetParagraphFormatOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetParagraphFormatRequest ¶

type GetParagraphFormatRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetParagraphFormatRequest contains request data for WordsApiService.GetParagraphFormat method.

func (*GetParagraphFormatRequest) CreateRequestData ¶

func (data *GetParagraphFormatRequest) CreateRequestData() (RequestData, error)

func (*GetParagraphFormatRequest) CreateResponse ¶

func (data *GetParagraphFormatRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetParagraphListFormatOnlineRequest ¶

type GetParagraphListFormatOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetParagraphListFormatOnlineRequest contains request data for WordsApiService.GetParagraphListFormatOnline method.

func (*GetParagraphListFormatOnlineRequest) CreateRequestData ¶

func (data *GetParagraphListFormatOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetParagraphListFormatOnlineRequest) CreateResponse ¶

func (data *GetParagraphListFormatOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetParagraphListFormatRequest ¶

type GetParagraphListFormatRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetParagraphListFormatRequest contains request data for WordsApiService.GetParagraphListFormat method.

func (*GetParagraphListFormatRequest) CreateRequestData ¶

func (data *GetParagraphListFormatRequest) CreateRequestData() (RequestData, error)

func (*GetParagraphListFormatRequest) CreateResponse ¶

func (data *GetParagraphListFormatRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetParagraphOnlineRequest ¶

type GetParagraphOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetParagraphOnlineRequest contains request data for WordsApiService.GetParagraphOnline method.

func (*GetParagraphOnlineRequest) CreateRequestData ¶

func (data *GetParagraphOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetParagraphOnlineRequest) CreateResponse ¶

func (data *GetParagraphOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetParagraphRequest ¶

type GetParagraphRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetParagraphRequest contains request data for WordsApiService.GetParagraph method.

func (*GetParagraphRequest) CreateRequestData ¶

func (data *GetParagraphRequest) CreateRequestData() (RequestData, error)

func (*GetParagraphRequest) CreateResponse ¶

func (data *GetParagraphRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetParagraphTabStopsOnlineRequest ¶

type GetParagraphTabStopsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetParagraphTabStopsOnlineRequest contains request data for WordsApiService.GetParagraphTabStopsOnline method.

func (*GetParagraphTabStopsOnlineRequest) CreateRequestData ¶

func (data *GetParagraphTabStopsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetParagraphTabStopsOnlineRequest) CreateResponse ¶

func (data *GetParagraphTabStopsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetParagraphTabStopsRequest ¶

type GetParagraphTabStopsRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetParagraphTabStopsRequest contains request data for WordsApiService.GetParagraphTabStops method.

func (*GetParagraphTabStopsRequest) CreateRequestData ¶

func (data *GetParagraphTabStopsRequest) CreateRequestData() (RequestData, error)

func (*GetParagraphTabStopsRequest) CreateResponse ¶

func (data *GetParagraphTabStopsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetParagraphsOnlineRequest ¶

type GetParagraphsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetParagraphsOnlineRequest contains request data for WordsApiService.GetParagraphsOnline method.

func (*GetParagraphsOnlineRequest) CreateRequestData ¶

func (data *GetParagraphsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetParagraphsOnlineRequest) CreateResponse ¶

func (data *GetParagraphsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetParagraphsRequest ¶

type GetParagraphsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetParagraphsRequest contains request data for WordsApiService.GetParagraphs method.

func (*GetParagraphsRequest) CreateRequestData ¶

func (data *GetParagraphsRequest) CreateRequestData() (RequestData, error)

func (*GetParagraphsRequest) CreateResponse ¶

func (data *GetParagraphsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetPublicKeyRequest ¶

type GetPublicKeyRequest struct {
}

GetPublicKeyRequest contains request data for WordsApiService.GetPublicKey method.

func (*GetPublicKeyRequest) CreateRequestData ¶

func (data *GetPublicKeyRequest) CreateRequestData() (RequestData, error)

func (*GetPublicKeyRequest) CreateResponse ¶

func (data *GetPublicKeyRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetRangeTextOnlineRequest ¶

type GetRangeTextOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The range start identifier. Identifier examples: id0.0.0, page0.
	RangeStartIdentifier *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetRangeTextOnlineRequest contains request data for WordsApiService.GetRangeTextOnline method.

func (*GetRangeTextOnlineRequest) CreateRequestData ¶

func (data *GetRangeTextOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetRangeTextOnlineRequest) CreateResponse ¶

func (data *GetRangeTextOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetRangeTextRequest ¶

type GetRangeTextRequest struct {
	// The filename of the input document.
	Name *string
	// The range start identifier. Identifier examples: id0.0.0, page0.
	RangeStartIdentifier *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetRangeTextRequest contains request data for WordsApiService.GetRangeText method.

func (*GetRangeTextRequest) CreateRequestData ¶

func (data *GetRangeTextRequest) CreateRequestData() (RequestData, error)

func (*GetRangeTextRequest) CreateResponse ¶

func (data *GetRangeTextRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetRunFontOnlineRequest ¶

type GetRunFontOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetRunFontOnlineRequest contains request data for WordsApiService.GetRunFontOnline method.

func (*GetRunFontOnlineRequest) CreateRequestData ¶

func (data *GetRunFontOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetRunFontOnlineRequest) CreateResponse ¶

func (data *GetRunFontOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetRunFontRequest ¶

type GetRunFontRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetRunFontRequest contains request data for WordsApiService.GetRunFont method.

func (*GetRunFontRequest) CreateRequestData ¶

func (data *GetRunFontRequest) CreateRequestData() (RequestData, error)

func (*GetRunFontRequest) CreateResponse ¶

func (data *GetRunFontRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetRunOnlineRequest ¶

type GetRunOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetRunOnlineRequest contains request data for WordsApiService.GetRunOnline method.

func (*GetRunOnlineRequest) CreateRequestData ¶

func (data *GetRunOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetRunOnlineRequest) CreateResponse ¶

func (data *GetRunOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetRunRequest ¶

type GetRunRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetRunRequest contains request data for WordsApiService.GetRun method.

func (*GetRunRequest) CreateRequestData ¶

func (data *GetRunRequest) CreateRequestData() (RequestData, error)

func (*GetRunRequest) CreateResponse ¶

func (data *GetRunRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetRunsOnlineRequest ¶

type GetRunsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetRunsOnlineRequest contains request data for WordsApiService.GetRunsOnline method.

func (*GetRunsOnlineRequest) CreateRequestData ¶

func (data *GetRunsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetRunsOnlineRequest) CreateResponse ¶

func (data *GetRunsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetRunsRequest ¶

type GetRunsRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetRunsRequest contains request data for WordsApiService.GetRuns method.

func (*GetRunsRequest) CreateRequestData ¶

func (data *GetRunsRequest) CreateRequestData() (RequestData, error)

func (*GetRunsRequest) CreateResponse ¶

func (data *GetRunsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetSectionOnlineRequest ¶

type GetSectionOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the section.
	SectionIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetSectionOnlineRequest contains request data for WordsApiService.GetSectionOnline method.

func (*GetSectionOnlineRequest) CreateRequestData ¶

func (data *GetSectionOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetSectionOnlineRequest) CreateResponse ¶

func (data *GetSectionOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetSectionPageSetupOnlineRequest ¶

type GetSectionPageSetupOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the section.
	SectionIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetSectionPageSetupOnlineRequest contains request data for WordsApiService.GetSectionPageSetupOnline method.

func (*GetSectionPageSetupOnlineRequest) CreateRequestData ¶

func (data *GetSectionPageSetupOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetSectionPageSetupOnlineRequest) CreateResponse ¶

func (data *GetSectionPageSetupOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetSectionPageSetupRequest ¶

type GetSectionPageSetupRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the section.
	SectionIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetSectionPageSetupRequest contains request data for WordsApiService.GetSectionPageSetup method.

func (*GetSectionPageSetupRequest) CreateRequestData ¶

func (data *GetSectionPageSetupRequest) CreateRequestData() (RequestData, error)

func (*GetSectionPageSetupRequest) CreateResponse ¶

func (data *GetSectionPageSetupRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetSectionRequest ¶

type GetSectionRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the section.
	SectionIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetSectionRequest contains request data for WordsApiService.GetSection method.

func (*GetSectionRequest) CreateRequestData ¶

func (data *GetSectionRequest) CreateRequestData() (RequestData, error)

func (*GetSectionRequest) CreateResponse ¶

func (data *GetSectionRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetSectionsOnlineRequest ¶

type GetSectionsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetSectionsOnlineRequest contains request data for WordsApiService.GetSectionsOnline method.

func (*GetSectionsOnlineRequest) CreateRequestData ¶

func (data *GetSectionsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetSectionsOnlineRequest) CreateResponse ¶

func (data *GetSectionsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetSectionsRequest ¶

type GetSectionsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetSectionsRequest contains request data for WordsApiService.GetSections method.

func (*GetSectionsRequest) CreateRequestData ¶

func (data *GetSectionsRequest) CreateRequestData() (RequestData, error)

func (*GetSectionsRequest) CreateResponse ¶

func (data *GetSectionsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetStructuredDocumentTagOnlineRequest ¶

type GetStructuredDocumentTagOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetStructuredDocumentTagOnlineRequest contains request data for WordsApiService.GetStructuredDocumentTagOnline method.

func (*GetStructuredDocumentTagOnlineRequest) CreateRequestData ¶

func (data *GetStructuredDocumentTagOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetStructuredDocumentTagOnlineRequest) CreateResponse ¶

func (data *GetStructuredDocumentTagOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetStructuredDocumentTagRequest ¶

type GetStructuredDocumentTagRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetStructuredDocumentTagRequest contains request data for WordsApiService.GetStructuredDocumentTag method.

func (*GetStructuredDocumentTagRequest) CreateRequestData ¶

func (data *GetStructuredDocumentTagRequest) CreateRequestData() (RequestData, error)

func (*GetStructuredDocumentTagRequest) CreateResponse ¶

func (data *GetStructuredDocumentTagRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetStructuredDocumentTagsOnlineRequest ¶

type GetStructuredDocumentTagsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetStructuredDocumentTagsOnlineRequest contains request data for WordsApiService.GetStructuredDocumentTagsOnline method.

func (*GetStructuredDocumentTagsOnlineRequest) CreateRequestData ¶

func (data *GetStructuredDocumentTagsOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetStructuredDocumentTagsOnlineRequest) CreateResponse ¶

func (data *GetStructuredDocumentTagsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetStructuredDocumentTagsRequest ¶

type GetStructuredDocumentTagsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetStructuredDocumentTagsRequest contains request data for WordsApiService.GetStructuredDocumentTags method.

func (*GetStructuredDocumentTagsRequest) CreateRequestData ¶

func (data *GetStructuredDocumentTagsRequest) CreateRequestData() (RequestData, error)

func (*GetStructuredDocumentTagsRequest) CreateResponse ¶

func (data *GetStructuredDocumentTagsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetStyleFromDocumentElementOnlineRequest ¶

type GetStyleFromDocumentElementOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the node in the document tree, that supports styles: ParagraphFormat, List, ListLevel, Table.
	StyledNodePath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetStyleFromDocumentElementOnlineRequest contains request data for WordsApiService.GetStyleFromDocumentElementOnline method.

func (*GetStyleFromDocumentElementOnlineRequest) CreateRequestData ¶

func (data *GetStyleFromDocumentElementOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetStyleFromDocumentElementOnlineRequest) CreateResponse ¶

func (data *GetStyleFromDocumentElementOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetStyleFromDocumentElementRequest ¶

type GetStyleFromDocumentElementRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the node in the document tree, that supports styles: ParagraphFormat, List, ListLevel, Table.
	StyledNodePath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetStyleFromDocumentElementRequest contains request data for WordsApiService.GetStyleFromDocumentElement method.

func (*GetStyleFromDocumentElementRequest) CreateRequestData ¶

func (data *GetStyleFromDocumentElementRequest) CreateRequestData() (RequestData, error)

func (*GetStyleFromDocumentElementRequest) CreateResponse ¶

func (data *GetStyleFromDocumentElementRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetStyleOnlineRequest ¶

type GetStyleOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The name of the style.
	StyleName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetStyleOnlineRequest contains request data for WordsApiService.GetStyleOnline method.

func (*GetStyleOnlineRequest) CreateRequestData ¶

func (data *GetStyleOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetStyleOnlineRequest) CreateResponse ¶

func (data *GetStyleOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetStyleRequest ¶

type GetStyleRequest struct {
	// The filename of the input document.
	Name *string
	// The name of the style.
	StyleName *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetStyleRequest contains request data for WordsApiService.GetStyle method.

func (*GetStyleRequest) CreateRequestData ¶

func (data *GetStyleRequest) CreateRequestData() (RequestData, error)

func (*GetStyleRequest) CreateResponse ¶

func (data *GetStyleRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetStylesOnlineRequest ¶

type GetStylesOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetStylesOnlineRequest contains request data for WordsApiService.GetStylesOnline method.

func (*GetStylesOnlineRequest) CreateRequestData ¶

func (data *GetStylesOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetStylesOnlineRequest) CreateResponse ¶

func (data *GetStylesOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetStylesRequest ¶

type GetStylesRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetStylesRequest contains request data for WordsApiService.GetStyles method.

func (*GetStylesRequest) CreateRequestData ¶

func (data *GetStylesRequest) CreateRequestData() (RequestData, error)

func (*GetStylesRequest) CreateResponse ¶

func (data *GetStylesRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTableCellFormatOnlineRequest ¶

type GetTableCellFormatOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the table row in the document tree.
	TableRowPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTableCellFormatOnlineRequest contains request data for WordsApiService.GetTableCellFormatOnline method.

func (*GetTableCellFormatOnlineRequest) CreateRequestData ¶

func (data *GetTableCellFormatOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetTableCellFormatOnlineRequest) CreateResponse ¶

func (data *GetTableCellFormatOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTableCellFormatRequest ¶

type GetTableCellFormatRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the table row in the document tree.
	TableRowPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTableCellFormatRequest contains request data for WordsApiService.GetTableCellFormat method.

func (*GetTableCellFormatRequest) CreateRequestData ¶

func (data *GetTableCellFormatRequest) CreateRequestData() (RequestData, error)

func (*GetTableCellFormatRequest) CreateResponse ¶

func (data *GetTableCellFormatRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTableCellOnlineRequest ¶

type GetTableCellOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the table row in the document tree.
	TableRowPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTableCellOnlineRequest contains request data for WordsApiService.GetTableCellOnline method.

func (*GetTableCellOnlineRequest) CreateRequestData ¶

func (data *GetTableCellOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetTableCellOnlineRequest) CreateResponse ¶

func (data *GetTableCellOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTableCellRequest ¶

type GetTableCellRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the table row in the document tree.
	TableRowPath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTableCellRequest contains request data for WordsApiService.GetTableCell method.

func (*GetTableCellRequest) CreateRequestData ¶

func (data *GetTableCellRequest) CreateRequestData() (RequestData, error)

func (*GetTableCellRequest) CreateResponse ¶

func (data *GetTableCellRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTableOnlineRequest ¶

type GetTableOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTableOnlineRequest contains request data for WordsApiService.GetTableOnline method.

func (*GetTableOnlineRequest) CreateRequestData ¶

func (data *GetTableOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetTableOnlineRequest) CreateResponse ¶

func (data *GetTableOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTablePropertiesOnlineRequest ¶

type GetTablePropertiesOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTablePropertiesOnlineRequest contains request data for WordsApiService.GetTablePropertiesOnline method.

func (*GetTablePropertiesOnlineRequest) CreateRequestData ¶

func (data *GetTablePropertiesOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetTablePropertiesOnlineRequest) CreateResponse ¶

func (data *GetTablePropertiesOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTablePropertiesRequest ¶

type GetTablePropertiesRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTablePropertiesRequest contains request data for WordsApiService.GetTableProperties method.

func (*GetTablePropertiesRequest) CreateRequestData ¶

func (data *GetTablePropertiesRequest) CreateRequestData() (RequestData, error)

func (*GetTablePropertiesRequest) CreateResponse ¶

func (data *GetTablePropertiesRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTableRequest ¶

type GetTableRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTableRequest contains request data for WordsApiService.GetTable method.

func (*GetTableRequest) CreateRequestData ¶

func (data *GetTableRequest) CreateRequestData() (RequestData, error)

func (*GetTableRequest) CreateResponse ¶

func (data *GetTableRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTableRowFormatOnlineRequest ¶

type GetTableRowFormatOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the table in the document tree.
	TablePath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTableRowFormatOnlineRequest contains request data for WordsApiService.GetTableRowFormatOnline method.

func (*GetTableRowFormatOnlineRequest) CreateRequestData ¶

func (data *GetTableRowFormatOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetTableRowFormatOnlineRequest) CreateResponse ¶

func (data *GetTableRowFormatOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTableRowFormatRequest ¶

type GetTableRowFormatRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the table in the document tree.
	TablePath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTableRowFormatRequest contains request data for WordsApiService.GetTableRowFormat method.

func (*GetTableRowFormatRequest) CreateRequestData ¶

func (data *GetTableRowFormatRequest) CreateRequestData() (RequestData, error)

func (*GetTableRowFormatRequest) CreateResponse ¶

func (data *GetTableRowFormatRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTableRowOnlineRequest ¶

type GetTableRowOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the table in the document tree.
	TablePath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTableRowOnlineRequest contains request data for WordsApiService.GetTableRowOnline method.

func (*GetTableRowOnlineRequest) CreateRequestData ¶

func (data *GetTableRowOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetTableRowOnlineRequest) CreateResponse ¶

func (data *GetTableRowOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTableRowRequest ¶

type GetTableRowRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the table in the document tree.
	TablePath *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTableRowRequest contains request data for WordsApiService.GetTableRow method.

func (*GetTableRowRequest) CreateRequestData ¶

func (data *GetTableRowRequest) CreateRequestData() (RequestData, error)

func (*GetTableRowRequest) CreateResponse ¶

func (data *GetTableRowRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTablesOnlineRequest ¶

type GetTablesOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTablesOnlineRequest contains request data for WordsApiService.GetTablesOnline method.

func (*GetTablesOnlineRequest) CreateRequestData ¶

func (data *GetTablesOnlineRequest) CreateRequestData() (RequestData, error)

func (*GetTablesOnlineRequest) CreateResponse ¶

func (data *GetTablesOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GetTablesRequest ¶

type GetTablesRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

GetTablesRequest contains request data for WordsApiService.GetTables method.

func (*GetTablesRequest) CreateRequestData ¶

func (data *GetTablesRequest) CreateRequestData() (RequestData, error)

func (*GetTablesRequest) CreateResponse ¶

func (data *GetTablesRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type GifSaveOptionsData ¶

type GifSaveOptionsData struct {
	// Container class for gif save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for gif save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for gif save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for gif save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for gif save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for gif save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for gif save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for gif save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for gif save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for gif save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for gif save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for gif save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for gif save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for gif save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for gif save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for gif save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for gif save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for gif save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for gif save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for gif save options.
	HorizontalResolution *float64 `json:"HorizontalResolution,omitempty"`

	// Container class for gif save options.
	ImageBrightness *float64 `json:"ImageBrightness,omitempty"`

	// Container class for gif save options.
	ImageColorMode *string `json:"ImageColorMode,omitempty"`

	// Container class for gif save options.
	ImageContrast *float64 `json:"ImageContrast,omitempty"`

	// Container class for gif save options.
	PaperColor *string `json:"PaperColor,omitempty"`

	// Container class for gif save options.
	PixelFormat *string `json:"PixelFormat,omitempty"`

	// Container class for gif save options.
	Resolution *float64 `json:"Resolution,omitempty"`

	// Container class for gif save options.
	Scale *float64 `json:"Scale,omitempty"`

	// Container class for gif save options.
	UseAntiAliasing *bool `json:"UseAntiAliasing,omitempty"`

	// Container class for gif save options.
	UseHighQualityRendering *bool `json:"UseHighQualityRendering,omitempty"`

	// Container class for gif save options.
	VerticalResolution *float64 `json:"VerticalResolution,omitempty"`

	// Container class for gif save options.
	ImageHeight *int32 `json:"ImageHeight,omitempty"`

	// Container class for gif save options.
	ImageWidth *int32 `json:"ImageWidth,omitempty"`

	// Container class for gif save options.
	UseGdiEmfRenderer *bool `json:"UseGdiEmfRenderer,omitempty"`

	// Container class for gif save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*GifSaveOptionsData) CollectFilesContent ¶

func (obj *GifSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*GifSaveOptionsData) Deserialize ¶

func (obj *GifSaveOptionsData) Deserialize(json map[string]interface{})

func (*GifSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *GifSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*GifSaveOptionsData) GetColorMode ¶

func (obj *GifSaveOptionsData) GetColorMode() *string

func (*GifSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *GifSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*GifSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *GifSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*GifSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *GifSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*GifSaveOptionsData) GetDmlRenderingMode ¶

func (obj *GifSaveOptionsData) GetDmlRenderingMode() *string

func (*GifSaveOptionsData) GetFileName ¶

func (obj *GifSaveOptionsData) GetFileName() *string

func (*GifSaveOptionsData) GetHorizontalResolution ¶

func (obj *GifSaveOptionsData) GetHorizontalResolution() *float64

func (*GifSaveOptionsData) GetImageBrightness ¶

func (obj *GifSaveOptionsData) GetImageBrightness() *float64

func (*GifSaveOptionsData) GetImageColorMode ¶

func (obj *GifSaveOptionsData) GetImageColorMode() *string

func (*GifSaveOptionsData) GetImageContrast ¶

func (obj *GifSaveOptionsData) GetImageContrast() *float64

func (*GifSaveOptionsData) GetImageHeight ¶

func (obj *GifSaveOptionsData) GetImageHeight() *int32

func (*GifSaveOptionsData) GetImageWidth ¶

func (obj *GifSaveOptionsData) GetImageWidth() *int32

func (*GifSaveOptionsData) GetImlRenderingMode ¶

func (obj *GifSaveOptionsData) GetImlRenderingMode() *string

func (*GifSaveOptionsData) GetJpegQuality ¶

func (obj *GifSaveOptionsData) GetJpegQuality() *int32

func (*GifSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *GifSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*GifSaveOptionsData) GetNumeralFormat ¶

func (obj *GifSaveOptionsData) GetNumeralFormat() *string

func (*GifSaveOptionsData) GetOptimizeOutput ¶

func (obj *GifSaveOptionsData) GetOptimizeOutput() *bool

func (*GifSaveOptionsData) GetPageCount ¶

func (obj *GifSaveOptionsData) GetPageCount() *int32

func (*GifSaveOptionsData) GetPageIndex ¶

func (obj *GifSaveOptionsData) GetPageIndex() *int32

func (*GifSaveOptionsData) GetPaperColor ¶

func (obj *GifSaveOptionsData) GetPaperColor() *string

func (*GifSaveOptionsData) GetPixelFormat ¶

func (obj *GifSaveOptionsData) GetPixelFormat() *string

func (*GifSaveOptionsData) GetResolution ¶

func (obj *GifSaveOptionsData) GetResolution() *float64

func (*GifSaveOptionsData) GetSaveFormat ¶

func (obj *GifSaveOptionsData) GetSaveFormat() *string

func (*GifSaveOptionsData) GetScale ¶

func (obj *GifSaveOptionsData) GetScale() *float64

func (*GifSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *GifSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*GifSaveOptionsData) GetUpdateFields ¶

func (obj *GifSaveOptionsData) GetUpdateFields() *bool

func (*GifSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *GifSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*GifSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *GifSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*GifSaveOptionsData) GetUseAntiAliasing ¶

func (obj *GifSaveOptionsData) GetUseAntiAliasing() *bool

func (*GifSaveOptionsData) GetUseGdiEmfRenderer ¶

func (obj *GifSaveOptionsData) GetUseGdiEmfRenderer() *bool

func (*GifSaveOptionsData) GetUseHighQualityRendering ¶

func (obj *GifSaveOptionsData) GetUseHighQualityRendering() *bool

func (*GifSaveOptionsData) GetVerticalResolution ¶

func (obj *GifSaveOptionsData) GetVerticalResolution() *float64

func (*GifSaveOptionsData) GetZipOutput ¶

func (obj *GifSaveOptionsData) GetZipOutput() *bool

func (*GifSaveOptionsData) Initialize ¶

func (obj *GifSaveOptionsData) Initialize()

func (GifSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (GifSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (GifSaveOptionsData) IsGifSaveOptionsData ¶

func (GifSaveOptionsData) IsGifSaveOptionsData() bool

func (GifSaveOptionsData) IsImageSaveOptionsData ¶

func (GifSaveOptionsData) IsImageSaveOptionsData() bool

func (GifSaveOptionsData) IsSaveOptionsData ¶

func (GifSaveOptionsData) IsSaveOptionsData() bool

func (*GifSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *GifSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*GifSaveOptionsData) SetColorMode ¶

func (obj *GifSaveOptionsData) SetColorMode(value *string)

func (*GifSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *GifSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*GifSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *GifSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*GifSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *GifSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*GifSaveOptionsData) SetDmlRenderingMode ¶

func (obj *GifSaveOptionsData) SetDmlRenderingMode(value *string)

func (*GifSaveOptionsData) SetFileName ¶

func (obj *GifSaveOptionsData) SetFileName(value *string)

func (*GifSaveOptionsData) SetHorizontalResolution ¶

func (obj *GifSaveOptionsData) SetHorizontalResolution(value *float64)

func (*GifSaveOptionsData) SetImageBrightness ¶

func (obj *GifSaveOptionsData) SetImageBrightness(value *float64)

func (*GifSaveOptionsData) SetImageColorMode ¶

func (obj *GifSaveOptionsData) SetImageColorMode(value *string)

func (*GifSaveOptionsData) SetImageContrast ¶

func (obj *GifSaveOptionsData) SetImageContrast(value *float64)

func (*GifSaveOptionsData) SetImageHeight ¶

func (obj *GifSaveOptionsData) SetImageHeight(value *int32)

func (*GifSaveOptionsData) SetImageWidth ¶

func (obj *GifSaveOptionsData) SetImageWidth(value *int32)

func (*GifSaveOptionsData) SetImlRenderingMode ¶

func (obj *GifSaveOptionsData) SetImlRenderingMode(value *string)

func (*GifSaveOptionsData) SetJpegQuality ¶

func (obj *GifSaveOptionsData) SetJpegQuality(value *int32)

func (*GifSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *GifSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*GifSaveOptionsData) SetNumeralFormat ¶

func (obj *GifSaveOptionsData) SetNumeralFormat(value *string)

func (*GifSaveOptionsData) SetOptimizeOutput ¶

func (obj *GifSaveOptionsData) SetOptimizeOutput(value *bool)

func (*GifSaveOptionsData) SetPageCount ¶

func (obj *GifSaveOptionsData) SetPageCount(value *int32)

func (*GifSaveOptionsData) SetPageIndex ¶

func (obj *GifSaveOptionsData) SetPageIndex(value *int32)

func (*GifSaveOptionsData) SetPaperColor ¶

func (obj *GifSaveOptionsData) SetPaperColor(value *string)

func (*GifSaveOptionsData) SetPixelFormat ¶

func (obj *GifSaveOptionsData) SetPixelFormat(value *string)

func (*GifSaveOptionsData) SetResolution ¶

func (obj *GifSaveOptionsData) SetResolution(value *float64)

func (*GifSaveOptionsData) SetSaveFormat ¶

func (obj *GifSaveOptionsData) SetSaveFormat(value *string)

func (*GifSaveOptionsData) SetScale ¶

func (obj *GifSaveOptionsData) SetScale(value *float64)

func (*GifSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *GifSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*GifSaveOptionsData) SetUpdateFields ¶

func (obj *GifSaveOptionsData) SetUpdateFields(value *bool)

func (*GifSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *GifSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*GifSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *GifSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*GifSaveOptionsData) SetUseAntiAliasing ¶

func (obj *GifSaveOptionsData) SetUseAntiAliasing(value *bool)

func (*GifSaveOptionsData) SetUseGdiEmfRenderer ¶

func (obj *GifSaveOptionsData) SetUseGdiEmfRenderer(value *bool)

func (*GifSaveOptionsData) SetUseHighQualityRendering ¶

func (obj *GifSaveOptionsData) SetUseHighQualityRendering(value *bool)

func (*GifSaveOptionsData) SetVerticalResolution ¶

func (obj *GifSaveOptionsData) SetVerticalResolution(value *float64)

func (*GifSaveOptionsData) SetZipOutput ¶

func (obj *GifSaveOptionsData) SetZipOutput(value *bool)

func (*GifSaveOptionsData) Validate ¶

func (obj *GifSaveOptionsData) Validate() error

type HeaderFooter ¶

type HeaderFooter struct {
	// DTO container with a section element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a section element.
	Type *string `json:"Type,omitempty"`

	// DTO container with a section element.
	ChildNodes []INodeLink `json:"ChildNodes,omitempty"`

	// DTO container with a section element.
	Paragraphs ILinkElement `json:"Paragraphs,omitempty"`

	// DTO container with a section element.
	DrawingObjects ILinkElement `json:"DrawingObjects,omitempty"`
}

func (*HeaderFooter) CollectFilesContent ¶

func (obj *HeaderFooter) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*HeaderFooter) Deserialize ¶

func (obj *HeaderFooter) Deserialize(json map[string]interface{})

func (*HeaderFooter) GetChildNodes ¶

func (obj *HeaderFooter) GetChildNodes() []INodeLink

func (*HeaderFooter) GetDrawingObjects ¶

func (obj *HeaderFooter) GetDrawingObjects() ILinkElement
func (obj *HeaderFooter) GetLink() IWordsApiLink

func (*HeaderFooter) GetParagraphs ¶

func (obj *HeaderFooter) GetParagraphs() ILinkElement

func (*HeaderFooter) GetType ¶

func (obj *HeaderFooter) GetType() *string

func (*HeaderFooter) Initialize ¶

func (obj *HeaderFooter) Initialize()

func (HeaderFooter) IsHeaderFooter ¶

func (HeaderFooter) IsHeaderFooter() bool
func (HeaderFooter) IsHeaderFooterLink() bool

func (HeaderFooter) IsLinkElement ¶

func (HeaderFooter) IsLinkElement() bool

func (*HeaderFooter) SetChildNodes ¶

func (obj *HeaderFooter) SetChildNodes(value []INodeLink)

func (*HeaderFooter) SetDrawingObjects ¶

func (obj *HeaderFooter) SetDrawingObjects(value ILinkElement)
func (obj *HeaderFooter) SetLink(value IWordsApiLink)

func (*HeaderFooter) SetParagraphs ¶

func (obj *HeaderFooter) SetParagraphs(value ILinkElement)

func (*HeaderFooter) SetType ¶

func (obj *HeaderFooter) SetType(value *string)

func (*HeaderFooter) Validate ¶

func (obj *HeaderFooter) Validate() error
type HeaderFooterLink struct {
	// HeaderFooter link element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// HeaderFooter link element.
	Type *string `json:"Type,omitempty"`
}

func (*HeaderFooterLink) CollectFilesContent ¶

func (obj *HeaderFooterLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*HeaderFooterLink) Deserialize ¶

func (obj *HeaderFooterLink) Deserialize(json map[string]interface{})
func (obj *HeaderFooterLink) GetLink() IWordsApiLink

func (*HeaderFooterLink) GetType ¶

func (obj *HeaderFooterLink) GetType() *string

func (*HeaderFooterLink) Initialize ¶

func (obj *HeaderFooterLink) Initialize()
func (HeaderFooterLink) IsHeaderFooterLink() bool

func (HeaderFooterLink) IsLinkElement ¶

func (HeaderFooterLink) IsLinkElement() bool
func (obj *HeaderFooterLink) SetLink(value IWordsApiLink)

func (*HeaderFooterLink) SetType ¶

func (obj *HeaderFooterLink) SetType(value *string)

func (*HeaderFooterLink) Validate ¶

func (obj *HeaderFooterLink) Validate() error

type HeaderFooterLinkCollection ¶

type HeaderFooterLinkCollection struct {
	// The collection of HeaderFooter's links.
	Link IWordsApiLink `json:"Link,omitempty"`

	// The collection of HeaderFooter's links.
	List []IHeaderFooterLink `json:"List,omitempty"`
}

func (*HeaderFooterLinkCollection) CollectFilesContent ¶

func (obj *HeaderFooterLinkCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*HeaderFooterLinkCollection) Deserialize ¶

func (obj *HeaderFooterLinkCollection) Deserialize(json map[string]interface{})

func (*HeaderFooterLinkCollection) GetList ¶

func (*HeaderFooterLinkCollection) Initialize ¶

func (obj *HeaderFooterLinkCollection) Initialize()

func (HeaderFooterLinkCollection) IsHeaderFooterLinkCollection ¶

func (HeaderFooterLinkCollection) IsHeaderFooterLinkCollection() bool

func (HeaderFooterLinkCollection) IsLinkElement ¶

func (HeaderFooterLinkCollection) IsLinkElement() bool
func (obj *HeaderFooterLinkCollection) SetLink(value IWordsApiLink)

func (*HeaderFooterLinkCollection) SetList ¶

func (obj *HeaderFooterLinkCollection) SetList(value []IHeaderFooterLink)

func (*HeaderFooterLinkCollection) Validate ¶

func (obj *HeaderFooterLinkCollection) Validate() error

type HeaderFooterResponse ¶

type HeaderFooterResponse struct {
	// The REST response with a HeaderFooter.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/headersfooters/{0}" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a HeaderFooter.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/headersfooters/{0}" REST API requests.
	HeaderFooter IHeaderFooter `json:"HeaderFooter,omitempty"`
}

func (*HeaderFooterResponse) CollectFilesContent ¶

func (obj *HeaderFooterResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*HeaderFooterResponse) Deserialize ¶

func (obj *HeaderFooterResponse) Deserialize(json map[string]interface{})

func (*HeaderFooterResponse) GetHeaderFooter ¶

func (obj *HeaderFooterResponse) GetHeaderFooter() IHeaderFooter

func (*HeaderFooterResponse) GetRequestId ¶

func (obj *HeaderFooterResponse) GetRequestId() *string

func (*HeaderFooterResponse) Initialize ¶

func (obj *HeaderFooterResponse) Initialize()

func (HeaderFooterResponse) IsHeaderFooterResponse ¶

func (HeaderFooterResponse) IsHeaderFooterResponse() bool

func (HeaderFooterResponse) IsWordsResponse ¶

func (HeaderFooterResponse) IsWordsResponse() bool

func (*HeaderFooterResponse) SetHeaderFooter ¶

func (obj *HeaderFooterResponse) SetHeaderFooter(value IHeaderFooter)

func (*HeaderFooterResponse) SetRequestId ¶

func (obj *HeaderFooterResponse) SetRequestId(value *string)

func (*HeaderFooterResponse) Validate ¶

func (obj *HeaderFooterResponse) Validate() error

type HeaderFootersResponse ¶

type HeaderFootersResponse struct {
	// The REST response with a collection of HeaderFooter elements.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/headersfooters" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of HeaderFooter elements.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/headersfooters" REST API requests.
	HeaderFooters IHeaderFooterLinkCollection `json:"HeaderFooters,omitempty"`
}

func (*HeaderFootersResponse) CollectFilesContent ¶

func (obj *HeaderFootersResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*HeaderFootersResponse) Deserialize ¶

func (obj *HeaderFootersResponse) Deserialize(json map[string]interface{})

func (*HeaderFootersResponse) GetHeaderFooters ¶

func (obj *HeaderFootersResponse) GetHeaderFooters() IHeaderFooterLinkCollection

func (*HeaderFootersResponse) GetRequestId ¶

func (obj *HeaderFootersResponse) GetRequestId() *string

func (*HeaderFootersResponse) Initialize ¶

func (obj *HeaderFootersResponse) Initialize()

func (HeaderFootersResponse) IsHeaderFootersResponse ¶

func (HeaderFootersResponse) IsHeaderFootersResponse() bool

func (HeaderFootersResponse) IsWordsResponse ¶

func (HeaderFootersResponse) IsWordsResponse() bool

func (*HeaderFootersResponse) SetHeaderFooters ¶

func (obj *HeaderFootersResponse) SetHeaderFooters(value IHeaderFooterLinkCollection)

func (*HeaderFootersResponse) SetRequestId ¶

func (obj *HeaderFootersResponse) SetRequestId(value *string)

func (*HeaderFootersResponse) Validate ¶

func (obj *HeaderFootersResponse) Validate() error

type HtmlFixedSaveOptionsData ¶

type HtmlFixedSaveOptionsData struct {
	// Container class for fixed html save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for fixed html save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for fixed html save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for fixed html save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for fixed html save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for fixed html save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for fixed html save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for fixed html save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for fixed html save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for fixed html save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for fixed html save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for fixed html save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for fixed html save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for fixed html save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for fixed html save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for fixed html save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for fixed html save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for fixed html save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for fixed html save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for fixed html save options.
	CssClassNamesPrefix *string `json:"CssClassNamesPrefix,omitempty"`

	// Container class for fixed html save options.
	Encoding *string `json:"Encoding,omitempty"`

	// Container class for fixed html save options.
	ExportEmbeddedCss *bool `json:"ExportEmbeddedCss,omitempty"`

	// Container class for fixed html save options.
	ExportEmbeddedFonts *bool `json:"ExportEmbeddedFonts,omitempty"`

	// Container class for fixed html save options.
	ExportEmbeddedImages *bool `json:"ExportEmbeddedImages,omitempty"`

	// Container class for fixed html save options.
	ExportFormFields *bool `json:"ExportFormFields,omitempty"`

	// Container class for fixed html save options.
	FontFormat *string `json:"FontFormat,omitempty"`

	// Container class for fixed html save options.
	PageHorizontalAlignment *string `json:"PageHorizontalAlignment,omitempty"`

	// Container class for fixed html save options.
	PageMargins *float64 `json:"PageMargins,omitempty"`

	// Container class for fixed html save options.
	ResourcesFolder *string `json:"ResourcesFolder,omitempty"`

	// Container class for fixed html save options.
	ResourcesFolderAlias *string `json:"ResourcesFolderAlias,omitempty"`

	// Container class for fixed html save options.
	SaveFontFaceCssSeparately *bool `json:"SaveFontFaceCssSeparately,omitempty"`

	// Container class for fixed html save options.
	ShowPageBorder *bool `json:"ShowPageBorder,omitempty"`

	// Container class for fixed html save options.
	UseTargetMachineFonts *bool `json:"UseTargetMachineFonts,omitempty"`

	// Container class for fixed html save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*HtmlFixedSaveOptionsData) CollectFilesContent ¶

func (obj *HtmlFixedSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*HtmlFixedSaveOptionsData) Deserialize ¶

func (obj *HtmlFixedSaveOptionsData) Deserialize(json map[string]interface{})

func (*HtmlFixedSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *HtmlFixedSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*HtmlFixedSaveOptionsData) GetColorMode ¶

func (obj *HtmlFixedSaveOptionsData) GetColorMode() *string

func (*HtmlFixedSaveOptionsData) GetCssClassNamesPrefix ¶

func (obj *HtmlFixedSaveOptionsData) GetCssClassNamesPrefix() *string

func (*HtmlFixedSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *HtmlFixedSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*HtmlFixedSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *HtmlFixedSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*HtmlFixedSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *HtmlFixedSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*HtmlFixedSaveOptionsData) GetDmlRenderingMode ¶

func (obj *HtmlFixedSaveOptionsData) GetDmlRenderingMode() *string

func (*HtmlFixedSaveOptionsData) GetEncoding ¶

func (obj *HtmlFixedSaveOptionsData) GetEncoding() *string

func (*HtmlFixedSaveOptionsData) GetExportEmbeddedCss ¶

func (obj *HtmlFixedSaveOptionsData) GetExportEmbeddedCss() *bool

func (*HtmlFixedSaveOptionsData) GetExportEmbeddedFonts ¶

func (obj *HtmlFixedSaveOptionsData) GetExportEmbeddedFonts() *bool

func (*HtmlFixedSaveOptionsData) GetExportEmbeddedImages ¶

func (obj *HtmlFixedSaveOptionsData) GetExportEmbeddedImages() *bool

func (*HtmlFixedSaveOptionsData) GetExportFormFields ¶

func (obj *HtmlFixedSaveOptionsData) GetExportFormFields() *bool

func (*HtmlFixedSaveOptionsData) GetFileName ¶

func (obj *HtmlFixedSaveOptionsData) GetFileName() *string

func (*HtmlFixedSaveOptionsData) GetFontFormat ¶

func (obj *HtmlFixedSaveOptionsData) GetFontFormat() *string

func (*HtmlFixedSaveOptionsData) GetImlRenderingMode ¶

func (obj *HtmlFixedSaveOptionsData) GetImlRenderingMode() *string

func (*HtmlFixedSaveOptionsData) GetJpegQuality ¶

func (obj *HtmlFixedSaveOptionsData) GetJpegQuality() *int32

func (*HtmlFixedSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *HtmlFixedSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*HtmlFixedSaveOptionsData) GetNumeralFormat ¶

func (obj *HtmlFixedSaveOptionsData) GetNumeralFormat() *string

func (*HtmlFixedSaveOptionsData) GetOptimizeOutput ¶

func (obj *HtmlFixedSaveOptionsData) GetOptimizeOutput() *bool

func (*HtmlFixedSaveOptionsData) GetPageCount ¶

func (obj *HtmlFixedSaveOptionsData) GetPageCount() *int32

func (*HtmlFixedSaveOptionsData) GetPageHorizontalAlignment ¶

func (obj *HtmlFixedSaveOptionsData) GetPageHorizontalAlignment() *string

func (*HtmlFixedSaveOptionsData) GetPageIndex ¶

func (obj *HtmlFixedSaveOptionsData) GetPageIndex() *int32

func (*HtmlFixedSaveOptionsData) GetPageMargins ¶

func (obj *HtmlFixedSaveOptionsData) GetPageMargins() *float64

func (*HtmlFixedSaveOptionsData) GetResourcesFolder ¶

func (obj *HtmlFixedSaveOptionsData) GetResourcesFolder() *string

func (*HtmlFixedSaveOptionsData) GetResourcesFolderAlias ¶

func (obj *HtmlFixedSaveOptionsData) GetResourcesFolderAlias() *string

func (*HtmlFixedSaveOptionsData) GetSaveFontFaceCssSeparately ¶

func (obj *HtmlFixedSaveOptionsData) GetSaveFontFaceCssSeparately() *bool

func (*HtmlFixedSaveOptionsData) GetSaveFormat ¶

func (obj *HtmlFixedSaveOptionsData) GetSaveFormat() *string

func (*HtmlFixedSaveOptionsData) GetShowPageBorder ¶

func (obj *HtmlFixedSaveOptionsData) GetShowPageBorder() *bool

func (*HtmlFixedSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *HtmlFixedSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*HtmlFixedSaveOptionsData) GetUpdateFields ¶

func (obj *HtmlFixedSaveOptionsData) GetUpdateFields() *bool

func (*HtmlFixedSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *HtmlFixedSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*HtmlFixedSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *HtmlFixedSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*HtmlFixedSaveOptionsData) GetUseTargetMachineFonts ¶

func (obj *HtmlFixedSaveOptionsData) GetUseTargetMachineFonts() *bool

func (*HtmlFixedSaveOptionsData) GetZipOutput ¶

func (obj *HtmlFixedSaveOptionsData) GetZipOutput() *bool

func (*HtmlFixedSaveOptionsData) Initialize ¶

func (obj *HtmlFixedSaveOptionsData) Initialize()

func (HtmlFixedSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (HtmlFixedSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (HtmlFixedSaveOptionsData) IsHtmlFixedSaveOptionsData ¶

func (HtmlFixedSaveOptionsData) IsHtmlFixedSaveOptionsData() bool

func (HtmlFixedSaveOptionsData) IsSaveOptionsData ¶

func (HtmlFixedSaveOptionsData) IsSaveOptionsData() bool

func (*HtmlFixedSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *HtmlFixedSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*HtmlFixedSaveOptionsData) SetColorMode ¶

func (obj *HtmlFixedSaveOptionsData) SetColorMode(value *string)

func (*HtmlFixedSaveOptionsData) SetCssClassNamesPrefix ¶

func (obj *HtmlFixedSaveOptionsData) SetCssClassNamesPrefix(value *string)

func (*HtmlFixedSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *HtmlFixedSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*HtmlFixedSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *HtmlFixedSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*HtmlFixedSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *HtmlFixedSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*HtmlFixedSaveOptionsData) SetDmlRenderingMode ¶

func (obj *HtmlFixedSaveOptionsData) SetDmlRenderingMode(value *string)

func (*HtmlFixedSaveOptionsData) SetEncoding ¶

func (obj *HtmlFixedSaveOptionsData) SetEncoding(value *string)

func (*HtmlFixedSaveOptionsData) SetExportEmbeddedCss ¶

func (obj *HtmlFixedSaveOptionsData) SetExportEmbeddedCss(value *bool)

func (*HtmlFixedSaveOptionsData) SetExportEmbeddedFonts ¶

func (obj *HtmlFixedSaveOptionsData) SetExportEmbeddedFonts(value *bool)

func (*HtmlFixedSaveOptionsData) SetExportEmbeddedImages ¶

func (obj *HtmlFixedSaveOptionsData) SetExportEmbeddedImages(value *bool)

func (*HtmlFixedSaveOptionsData) SetExportFormFields ¶

func (obj *HtmlFixedSaveOptionsData) SetExportFormFields(value *bool)

func (*HtmlFixedSaveOptionsData) SetFileName ¶

func (obj *HtmlFixedSaveOptionsData) SetFileName(value *string)

func (*HtmlFixedSaveOptionsData) SetFontFormat ¶

func (obj *HtmlFixedSaveOptionsData) SetFontFormat(value *string)

func (*HtmlFixedSaveOptionsData) SetImlRenderingMode ¶

func (obj *HtmlFixedSaveOptionsData) SetImlRenderingMode(value *string)

func (*HtmlFixedSaveOptionsData) SetJpegQuality ¶

func (obj *HtmlFixedSaveOptionsData) SetJpegQuality(value *int32)

func (*HtmlFixedSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *HtmlFixedSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*HtmlFixedSaveOptionsData) SetNumeralFormat ¶

func (obj *HtmlFixedSaveOptionsData) SetNumeralFormat(value *string)

func (*HtmlFixedSaveOptionsData) SetOptimizeOutput ¶

func (obj *HtmlFixedSaveOptionsData) SetOptimizeOutput(value *bool)

func (*HtmlFixedSaveOptionsData) SetPageCount ¶

func (obj *HtmlFixedSaveOptionsData) SetPageCount(value *int32)

func (*HtmlFixedSaveOptionsData) SetPageHorizontalAlignment ¶

func (obj *HtmlFixedSaveOptionsData) SetPageHorizontalAlignment(value *string)

func (*HtmlFixedSaveOptionsData) SetPageIndex ¶

func (obj *HtmlFixedSaveOptionsData) SetPageIndex(value *int32)

func (*HtmlFixedSaveOptionsData) SetPageMargins ¶

func (obj *HtmlFixedSaveOptionsData) SetPageMargins(value *float64)

func (*HtmlFixedSaveOptionsData) SetResourcesFolder ¶

func (obj *HtmlFixedSaveOptionsData) SetResourcesFolder(value *string)

func (*HtmlFixedSaveOptionsData) SetResourcesFolderAlias ¶

func (obj *HtmlFixedSaveOptionsData) SetResourcesFolderAlias(value *string)

func (*HtmlFixedSaveOptionsData) SetSaveFontFaceCssSeparately ¶

func (obj *HtmlFixedSaveOptionsData) SetSaveFontFaceCssSeparately(value *bool)

func (*HtmlFixedSaveOptionsData) SetSaveFormat ¶

func (obj *HtmlFixedSaveOptionsData) SetSaveFormat(value *string)

func (*HtmlFixedSaveOptionsData) SetShowPageBorder ¶

func (obj *HtmlFixedSaveOptionsData) SetShowPageBorder(value *bool)

func (*HtmlFixedSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *HtmlFixedSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*HtmlFixedSaveOptionsData) SetUpdateFields ¶

func (obj *HtmlFixedSaveOptionsData) SetUpdateFields(value *bool)

func (*HtmlFixedSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *HtmlFixedSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*HtmlFixedSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *HtmlFixedSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*HtmlFixedSaveOptionsData) SetUseTargetMachineFonts ¶

func (obj *HtmlFixedSaveOptionsData) SetUseTargetMachineFonts(value *bool)

func (*HtmlFixedSaveOptionsData) SetZipOutput ¶

func (obj *HtmlFixedSaveOptionsData) SetZipOutput(value *bool)

func (*HtmlFixedSaveOptionsData) Validate ¶

func (obj *HtmlFixedSaveOptionsData) Validate() error

type HtmlSaveOptionsData ¶

type HtmlSaveOptionsData struct {
	// Container class for html save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for html save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for html save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for html save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for html save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for html save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for html save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for html save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for html save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for html save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for html save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for html save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for html save options.
	AllowNegativeIndent *bool `json:"AllowNegativeIndent,omitempty"`

	// Container class for html save options.
	CssClassNamePrefix *string `json:"CssClassNamePrefix,omitempty"`

	// Container class for html save options.
	CssStyleSheetFileName *string `json:"CssStyleSheetFileName,omitempty"`

	// Container class for html save options.
	CssStyleSheetType *string `json:"CssStyleSheetType,omitempty"`

	// Container class for html save options.
	DocumentSplitCriteria *string `json:"DocumentSplitCriteria,omitempty"`

	// Container class for html save options.
	DocumentSplitHeadingLevel *int32 `json:"DocumentSplitHeadingLevel,omitempty"`

	// Container class for html save options.
	Encoding *string `json:"Encoding,omitempty"`

	// Container class for html save options.
	ExportDocumentProperties *bool `json:"ExportDocumentProperties,omitempty"`

	// Container class for html save options.
	ExportDropDownFormFieldAsText *bool `json:"ExportDropDownFormFieldAsText,omitempty"`

	// Container class for html save options.
	ExportFontResources *bool `json:"ExportFontResources,omitempty"`

	// Container class for html save options.
	ExportFontsAsBase64 *bool `json:"ExportFontsAsBase64,omitempty"`

	// Container class for html save options.
	ExportHeadersFootersMode *string `json:"ExportHeadersFootersMode,omitempty"`

	// Container class for html save options.
	ExportImagesAsBase64 *bool `json:"ExportImagesAsBase64,omitempty"`

	// Container class for html save options.
	ExportLanguageInformation *bool `json:"ExportLanguageInformation,omitempty"`

	// Container class for html save options.
	ExportListLabels *string `json:"ExportListLabels,omitempty"`

	// Container class for html save options.
	ExportOriginalUrlForLinkedImages *bool `json:"ExportOriginalUrlForLinkedImages,omitempty"`

	// Container class for html save options.
	ExportPageMargins *bool `json:"ExportPageMargins,omitempty"`

	// Container class for html save options.
	ExportPageSetup *bool `json:"ExportPageSetup,omitempty"`

	// Container class for html save options.
	ExportRelativeFontSize *bool `json:"ExportRelativeFontSize,omitempty"`

	// Container class for html save options.
	ExportRoundtripInformation *bool `json:"ExportRoundtripInformation,omitempty"`

	// Container class for html save options.
	ExportTextInputFormFieldAsText *bool `json:"ExportTextInputFormFieldAsText,omitempty"`

	// Container class for html save options.
	ExportTocPageNumbers *bool `json:"ExportTocPageNumbers,omitempty"`

	// Container class for html save options.
	ExportXhtmlTransitional *bool `json:"ExportXhtmlTransitional,omitempty"`

	// Container class for html save options.
	FontResourcesSubsettingSizeThreshold *int32 `json:"FontResourcesSubsettingSizeThreshold,omitempty"`

	// Container class for html save options.
	FontsFolder *string `json:"FontsFolder,omitempty"`

	// Container class for html save options.
	FontsFolderAlias *string `json:"FontsFolderAlias,omitempty"`

	// Container class for html save options.
	HtmlVersion *string `json:"HtmlVersion,omitempty"`

	// Container class for html save options.
	ImageResolution *int32 `json:"ImageResolution,omitempty"`

	// Container class for html save options.
	ImagesFolder *string `json:"ImagesFolder,omitempty"`

	// Container class for html save options.
	ImagesFolderAlias *string `json:"ImagesFolderAlias,omitempty"`

	// Container class for html save options.
	MetafileFormat *string `json:"MetafileFormat,omitempty"`

	// Container class for html save options.
	OfficeMathOutputMode *string `json:"OfficeMathOutputMode,omitempty"`

	// Container class for html save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for html save options.
	ResolveFontNames *bool `json:"ResolveFontNames,omitempty"`

	// Container class for html save options.
	ResourceFolder *string `json:"ResourceFolder,omitempty"`

	// Container class for html save options.
	ResourceFolderAlias *string `json:"ResourceFolderAlias,omitempty"`

	// Container class for html save options.
	ScaleImageToShapeSize *bool `json:"ScaleImageToShapeSize,omitempty"`

	// Container class for html save options.
	TableWidthOutputMode *string `json:"TableWidthOutputMode,omitempty"`

	// Container class for html save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*HtmlSaveOptionsData) CollectFilesContent ¶

func (obj *HtmlSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*HtmlSaveOptionsData) Deserialize ¶

func (obj *HtmlSaveOptionsData) Deserialize(json map[string]interface{})

func (*HtmlSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *HtmlSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*HtmlSaveOptionsData) GetAllowNegativeIndent ¶

func (obj *HtmlSaveOptionsData) GetAllowNegativeIndent() *bool

func (*HtmlSaveOptionsData) GetCssClassNamePrefix ¶

func (obj *HtmlSaveOptionsData) GetCssClassNamePrefix() *string

func (*HtmlSaveOptionsData) GetCssStyleSheetFileName ¶

func (obj *HtmlSaveOptionsData) GetCssStyleSheetFileName() *string

func (*HtmlSaveOptionsData) GetCssStyleSheetType ¶

func (obj *HtmlSaveOptionsData) GetCssStyleSheetType() *string

func (*HtmlSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *HtmlSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*HtmlSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *HtmlSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*HtmlSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *HtmlSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*HtmlSaveOptionsData) GetDmlRenderingMode ¶

func (obj *HtmlSaveOptionsData) GetDmlRenderingMode() *string

func (*HtmlSaveOptionsData) GetDocumentSplitCriteria ¶

func (obj *HtmlSaveOptionsData) GetDocumentSplitCriteria() *string

func (*HtmlSaveOptionsData) GetDocumentSplitHeadingLevel ¶

func (obj *HtmlSaveOptionsData) GetDocumentSplitHeadingLevel() *int32

func (*HtmlSaveOptionsData) GetEncoding ¶

func (obj *HtmlSaveOptionsData) GetEncoding() *string

func (*HtmlSaveOptionsData) GetExportDocumentProperties ¶

func (obj *HtmlSaveOptionsData) GetExportDocumentProperties() *bool

func (*HtmlSaveOptionsData) GetExportDropDownFormFieldAsText ¶

func (obj *HtmlSaveOptionsData) GetExportDropDownFormFieldAsText() *bool

func (*HtmlSaveOptionsData) GetExportFontResources ¶

func (obj *HtmlSaveOptionsData) GetExportFontResources() *bool

func (*HtmlSaveOptionsData) GetExportFontsAsBase64 ¶

func (obj *HtmlSaveOptionsData) GetExportFontsAsBase64() *bool

func (*HtmlSaveOptionsData) GetExportHeadersFootersMode ¶

func (obj *HtmlSaveOptionsData) GetExportHeadersFootersMode() *string

func (*HtmlSaveOptionsData) GetExportImagesAsBase64 ¶

func (obj *HtmlSaveOptionsData) GetExportImagesAsBase64() *bool

func (*HtmlSaveOptionsData) GetExportLanguageInformation ¶

func (obj *HtmlSaveOptionsData) GetExportLanguageInformation() *bool

func (*HtmlSaveOptionsData) GetExportListLabels ¶

func (obj *HtmlSaveOptionsData) GetExportListLabels() *string

func (*HtmlSaveOptionsData) GetExportOriginalUrlForLinkedImages ¶

func (obj *HtmlSaveOptionsData) GetExportOriginalUrlForLinkedImages() *bool

func (*HtmlSaveOptionsData) GetExportPageMargins ¶

func (obj *HtmlSaveOptionsData) GetExportPageMargins() *bool

func (*HtmlSaveOptionsData) GetExportPageSetup ¶

func (obj *HtmlSaveOptionsData) GetExportPageSetup() *bool

func (*HtmlSaveOptionsData) GetExportRelativeFontSize ¶

func (obj *HtmlSaveOptionsData) GetExportRelativeFontSize() *bool

func (*HtmlSaveOptionsData) GetExportRoundtripInformation ¶

func (obj *HtmlSaveOptionsData) GetExportRoundtripInformation() *bool

func (*HtmlSaveOptionsData) GetExportTextInputFormFieldAsText ¶

func (obj *HtmlSaveOptionsData) GetExportTextInputFormFieldAsText() *bool

func (*HtmlSaveOptionsData) GetExportTocPageNumbers ¶

func (obj *HtmlSaveOptionsData) GetExportTocPageNumbers() *bool

func (*HtmlSaveOptionsData) GetExportXhtmlTransitional ¶

func (obj *HtmlSaveOptionsData) GetExportXhtmlTransitional() *bool

func (*HtmlSaveOptionsData) GetFileName ¶

func (obj *HtmlSaveOptionsData) GetFileName() *string

func (*HtmlSaveOptionsData) GetFontResourcesSubsettingSizeThreshold ¶

func (obj *HtmlSaveOptionsData) GetFontResourcesSubsettingSizeThreshold() *int32

func (*HtmlSaveOptionsData) GetFontsFolder ¶

func (obj *HtmlSaveOptionsData) GetFontsFolder() *string

func (*HtmlSaveOptionsData) GetFontsFolderAlias ¶

func (obj *HtmlSaveOptionsData) GetFontsFolderAlias() *string

func (*HtmlSaveOptionsData) GetHtmlVersion ¶

func (obj *HtmlSaveOptionsData) GetHtmlVersion() *string

func (*HtmlSaveOptionsData) GetImageResolution ¶

func (obj *HtmlSaveOptionsData) GetImageResolution() *int32

func (*HtmlSaveOptionsData) GetImagesFolder ¶

func (obj *HtmlSaveOptionsData) GetImagesFolder() *string

func (*HtmlSaveOptionsData) GetImagesFolderAlias ¶

func (obj *HtmlSaveOptionsData) GetImagesFolderAlias() *string

func (*HtmlSaveOptionsData) GetImlRenderingMode ¶

func (obj *HtmlSaveOptionsData) GetImlRenderingMode() *string

func (*HtmlSaveOptionsData) GetMetafileFormat ¶

func (obj *HtmlSaveOptionsData) GetMetafileFormat() *string

func (*HtmlSaveOptionsData) GetOfficeMathOutputMode ¶

func (obj *HtmlSaveOptionsData) GetOfficeMathOutputMode() *string

func (*HtmlSaveOptionsData) GetPrettyFormat ¶

func (obj *HtmlSaveOptionsData) GetPrettyFormat() *bool

func (*HtmlSaveOptionsData) GetResolveFontNames ¶

func (obj *HtmlSaveOptionsData) GetResolveFontNames() *bool

func (*HtmlSaveOptionsData) GetResourceFolder ¶

func (obj *HtmlSaveOptionsData) GetResourceFolder() *string

func (*HtmlSaveOptionsData) GetResourceFolderAlias ¶

func (obj *HtmlSaveOptionsData) GetResourceFolderAlias() *string

func (*HtmlSaveOptionsData) GetSaveFormat ¶

func (obj *HtmlSaveOptionsData) GetSaveFormat() *string

func (*HtmlSaveOptionsData) GetScaleImageToShapeSize ¶

func (obj *HtmlSaveOptionsData) GetScaleImageToShapeSize() *bool

func (*HtmlSaveOptionsData) GetTableWidthOutputMode ¶

func (obj *HtmlSaveOptionsData) GetTableWidthOutputMode() *string

func (*HtmlSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *HtmlSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*HtmlSaveOptionsData) GetUpdateFields ¶

func (obj *HtmlSaveOptionsData) GetUpdateFields() *bool

func (*HtmlSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *HtmlSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*HtmlSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *HtmlSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*HtmlSaveOptionsData) GetZipOutput ¶

func (obj *HtmlSaveOptionsData) GetZipOutput() *bool

func (*HtmlSaveOptionsData) Initialize ¶

func (obj *HtmlSaveOptionsData) Initialize()

func (HtmlSaveOptionsData) IsHtmlSaveOptionsData ¶

func (HtmlSaveOptionsData) IsHtmlSaveOptionsData() bool

func (HtmlSaveOptionsData) IsSaveOptionsData ¶

func (HtmlSaveOptionsData) IsSaveOptionsData() bool

func (*HtmlSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *HtmlSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*HtmlSaveOptionsData) SetAllowNegativeIndent ¶

func (obj *HtmlSaveOptionsData) SetAllowNegativeIndent(value *bool)

func (*HtmlSaveOptionsData) SetCssClassNamePrefix ¶

func (obj *HtmlSaveOptionsData) SetCssClassNamePrefix(value *string)

func (*HtmlSaveOptionsData) SetCssStyleSheetFileName ¶

func (obj *HtmlSaveOptionsData) SetCssStyleSheetFileName(value *string)

func (*HtmlSaveOptionsData) SetCssStyleSheetType ¶

func (obj *HtmlSaveOptionsData) SetCssStyleSheetType(value *string)

func (*HtmlSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *HtmlSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*HtmlSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *HtmlSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*HtmlSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *HtmlSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*HtmlSaveOptionsData) SetDmlRenderingMode ¶

func (obj *HtmlSaveOptionsData) SetDmlRenderingMode(value *string)

func (*HtmlSaveOptionsData) SetDocumentSplitCriteria ¶

func (obj *HtmlSaveOptionsData) SetDocumentSplitCriteria(value *string)

func (*HtmlSaveOptionsData) SetDocumentSplitHeadingLevel ¶

func (obj *HtmlSaveOptionsData) SetDocumentSplitHeadingLevel(value *int32)

func (*HtmlSaveOptionsData) SetEncoding ¶

func (obj *HtmlSaveOptionsData) SetEncoding(value *string)

func (*HtmlSaveOptionsData) SetExportDocumentProperties ¶

func (obj *HtmlSaveOptionsData) SetExportDocumentProperties(value *bool)

func (*HtmlSaveOptionsData) SetExportDropDownFormFieldAsText ¶

func (obj *HtmlSaveOptionsData) SetExportDropDownFormFieldAsText(value *bool)

func (*HtmlSaveOptionsData) SetExportFontResources ¶

func (obj *HtmlSaveOptionsData) SetExportFontResources(value *bool)

func (*HtmlSaveOptionsData) SetExportFontsAsBase64 ¶

func (obj *HtmlSaveOptionsData) SetExportFontsAsBase64(value *bool)

func (*HtmlSaveOptionsData) SetExportHeadersFootersMode ¶

func (obj *HtmlSaveOptionsData) SetExportHeadersFootersMode(value *string)

func (*HtmlSaveOptionsData) SetExportImagesAsBase64 ¶

func (obj *HtmlSaveOptionsData) SetExportImagesAsBase64(value *bool)

func (*HtmlSaveOptionsData) SetExportLanguageInformation ¶

func (obj *HtmlSaveOptionsData) SetExportLanguageInformation(value *bool)

func (*HtmlSaveOptionsData) SetExportListLabels ¶

func (obj *HtmlSaveOptionsData) SetExportListLabels(value *string)

func (*HtmlSaveOptionsData) SetExportOriginalUrlForLinkedImages ¶

func (obj *HtmlSaveOptionsData) SetExportOriginalUrlForLinkedImages(value *bool)

func (*HtmlSaveOptionsData) SetExportPageMargins ¶

func (obj *HtmlSaveOptionsData) SetExportPageMargins(value *bool)

func (*HtmlSaveOptionsData) SetExportPageSetup ¶

func (obj *HtmlSaveOptionsData) SetExportPageSetup(value *bool)

func (*HtmlSaveOptionsData) SetExportRelativeFontSize ¶

func (obj *HtmlSaveOptionsData) SetExportRelativeFontSize(value *bool)

func (*HtmlSaveOptionsData) SetExportRoundtripInformation ¶

func (obj *HtmlSaveOptionsData) SetExportRoundtripInformation(value *bool)

func (*HtmlSaveOptionsData) SetExportTextInputFormFieldAsText ¶

func (obj *HtmlSaveOptionsData) SetExportTextInputFormFieldAsText(value *bool)

func (*HtmlSaveOptionsData) SetExportTocPageNumbers ¶

func (obj *HtmlSaveOptionsData) SetExportTocPageNumbers(value *bool)

func (*HtmlSaveOptionsData) SetExportXhtmlTransitional ¶

func (obj *HtmlSaveOptionsData) SetExportXhtmlTransitional(value *bool)

func (*HtmlSaveOptionsData) SetFileName ¶

func (obj *HtmlSaveOptionsData) SetFileName(value *string)

func (*HtmlSaveOptionsData) SetFontResourcesSubsettingSizeThreshold ¶

func (obj *HtmlSaveOptionsData) SetFontResourcesSubsettingSizeThreshold(value *int32)

func (*HtmlSaveOptionsData) SetFontsFolder ¶

func (obj *HtmlSaveOptionsData) SetFontsFolder(value *string)

func (*HtmlSaveOptionsData) SetFontsFolderAlias ¶

func (obj *HtmlSaveOptionsData) SetFontsFolderAlias(value *string)

func (*HtmlSaveOptionsData) SetHtmlVersion ¶

func (obj *HtmlSaveOptionsData) SetHtmlVersion(value *string)

func (*HtmlSaveOptionsData) SetImageResolution ¶

func (obj *HtmlSaveOptionsData) SetImageResolution(value *int32)

func (*HtmlSaveOptionsData) SetImagesFolder ¶

func (obj *HtmlSaveOptionsData) SetImagesFolder(value *string)

func (*HtmlSaveOptionsData) SetImagesFolderAlias ¶

func (obj *HtmlSaveOptionsData) SetImagesFolderAlias(value *string)

func (*HtmlSaveOptionsData) SetImlRenderingMode ¶

func (obj *HtmlSaveOptionsData) SetImlRenderingMode(value *string)

func (*HtmlSaveOptionsData) SetMetafileFormat ¶

func (obj *HtmlSaveOptionsData) SetMetafileFormat(value *string)

func (*HtmlSaveOptionsData) SetOfficeMathOutputMode ¶

func (obj *HtmlSaveOptionsData) SetOfficeMathOutputMode(value *string)

func (*HtmlSaveOptionsData) SetPrettyFormat ¶

func (obj *HtmlSaveOptionsData) SetPrettyFormat(value *bool)

func (*HtmlSaveOptionsData) SetResolveFontNames ¶

func (obj *HtmlSaveOptionsData) SetResolveFontNames(value *bool)

func (*HtmlSaveOptionsData) SetResourceFolder ¶

func (obj *HtmlSaveOptionsData) SetResourceFolder(value *string)

func (*HtmlSaveOptionsData) SetResourceFolderAlias ¶

func (obj *HtmlSaveOptionsData) SetResourceFolderAlias(value *string)

func (*HtmlSaveOptionsData) SetSaveFormat ¶

func (obj *HtmlSaveOptionsData) SetSaveFormat(value *string)

func (*HtmlSaveOptionsData) SetScaleImageToShapeSize ¶

func (obj *HtmlSaveOptionsData) SetScaleImageToShapeSize(value *bool)

func (*HtmlSaveOptionsData) SetTableWidthOutputMode ¶

func (obj *HtmlSaveOptionsData) SetTableWidthOutputMode(value *string)

func (*HtmlSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *HtmlSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*HtmlSaveOptionsData) SetUpdateFields ¶

func (obj *HtmlSaveOptionsData) SetUpdateFields(value *bool)

func (*HtmlSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *HtmlSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*HtmlSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *HtmlSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*HtmlSaveOptionsData) SetZipOutput ¶

func (obj *HtmlSaveOptionsData) SetZipOutput(value *bool)

func (*HtmlSaveOptionsData) Validate ¶

func (obj *HtmlSaveOptionsData) Validate() error
type Hyperlink struct {
	// Hyperlink element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Hyperlink element.
	DisplayText *string `json:"DisplayText,omitempty"`

	// Hyperlink element.
	Value *string `json:"Value,omitempty"`
}

func (*Hyperlink) CollectFilesContent ¶

func (obj *Hyperlink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Hyperlink) Deserialize ¶

func (obj *Hyperlink) Deserialize(json map[string]interface{})

func (*Hyperlink) GetDisplayText ¶

func (obj *Hyperlink) GetDisplayText() *string
func (obj *Hyperlink) GetLink() IWordsApiLink

func (*Hyperlink) GetValue ¶

func (obj *Hyperlink) GetValue() *string

func (*Hyperlink) Initialize ¶

func (obj *Hyperlink) Initialize()
func (Hyperlink) IsHyperlink() bool

func (Hyperlink) IsLinkElement ¶

func (Hyperlink) IsLinkElement() bool

func (*Hyperlink) SetDisplayText ¶

func (obj *Hyperlink) SetDisplayText(value *string)
func (obj *Hyperlink) SetLink(value IWordsApiLink)

func (*Hyperlink) SetValue ¶

func (obj *Hyperlink) SetValue(value *string)

func (*Hyperlink) Validate ¶

func (obj *Hyperlink) Validate() error

type HyperlinkResponse ¶

type HyperlinkResponse struct {
	// The REST response with a hyperlink.
	// This response should be returned by the service when handling: GET /{name}/hyperlinks/{hyperlinkIndex}.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a hyperlink.
	// This response should be returned by the service when handling: GET /{name}/hyperlinks/{hyperlinkIndex}.
	Hyperlink IHyperlink `json:"Hyperlink,omitempty"`
}

func (*HyperlinkResponse) CollectFilesContent ¶

func (obj *HyperlinkResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*HyperlinkResponse) Deserialize ¶

func (obj *HyperlinkResponse) Deserialize(json map[string]interface{})
func (obj *HyperlinkResponse) GetHyperlink() IHyperlink

func (*HyperlinkResponse) GetRequestId ¶

func (obj *HyperlinkResponse) GetRequestId() *string

func (*HyperlinkResponse) Initialize ¶

func (obj *HyperlinkResponse) Initialize()

func (HyperlinkResponse) IsHyperlinkResponse ¶

func (HyperlinkResponse) IsHyperlinkResponse() bool

func (HyperlinkResponse) IsWordsResponse ¶

func (HyperlinkResponse) IsWordsResponse() bool
func (obj *HyperlinkResponse) SetHyperlink(value IHyperlink)

func (*HyperlinkResponse) SetRequestId ¶

func (obj *HyperlinkResponse) SetRequestId(value *string)

func (*HyperlinkResponse) Validate ¶

func (obj *HyperlinkResponse) Validate() error
type Hyperlinks struct {
	// Collection of Hyperlink.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Collection of Hyperlink.
	HyperlinkList []IHyperlink `json:"HyperlinkList,omitempty"`
}

func (*Hyperlinks) CollectFilesContent ¶

func (obj *Hyperlinks) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Hyperlinks) Deserialize ¶

func (obj *Hyperlinks) Deserialize(json map[string]interface{})
func (obj *Hyperlinks) GetHyperlinkList() []IHyperlink
func (obj *Hyperlinks) GetLink() IWordsApiLink

func (*Hyperlinks) Initialize ¶

func (obj *Hyperlinks) Initialize()
func (Hyperlinks) IsHyperlinks() bool

func (Hyperlinks) IsLinkElement ¶

func (Hyperlinks) IsLinkElement() bool
func (obj *Hyperlinks) SetHyperlinkList(value []IHyperlink)
func (obj *Hyperlinks) SetLink(value IWordsApiLink)

func (*Hyperlinks) Validate ¶

func (obj *Hyperlinks) Validate() error

type HyperlinksResponse ¶

type HyperlinksResponse struct {
	// The REST response with a collection of hyperlinks.
	// This response should be returned by the service when handling "GET /{name}/hyperlinks" REST API calls.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of hyperlinks.
	// This response should be returned by the service when handling "GET /{name}/hyperlinks" REST API calls.
	Hyperlinks IHyperlinks `json:"Hyperlinks,omitempty"`
}

func (*HyperlinksResponse) CollectFilesContent ¶

func (obj *HyperlinksResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*HyperlinksResponse) Deserialize ¶

func (obj *HyperlinksResponse) Deserialize(json map[string]interface{})
func (obj *HyperlinksResponse) GetHyperlinks() IHyperlinks

func (*HyperlinksResponse) GetRequestId ¶

func (obj *HyperlinksResponse) GetRequestId() *string

func (*HyperlinksResponse) Initialize ¶

func (obj *HyperlinksResponse) Initialize()

func (HyperlinksResponse) IsHyperlinksResponse ¶

func (HyperlinksResponse) IsHyperlinksResponse() bool

func (HyperlinksResponse) IsWordsResponse ¶

func (HyperlinksResponse) IsWordsResponse() bool
func (obj *HyperlinksResponse) SetHyperlinks(value IHyperlinks)

func (*HyperlinksResponse) SetRequestId ¶

func (obj *HyperlinksResponse) SetRequestId(value *string)

func (*HyperlinksResponse) Validate ¶

func (obj *HyperlinksResponse) Validate() error

type IApiError ¶

type IApiError interface {
	IsApiError() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetCode() *string
	SetCode(value *string)
	GetDateTime() *Time
	SetDateTime(value *Time)
	GetDescription() *string
	SetDescription(value *string)
	GetInnerError() IApiError
	SetInnerError(value IApiError)
	GetMessage() *string
	SetMessage(value *string)
}

type IAvailableFontsResponse ¶

type IAvailableFontsResponse interface {
	IsAvailableFontsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetAdditionalFonts() []IFontInfo
	SetAdditionalFonts(value []IFontInfo)
	GetCustomFonts() []IFontInfo
	SetCustomFonts(value []IFontInfo)
	GetSystemFonts() []IFontInfo
	SetSystemFonts(value []IFontInfo)
}

type IBaseEntry ¶

type IBaseEntry interface {
	IsBaseEntry() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetFileReference() IFileReference
	SetFileReference(value IFileReference)
}

type IBaseEntryList ¶

type IBaseEntryList interface {
	IsBaseEntryList() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
}

type IBmpSaveOptionsData ¶

type IBmpSaveOptionsData interface {
	IsBmpSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetHorizontalResolution() *float64
	SetHorizontalResolution(value *float64)
	GetImageBrightness() *float64
	SetImageBrightness(value *float64)
	GetImageColorMode() *string
	SetImageColorMode(value *string)
	GetImageContrast() *float64
	SetImageContrast(value *float64)
	GetPaperColor() *string
	SetPaperColor(value *string)
	GetPixelFormat() *string
	SetPixelFormat(value *string)
	GetResolution() *float64
	SetResolution(value *float64)
	GetScale() *float64
	SetScale(value *float64)
	GetUseAntiAliasing() *bool
	SetUseAntiAliasing(value *bool)
	GetUseHighQualityRendering() *bool
	SetUseHighQualityRendering(value *bool)
	GetVerticalResolution() *float64
	SetVerticalResolution(value *float64)
	GetImageHeight() *int32
	SetImageHeight(value *int32)
	GetImageWidth() *int32
	SetImageWidth(value *int32)
	GetUseGdiEmfRenderer() *bool
	SetUseGdiEmfRenderer(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IBookmark ¶

type IBookmark interface {
	IsBookmark() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetName() *string
	SetName(value *string)
	GetText() *string
	SetText(value *string)
}

type IBookmarkData ¶

type IBookmarkData interface {
	IsBookmarkData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetName() *string
	SetName(value *string)
	GetText() *string
	SetText(value *string)
}

type IBookmarkInsert ¶

type IBookmarkInsert interface {
	IsBookmarkInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetName() *string
	SetName(value *string)
	GetText() *string
	SetText(value *string)
	GetStartRange() IPosition
	SetStartRange(value IPosition)
	GetEndRange() IPosition
	SetEndRange(value IPosition)
}

type IBookmarkResponse ¶

type IBookmarkResponse interface {
	IsBookmarkResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetBookmark() IBookmark
	SetBookmark(value IBookmark)
}

type IBookmarks ¶

type IBookmarks interface {
	IsBookmarks() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetBookmarkList() []IBookmark
	SetBookmarkList(value []IBookmark)
}

type IBookmarksOutlineLevelData ¶

type IBookmarksOutlineLevelData interface {
	IsBookmarksOutlineLevelData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetBookmarksOutlineLevel() *int32
	SetBookmarksOutlineLevel(value *int32)
	GetName() *string
	SetName(value *string)
}

type IBookmarksResponse ¶

type IBookmarksResponse interface {
	IsBookmarksResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetBookmarks() IBookmarks
	SetBookmarks(value IBookmarks)
}

type IBorder ¶

type IBorder interface {
	IsBorder() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetBorderType() *string
	SetBorderType(value *string)
	GetColor() IXmlColor
	SetColor(value IXmlColor)
	GetDistanceFromText() *float64
	SetDistanceFromText(value *float64)
	GetLineStyle() *string
	SetLineStyle(value *string)
	GetLineWidth() *float64
	SetLineWidth(value *float64)
	GetShadow() *bool
	SetShadow(value *bool)
}

type IBorderResponse ¶

type IBorderResponse interface {
	IsBorderResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetBorder() IBorder
	SetBorder(value IBorder)
}

type IBordersCollection ¶

type IBordersCollection interface {
	IsBordersCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetList() []IBorder
	SetList(value []IBorder)
}

type IBordersResponse ¶

type IBordersResponse interface {
	IsBordersResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetBorders() IBordersCollection
	SetBorders(value IBordersCollection)
}

type IClassificationResponse ¶

type IClassificationResponse interface {
	IsClassificationResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetBestClassName() *string
	SetBestClassName(value *string)
	GetBestClassProbability() *float64
	SetBestClassProbability(value *float64)
	GetBestResults() []IClassificationResult
	SetBestResults(value []IClassificationResult)
}

type IClassificationResult ¶

type IClassificationResult interface {
	IsClassificationResult() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetClassName() *string
	SetClassName(value *string)
	GetClassProbability() *float64
	SetClassProbability(value *float64)
}

type IComment ¶

type IComment interface {
	IsComment() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetRangeStart() IDocumentPosition
	SetRangeStart(value IDocumentPosition)
	GetRangeEnd() IDocumentPosition
	SetRangeEnd(value IDocumentPosition)
	GetAuthor() *string
	SetAuthor(value *string)
	GetInitial() *string
	SetInitial(value *string)
	GetDateTime() *Time
	SetDateTime(value *Time)
	GetText() *string
	SetText(value *string)
	GetContent() IStoryChildNodes
	SetContent(value IStoryChildNodes)
}

type ICommentBase ¶

type ICommentBase interface {
	IsCommentBase() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRangeStart() IPositionInsideNode
	SetRangeStart(value IPositionInsideNode)
	GetRangeEnd() IPositionInsideNode
	SetRangeEnd(value IPositionInsideNode)
	GetAuthor() *string
	SetAuthor(value *string)
	GetInitial() *string
	SetInitial(value *string)
	GetDateTime() *Time
	SetDateTime(value *Time)
	GetText() *string
	SetText(value *string)
}

type ICommentInsert ¶

type ICommentInsert interface {
	IsCommentInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRangeStart() IPositionInsideNode
	SetRangeStart(value IPositionInsideNode)
	GetRangeEnd() IPositionInsideNode
	SetRangeEnd(value IPositionInsideNode)
	GetAuthor() *string
	SetAuthor(value *string)
	GetInitial() *string
	SetInitial(value *string)
	GetDateTime() *Time
	SetDateTime(value *Time)
	GetText() *string
	SetText(value *string)
}
type ICommentLink interface {
	IsCommentLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
}

type ICommentResponse ¶

type ICommentResponse interface {
	IsCommentResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetComment() IComment
	SetComment(value IComment)
}

type ICommentUpdate ¶

type ICommentUpdate interface {
	IsCommentUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRangeStart() IPositionInsideNode
	SetRangeStart(value IPositionInsideNode)
	GetRangeEnd() IPositionInsideNode
	SetRangeEnd(value IPositionInsideNode)
	GetAuthor() *string
	SetAuthor(value *string)
	GetInitial() *string
	SetInitial(value *string)
	GetDateTime() *Time
	SetDateTime(value *Time)
	GetText() *string
	SetText(value *string)
}

type ICommentsCollection ¶

type ICommentsCollection interface {
	IsCommentsCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetCommentList() []IComment
	SetCommentList(value []IComment)
}

type ICommentsResponse ¶

type ICommentsResponse interface {
	IsCommentsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetComments() ICommentsCollection
	SetComments(value ICommentsCollection)
}

type ICompareData ¶

type ICompareData interface {
	IsCompareData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAuthor() *string
	SetAuthor(value *string)
	GetCompareOptions() ICompareOptions
	SetCompareOptions(value ICompareOptions)
	GetComparingWithDocument() *string
	SetComparingWithDocument(value *string)
	GetDateTime() *Time
	SetDateTime(value *Time)
	GetFileReference() IFileReference
	SetFileReference(value IFileReference)
	GetResultDocumentFormat() *string
	SetResultDocumentFormat(value *string)
}

type ICompareOptions ¶

type ICompareOptions interface {
	IsCompareOptions() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAcceptAllRevisionsBeforeComparison() *bool
	SetAcceptAllRevisionsBeforeComparison(value *bool)
	GetIgnoreCaseChanges() *bool
	SetIgnoreCaseChanges(value *bool)
	GetIgnoreComments() *bool
	SetIgnoreComments(value *bool)
	GetIgnoreFields() *bool
	SetIgnoreFields(value *bool)
	GetIgnoreFootnotes() *bool
	SetIgnoreFootnotes(value *bool)
	GetIgnoreFormatting() *bool
	SetIgnoreFormatting(value *bool)
	GetIgnoreHeadersAndFooters() *bool
	SetIgnoreHeadersAndFooters(value *bool)
	GetIgnoreTables() *bool
	SetIgnoreTables(value *bool)
	GetIgnoreTextboxes() *bool
	SetIgnoreTextboxes(value *bool)
	GetTarget() *string
	SetTarget(value *string)
}

type ICompressOptions ¶

type ICompressOptions interface {
	IsCompressOptions() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetImagesQuality() *int32
	SetImagesQuality(value *int32)
	GetImagesReduceSizeFactor() *int32
	SetImagesReduceSizeFactor(value *int32)
}

type ICompressResponse ¶

type ICompressResponse interface {
	IsCompressResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetDocument() IDocument
	SetDocument(value IDocument)
}

type ICsvDataLoadOptions ¶

type ICsvDataLoadOptions interface {
	IsCsvDataLoadOptions() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetCommentChar() *string
	SetCommentChar(value *string)
	GetDelimiter() *string
	SetDelimiter(value *string)
	GetHasHeaders() *bool
	SetHasHeaders(value *bool)
	GetQuoteChar() *string
	SetQuoteChar(value *string)
}

type ICustomXmlPart ¶

type ICustomXmlPart interface {
	IsCustomXmlPart() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetId() *string
	SetId(value *string)
	GetData() *string
	SetData(value *string)
}

type ICustomXmlPartInsert ¶

type ICustomXmlPartInsert interface {
	IsCustomXmlPartInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetId() *string
	SetId(value *string)
	GetData() *string
	SetData(value *string)
}
type ICustomXmlPartLink interface {
	IsCustomXmlPartLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
}

type ICustomXmlPartResponse ¶

type ICustomXmlPartResponse interface {
	IsCustomXmlPartResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetCustomXmlPart() ICustomXmlPart
	SetCustomXmlPart(value ICustomXmlPart)
}

type ICustomXmlPartUpdate ¶

type ICustomXmlPartUpdate interface {
	IsCustomXmlPartUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetId() *string
	SetId(value *string)
	GetData() *string
	SetData(value *string)
}

type ICustomXmlPartsCollection ¶

type ICustomXmlPartsCollection interface {
	IsCustomXmlPartsCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetCustomXmlPartsList() []ICustomXmlPart
	SetCustomXmlPartsList(value []ICustomXmlPart)
}

type ICustomXmlPartsResponse ¶

type ICustomXmlPartsResponse interface {
	IsCustomXmlPartsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetCustomXmlParts() ICustomXmlPartsCollection
	SetCustomXmlParts(value ICustomXmlPartsCollection)
}

type IDocSaveOptionsData ¶

type IDocSaveOptionsData interface {
	IsDocSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetAlwaysCompressMetafiles() *bool
	SetAlwaysCompressMetafiles(value *bool)
	GetPassword() *string
	SetPassword(value *string)
	GetSavePictureBullet() *bool
	SetSavePictureBullet(value *bool)
	GetSaveRoutingSlip() *bool
	SetSaveRoutingSlip(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IDocmSaveOptionsData ¶

type IDocmSaveOptionsData interface {
	IsDocmSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetCompliance() *string
	SetCompliance(value *string)
	GetCompressionLevel() *string
	SetCompressionLevel(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IDocument ¶

type IDocument interface {
	IsDocument() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLinks() []ILink
	SetLinks(value []ILink)
	GetDocumentProperties() IDocumentProperties
	SetDocumentProperties(value IDocumentProperties)
	GetFileName() *string
	SetFileName(value *string)
	GetIsEncrypted() *bool
	SetIsEncrypted(value *bool)
	GetIsSigned() *bool
	SetIsSigned(value *bool)
	GetSourceFormat() *string
	SetSourceFormat(value *string)
}

type IDocumentEntry ¶

type IDocumentEntry interface {
	IsDocumentEntry() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetFileReference() IFileReference
	SetFileReference(value IFileReference)
	GetEncryptedPassword() *string
	SetEncryptedPassword(value *string)
	GetImportFormatMode() *string
	SetImportFormatMode(value *string)
}

type IDocumentEntryList ¶

type IDocumentEntryList interface {
	IsDocumentEntryList() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetApplyBaseDocumentHeadersAndFootersToAppendingDocuments() *bool
	SetApplyBaseDocumentHeadersAndFootersToAppendingDocuments(value *bool)
	GetDocumentEntries() []IDocumentEntry
	SetDocumentEntries(value []IDocumentEntry)
}

type IDocumentPosition ¶

type IDocumentPosition interface {
	IsDocumentPosition() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetNode() INodeLink
	SetNode(value INodeLink)
	GetOffset() *int32
	SetOffset(value *int32)
}

type IDocumentProperties ¶

type IDocumentProperties interface {
	IsDocumentProperties() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetList() []IDocumentProperty
	SetList(value []IDocumentProperty)
}

type IDocumentPropertiesResponse ¶

type IDocumentPropertiesResponse interface {
	IsDocumentPropertiesResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetDocumentProperties() IDocumentProperties
	SetDocumentProperties(value IDocumentProperties)
}

type IDocumentProperty ¶

type IDocumentProperty interface {
	IsDocumentProperty() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetName() *string
	SetName(value *string)
	GetValue() *string
	SetValue(value *string)
	GetBuiltIn() *bool
	SetBuiltIn(value *bool)
}

type IDocumentPropertyCreateOrUpdate ¶

type IDocumentPropertyCreateOrUpdate interface {
	IsDocumentPropertyCreateOrUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetValue() *string
	SetValue(value *string)
}

type IDocumentPropertyResponse ¶

type IDocumentPropertyResponse interface {
	IsDocumentPropertyResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetDocumentProperty() IDocumentProperty
	SetDocumentProperty(value IDocumentProperty)
}

type IDocumentResponse ¶

type IDocumentResponse interface {
	IsDocumentResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetDocument() IDocument
	SetDocument(value IDocument)
}

type IDocumentStatData ¶

type IDocumentStatData interface {
	IsDocumentStatData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetFootnotesStatData() IFootnotesStatData
	SetFootnotesStatData(value IFootnotesStatData)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetParagraphCount() *int32
	SetParagraphCount(value *int32)
	GetWordCount() *int32
	SetWordCount(value *int32)
	GetPageStatData() []IPageStatData
	SetPageStatData(value []IPageStatData)
}

type IDocxSaveOptionsData ¶

type IDocxSaveOptionsData interface {
	IsDocxSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetCompliance() *string
	SetCompliance(value *string)
	GetCompressionLevel() *string
	SetCompressionLevel(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IDotSaveOptionsData ¶

type IDotSaveOptionsData interface {
	IsDotSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetAlwaysCompressMetafiles() *bool
	SetAlwaysCompressMetafiles(value *bool)
	GetPassword() *string
	SetPassword(value *string)
	GetSavePictureBullet() *bool
	SetSavePictureBullet(value *bool)
	GetSaveRoutingSlip() *bool
	SetSaveRoutingSlip(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IDotmSaveOptionsData ¶

type IDotmSaveOptionsData interface {
	IsDotmSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetCompliance() *string
	SetCompliance(value *string)
	GetCompressionLevel() *string
	SetCompressionLevel(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IDotxSaveOptionsData ¶

type IDotxSaveOptionsData interface {
	IsDotxSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetCompliance() *string
	SetCompliance(value *string)
	GetCompressionLevel() *string
	SetCompressionLevel(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IDownsampleOptionsData ¶

type IDownsampleOptionsData interface {
	IsDownsampleOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetDownsampleImages() *bool
	SetDownsampleImages(value *bool)
	GetResolution() *int32
	SetResolution(value *int32)
	GetResolutionThreshold() *int32
	SetResolutionThreshold(value *int32)
}

type IDrawingObject ¶

type IDrawingObject interface {
	IsDrawingObject() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetRenderLinks() []IWordsApiLink
	SetRenderLinks(value []IWordsApiLink)
	GetWidth() *float64
	SetWidth(value *float64)
	GetHeight() *float64
	SetHeight(value *float64)
	GetOleDataLink() IWordsApiLink
	SetOleDataLink(value IWordsApiLink)
	GetImageDataLink() IWordsApiLink
	SetImageDataLink(value IWordsApiLink)
	GetRelativeHorizontalPosition() *string
	SetRelativeHorizontalPosition(value *string)
	GetLeft() *float64
	SetLeft(value *float64)
	GetRelativeVerticalPosition() *string
	SetRelativeVerticalPosition(value *string)
	GetTop() *float64
	SetTop(value *float64)
	GetWrapType() *string
	SetWrapType(value *string)
}

type IDrawingObjectCollection ¶

type IDrawingObjectCollection interface {
	IsDrawingObjectCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetList() []ILinkElement
	SetList(value []ILinkElement)
}

type IDrawingObjectInsert ¶

type IDrawingObjectInsert interface {
	IsDrawingObjectInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetPosition() IPosition
	SetPosition(value IPosition)
	GetRelativeHorizontalPosition() *string
	SetRelativeHorizontalPosition(value *string)
	GetLeft() *float64
	SetLeft(value *float64)
	GetRelativeVerticalPosition() *string
	SetRelativeVerticalPosition(value *string)
	GetTop() *float64
	SetTop(value *float64)
	GetWidth() *float64
	SetWidth(value *float64)
	GetHeight() *float64
	SetHeight(value *float64)
	GetWrapType() *string
	SetWrapType(value *string)
}
type IDrawingObjectLink interface {
	IsDrawingObjectLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
}

type IDrawingObjectResponse ¶

type IDrawingObjectResponse interface {
	IsDrawingObjectResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetDrawingObject() IDrawingObject
	SetDrawingObject(value IDrawingObject)
}

type IDrawingObjectUpdate ¶

type IDrawingObjectUpdate interface {
	IsDrawingObjectUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRelativeHorizontalPosition() *string
	SetRelativeHorizontalPosition(value *string)
	GetLeft() *float64
	SetLeft(value *float64)
	GetRelativeVerticalPosition() *string
	SetRelativeVerticalPosition(value *string)
	GetTop() *float64
	SetTop(value *float64)
	GetWidth() *float64
	SetWidth(value *float64)
	GetHeight() *float64
	SetHeight(value *float64)
	GetWrapType() *string
	SetWrapType(value *string)
}

type IDrawingObjectsResponse ¶

type IDrawingObjectsResponse interface {
	IsDrawingObjectsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetDrawingObjects() IDrawingObjectCollection
	SetDrawingObjects(value IDrawingObjectCollection)
}

type IEmfSaveOptionsData ¶

type IEmfSaveOptionsData interface {
	IsEmfSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetHorizontalResolution() *float64
	SetHorizontalResolution(value *float64)
	GetImageBrightness() *float64
	SetImageBrightness(value *float64)
	GetImageColorMode() *string
	SetImageColorMode(value *string)
	GetImageContrast() *float64
	SetImageContrast(value *float64)
	GetPaperColor() *string
	SetPaperColor(value *string)
	GetPixelFormat() *string
	SetPixelFormat(value *string)
	GetResolution() *float64
	SetResolution(value *float64)
	GetScale() *float64
	SetScale(value *float64)
	GetUseAntiAliasing() *bool
	SetUseAntiAliasing(value *bool)
	GetUseHighQualityRendering() *bool
	SetUseHighQualityRendering(value *bool)
	GetVerticalResolution() *float64
	SetVerticalResolution(value *float64)
	GetImageHeight() *int32
	SetImageHeight(value *int32)
	GetImageWidth() *int32
	SetImageWidth(value *int32)
	GetUseGdiEmfRenderer() *bool
	SetUseGdiEmfRenderer(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IEpsSaveOptionsData ¶

type IEpsSaveOptionsData interface {
	IsEpsSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetHorizontalResolution() *float64
	SetHorizontalResolution(value *float64)
	GetImageBrightness() *float64
	SetImageBrightness(value *float64)
	GetImageColorMode() *string
	SetImageColorMode(value *string)
	GetImageContrast() *float64
	SetImageContrast(value *float64)
	GetPaperColor() *string
	SetPaperColor(value *string)
	GetPixelFormat() *string
	SetPixelFormat(value *string)
	GetResolution() *float64
	SetResolution(value *float64)
	GetScale() *float64
	SetScale(value *float64)
	GetUseAntiAliasing() *bool
	SetUseAntiAliasing(value *bool)
	GetUseHighQualityRendering() *bool
	SetUseHighQualityRendering(value *bool)
	GetVerticalResolution() *float64
	SetVerticalResolution(value *float64)
	GetImageHeight() *int32
	SetImageHeight(value *int32)
	GetImageWidth() *int32
	SetImageWidth(value *int32)
	GetUseGdiEmfRenderer() *bool
	SetUseGdiEmfRenderer(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IEpubSaveOptionsData ¶

type IEpubSaveOptionsData interface {
	IsEpubSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetAllowNegativeIndent() *bool
	SetAllowNegativeIndent(value *bool)
	GetCssClassNamePrefix() *string
	SetCssClassNamePrefix(value *string)
	GetCssStyleSheetFileName() *string
	SetCssStyleSheetFileName(value *string)
	GetCssStyleSheetType() *string
	SetCssStyleSheetType(value *string)
	GetDocumentSplitCriteria() *string
	SetDocumentSplitCriteria(value *string)
	GetDocumentSplitHeadingLevel() *int32
	SetDocumentSplitHeadingLevel(value *int32)
	GetEncoding() *string
	SetEncoding(value *string)
	GetExportDocumentProperties() *bool
	SetExportDocumentProperties(value *bool)
	GetExportDropDownFormFieldAsText() *bool
	SetExportDropDownFormFieldAsText(value *bool)
	GetExportFontResources() *bool
	SetExportFontResources(value *bool)
	GetExportFontsAsBase64() *bool
	SetExportFontsAsBase64(value *bool)
	GetExportHeadersFootersMode() *string
	SetExportHeadersFootersMode(value *string)
	GetExportImagesAsBase64() *bool
	SetExportImagesAsBase64(value *bool)
	GetExportLanguageInformation() *bool
	SetExportLanguageInformation(value *bool)
	GetExportListLabels() *string
	SetExportListLabels(value *string)
	GetExportOriginalUrlForLinkedImages() *bool
	SetExportOriginalUrlForLinkedImages(value *bool)
	GetExportPageMargins() *bool
	SetExportPageMargins(value *bool)
	GetExportPageSetup() *bool
	SetExportPageSetup(value *bool)
	GetExportRelativeFontSize() *bool
	SetExportRelativeFontSize(value *bool)
	GetExportRoundtripInformation() *bool
	SetExportRoundtripInformation(value *bool)
	GetExportTextInputFormFieldAsText() *bool
	SetExportTextInputFormFieldAsText(value *bool)
	GetExportTocPageNumbers() *bool
	SetExportTocPageNumbers(value *bool)
	GetExportXhtmlTransitional() *bool
	SetExportXhtmlTransitional(value *bool)
	GetFontResourcesSubsettingSizeThreshold() *int32
	SetFontResourcesSubsettingSizeThreshold(value *int32)
	GetFontsFolder() *string
	SetFontsFolder(value *string)
	GetFontsFolderAlias() *string
	SetFontsFolderAlias(value *string)
	GetHtmlVersion() *string
	SetHtmlVersion(value *string)
	GetImageResolution() *int32
	SetImageResolution(value *int32)
	GetImagesFolder() *string
	SetImagesFolder(value *string)
	GetImagesFolderAlias() *string
	SetImagesFolderAlias(value *string)
	GetMetafileFormat() *string
	SetMetafileFormat(value *string)
	GetOfficeMathOutputMode() *string
	SetOfficeMathOutputMode(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetResolveFontNames() *bool
	SetResolveFontNames(value *bool)
	GetResourceFolder() *string
	SetResourceFolder(value *string)
	GetResourceFolderAlias() *string
	SetResourceFolderAlias(value *string)
	GetScaleImageToShapeSize() *bool
	SetScaleImageToShapeSize(value *bool)
	GetTableWidthOutputMode() *string
	SetTableWidthOutputMode(value *string)
	GetNavigationMapLevel() *int32
	SetNavigationMapLevel(value *int32)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IError ¶

type IError interface {
	IsError() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetCode() *string
	SetCode(value *string)
	GetDescription() *string
	SetDescription(value *string)
	GetInnerError() IErrorDetails
	SetInnerError(value IErrorDetails)
	GetMessage() *string
	SetMessage(value *string)
}

type IErrorDetails ¶

type IErrorDetails interface {
	IsErrorDetails() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetErrorDateTime() *Time
	SetErrorDateTime(value *Time)
	GetRequestId() *string
	SetRequestId(value *string)
}

type IField ¶

type IField interface {
	IsField() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetFieldCode() *string
	SetFieldCode(value *string)
	GetLocaleId() *string
	SetLocaleId(value *string)
	GetResult() *string
	SetResult(value *string)
}

type IFieldBase ¶

type IFieldBase interface {
	IsFieldBase() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLocaleId() *string
	SetLocaleId(value *string)
	GetFieldCode() *string
	SetFieldCode(value *string)
}

type IFieldCollection ¶

type IFieldCollection interface {
	IsFieldCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetList() []IField
	SetList(value []IField)
}

type IFieldInsert ¶

type IFieldInsert interface {
	IsFieldInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLocaleId() *string
	SetLocaleId(value *string)
	GetFieldCode() *string
	SetFieldCode(value *string)
	GetPosition() IPosition
	SetPosition(value IPosition)
}
type IFieldLink interface {
	IsFieldLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetFieldCode() *string
	SetFieldCode(value *string)
}

type IFieldNames ¶

type IFieldNames interface {
	IsFieldNames() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNames() []string
	SetNames(value []string)
}

type IFieldNamesResponse ¶

type IFieldNamesResponse interface {
	IsFieldNamesResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetFieldNames() IFieldNames
	SetFieldNames(value IFieldNames)
}

type IFieldOptions ¶

type IFieldOptions interface {
	IsFieldOptions() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetCurrentUser() IUserInformation
	SetCurrentUser(value IUserInformation)
	GetCustomTocStyleSeparator() *string
	SetCustomTocStyleSeparator(value *string)
	GetDefaultDocumentAuthor() *string
	SetDefaultDocumentAuthor(value *string)
	GetFieldIndexFormat() *string
	SetFieldIndexFormat(value *string)
	GetFieldUpdateCultureName() *string
	SetFieldUpdateCultureName(value *string)
	GetFieldUpdateCultureSource() *string
	SetFieldUpdateCultureSource(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetIsBidiTextSupportedOnUpdate() *bool
	SetIsBidiTextSupportedOnUpdate(value *bool)
	GetLegacyNumberFormat() *bool
	SetLegacyNumberFormat(value *bool)
	GetPreProcessCultureName() *string
	SetPreProcessCultureName(value *string)
	GetTemplateName() *string
	SetTemplateName(value *string)
	GetUseInvariantCultureNumberFormat() *bool
	SetUseInvariantCultureNumberFormat(value *bool)
	GetBuiltInTemplatesPaths() []string
	SetBuiltInTemplatesPaths(value []string)
}

type IFieldResponse ¶

type IFieldResponse interface {
	IsFieldResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetField() IField
	SetField(value IField)
}

type IFieldUpdate ¶

type IFieldUpdate interface {
	IsFieldUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLocaleId() *string
	SetLocaleId(value *string)
	GetFieldCode() *string
	SetFieldCode(value *string)
}

type IFieldsResponse ¶

type IFieldsResponse interface {
	IsFieldsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetFields() IFieldCollection
	SetFields(value IFieldCollection)
}
type IFileLink interface {
	IsFileLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetHref() *string
	SetHref(value *string)
	GetRel() *string
	SetRel(value *string)
	GetTitle() *string
	SetTitle(value *string)
	GetType() *string
	SetType(value *string)
}

type IFileReference ¶

type IFileReference interface {
	IsFileReference() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
}

type IFilesList ¶

type IFilesList interface {
	IsFilesList() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetValue() []IStorageFile
	SetValue(value []IStorageFile)
}

type IFilesUploadResult ¶

type IFilesUploadResult interface {
	IsFilesUploadResult() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetErrors() []IError
	SetErrors(value []IError)
	GetUploaded() []string
	SetUploaded(value []string)
}

type IFixedPageSaveOptionsData ¶

type IFixedPageSaveOptionsData interface {
	IsFixedPageSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
}

type IFlatOpcMacroSaveOptionsData ¶

type IFlatOpcMacroSaveOptionsData interface {
	IsFlatOpcMacroSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetCompliance() *string
	SetCompliance(value *string)
	GetCompressionLevel() *string
	SetCompressionLevel(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IFlatOpcSaveOptionsData ¶

type IFlatOpcSaveOptionsData interface {
	IsFlatOpcSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetCompliance() *string
	SetCompliance(value *string)
	GetCompressionLevel() *string
	SetCompressionLevel(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IFlatOpcTemplateMacroSaveOptionsData ¶

type IFlatOpcTemplateMacroSaveOptionsData interface {
	IsFlatOpcTemplateMacroSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetCompliance() *string
	SetCompliance(value *string)
	GetCompressionLevel() *string
	SetCompressionLevel(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IFlatOpcTemplateSaveOptionsData ¶

type IFlatOpcTemplateSaveOptionsData interface {
	IsFlatOpcTemplateSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetCompliance() *string
	SetCompliance(value *string)
	GetCompressionLevel() *string
	SetCompressionLevel(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IFont ¶

type IFont interface {
	IsFont() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetAllCaps() *bool
	SetAllCaps(value *bool)
	GetBidi() *bool
	SetBidi(value *bool)
	GetBold() *bool
	SetBold(value *bool)
	GetBoldBi() *bool
	SetBoldBi(value *bool)
	GetBorder() IBorder
	SetBorder(value IBorder)
	GetColor() IXmlColor
	SetColor(value IXmlColor)
	GetComplexScript() *bool
	SetComplexScript(value *bool)
	GetDoubleStrikeThrough() *bool
	SetDoubleStrikeThrough(value *bool)
	GetEmboss() *bool
	SetEmboss(value *bool)
	GetEngrave() *bool
	SetEngrave(value *bool)
	GetHidden() *bool
	SetHidden(value *bool)
	GetHighlightColor() IXmlColor
	SetHighlightColor(value IXmlColor)
	GetItalic() *bool
	SetItalic(value *bool)
	GetItalicBi() *bool
	SetItalicBi(value *bool)
	GetKerning() *float64
	SetKerning(value *float64)
	GetLocaleId() *int32
	SetLocaleId(value *int32)
	GetLocaleIdBi() *int32
	SetLocaleIdBi(value *int32)
	GetLocaleIdFarEast() *int32
	SetLocaleIdFarEast(value *int32)
	GetName() *string
	SetName(value *string)
	GetNameAscii() *string
	SetNameAscii(value *string)
	GetNameBi() *string
	SetNameBi(value *string)
	GetNameFarEast() *string
	SetNameFarEast(value *string)
	GetNameOther() *string
	SetNameOther(value *string)
	GetNoProofing() *bool
	SetNoProofing(value *bool)
	GetOutline() *bool
	SetOutline(value *bool)
	GetPosition() *float64
	SetPosition(value *float64)
	GetScaling() *int32
	SetScaling(value *int32)
	GetShadow() *bool
	SetShadow(value *bool)
	GetSize() *float64
	SetSize(value *float64)
	GetSizeBi() *float64
	SetSizeBi(value *float64)
	GetSmallCaps() *bool
	SetSmallCaps(value *bool)
	GetSpacing() *float64
	SetSpacing(value *float64)
	GetStrikeThrough() *bool
	SetStrikeThrough(value *bool)
	GetStyleIdentifier() *string
	SetStyleIdentifier(value *string)
	GetStyleName() *string
	SetStyleName(value *string)
	GetSubscript() *bool
	SetSubscript(value *bool)
	GetSuperscript() *bool
	SetSuperscript(value *bool)
	GetTextEffect() *string
	SetTextEffect(value *string)
	GetUnderline() *string
	SetUnderline(value *string)
	GetUnderlineColor() IXmlColor
	SetUnderlineColor(value IXmlColor)
}

type IFontInfo ¶

type IFontInfo interface {
	IsFontInfo() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetFilePath() *string
	SetFilePath(value *string)
	GetFontFamilyName() *string
	SetFontFamilyName(value *string)
	GetFullFontName() *string
	SetFullFontName(value *string)
	GetVersion() *string
	SetVersion(value *string)
}

type IFontResponse ¶

type IFontResponse interface {
	IsFontResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetFont() IFont
	SetFont(value IFont)
}

type IFootnote ¶

type IFootnote interface {
	IsFootnote() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetPosition() IDocumentPosition
	SetPosition(value IDocumentPosition)
	GetFootnoteType() *string
	SetFootnoteType(value *string)
	GetReferenceMark() *string
	SetReferenceMark(value *string)
	GetText() *string
	SetText(value *string)
	GetContent() IStoryChildNodes
	SetContent(value IStoryChildNodes)
}

type IFootnoteBase ¶

type IFootnoteBase interface {
	IsFootnoteBase() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetPosition() IPosition
	SetPosition(value IPosition)
	GetFootnoteType() *string
	SetFootnoteType(value *string)
	GetReferenceMark() *string
	SetReferenceMark(value *string)
	GetText() *string
	SetText(value *string)
}

type IFootnoteCollection ¶

type IFootnoteCollection interface {
	IsFootnoteCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetList() []IFootnote
	SetList(value []IFootnote)
}

type IFootnoteInsert ¶

type IFootnoteInsert interface {
	IsFootnoteInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetPosition() IPosition
	SetPosition(value IPosition)
	GetFootnoteType() *string
	SetFootnoteType(value *string)
	GetReferenceMark() *string
	SetReferenceMark(value *string)
	GetText() *string
	SetText(value *string)
}
type IFootnoteLink interface {
	IsFootnoteLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
}

type IFootnoteResponse ¶

type IFootnoteResponse interface {
	IsFootnoteResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetFootnote() IFootnote
	SetFootnote(value IFootnote)
}

type IFootnoteUpdate ¶

type IFootnoteUpdate interface {
	IsFootnoteUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetPosition() IPosition
	SetPosition(value IPosition)
	GetFootnoteType() *string
	SetFootnoteType(value *string)
	GetReferenceMark() *string
	SetReferenceMark(value *string)
	GetText() *string
	SetText(value *string)
}

type IFootnotesResponse ¶

type IFootnotesResponse interface {
	IsFootnotesResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetFootnotes() IFootnoteCollection
	SetFootnotes(value IFootnoteCollection)
}

type IFootnotesStatData ¶

type IFootnotesStatData interface {
	IsFootnotesStatData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetParagraphCount() *int32
	SetParagraphCount(value *int32)
	GetWordCount() *int32
	SetWordCount(value *int32)
}

type IFormField ¶

type IFormField interface {
	IsFormField() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetName() *string
	SetName(value *string)
	GetEnabled() *bool
	SetEnabled(value *bool)
	GetStatusText() *string
	SetStatusText(value *string)
	GetOwnStatus() *bool
	SetOwnStatus(value *bool)
	GetHelpText() *string
	SetHelpText(value *string)
	GetOwnHelp() *bool
	SetOwnHelp(value *bool)
	GetCalculateOnExit() *bool
	SetCalculateOnExit(value *bool)
	GetEntryMacro() *string
	SetEntryMacro(value *string)
	GetExitMacro() *string
	SetExitMacro(value *string)
}

type IFormFieldCheckbox ¶

type IFormFieldCheckbox interface {
	IsFormFieldCheckbox() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetName() *string
	SetName(value *string)
	GetEnabled() *bool
	SetEnabled(value *bool)
	GetStatusText() *string
	SetStatusText(value *string)
	GetOwnStatus() *bool
	SetOwnStatus(value *bool)
	GetHelpText() *string
	SetHelpText(value *string)
	GetOwnHelp() *bool
	SetOwnHelp(value *bool)
	GetCalculateOnExit() *bool
	SetCalculateOnExit(value *bool)
	GetEntryMacro() *string
	SetEntryMacro(value *string)
	GetExitMacro() *string
	SetExitMacro(value *string)
	GetIsCheckBoxExactSize() *bool
	SetIsCheckBoxExactSize(value *bool)
	GetCheckBoxSize() *float64
	SetCheckBoxSize(value *float64)
	GetChecked() *bool
	SetChecked(value *bool)
}

type IFormFieldCollection ¶

type IFormFieldCollection interface {
	IsFormFieldCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetList() []IFormField
	SetList(value []IFormField)
}

type IFormFieldDropDown ¶

type IFormFieldDropDown interface {
	IsFormFieldDropDown() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetName() *string
	SetName(value *string)
	GetEnabled() *bool
	SetEnabled(value *bool)
	GetStatusText() *string
	SetStatusText(value *string)
	GetOwnStatus() *bool
	SetOwnStatus(value *bool)
	GetHelpText() *string
	SetHelpText(value *string)
	GetOwnHelp() *bool
	SetOwnHelp(value *bool)
	GetCalculateOnExit() *bool
	SetCalculateOnExit(value *bool)
	GetEntryMacro() *string
	SetEntryMacro(value *string)
	GetExitMacro() *string
	SetExitMacro(value *string)
	GetDropDownItems() []string
	SetDropDownItems(value []string)
	GetDropDownSelectedIndex() *int32
	SetDropDownSelectedIndex(value *int32)
}

type IFormFieldResponse ¶

type IFormFieldResponse interface {
	IsFormFieldResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetFormField() IFormField
	SetFormField(value IFormField)
}

type IFormFieldTextInput ¶

type IFormFieldTextInput interface {
	IsFormFieldTextInput() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetName() *string
	SetName(value *string)
	GetEnabled() *bool
	SetEnabled(value *bool)
	GetStatusText() *string
	SetStatusText(value *string)
	GetOwnStatus() *bool
	SetOwnStatus(value *bool)
	GetHelpText() *string
	SetHelpText(value *string)
	GetOwnHelp() *bool
	SetOwnHelp(value *bool)
	GetCalculateOnExit() *bool
	SetCalculateOnExit(value *bool)
	GetEntryMacro() *string
	SetEntryMacro(value *string)
	GetExitMacro() *string
	SetExitMacro(value *string)
	GetTextInputFormat() *string
	SetTextInputFormat(value *string)
	GetTextInputType() *string
	SetTextInputType(value *string)
	GetTextInputDefault() *string
	SetTextInputDefault(value *string)
	GetMaxLength() *int32
	SetMaxLength(value *int32)
}

type IFormFieldsResponse ¶

type IFormFieldsResponse interface {
	IsFormFieldsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetFormFields() IFormFieldCollection
	SetFormFields(value IFormFieldCollection)
}

type IGifSaveOptionsData ¶

type IGifSaveOptionsData interface {
	IsGifSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetHorizontalResolution() *float64
	SetHorizontalResolution(value *float64)
	GetImageBrightness() *float64
	SetImageBrightness(value *float64)
	GetImageColorMode() *string
	SetImageColorMode(value *string)
	GetImageContrast() *float64
	SetImageContrast(value *float64)
	GetPaperColor() *string
	SetPaperColor(value *string)
	GetPixelFormat() *string
	SetPixelFormat(value *string)
	GetResolution() *float64
	SetResolution(value *float64)
	GetScale() *float64
	SetScale(value *float64)
	GetUseAntiAliasing() *bool
	SetUseAntiAliasing(value *bool)
	GetUseHighQualityRendering() *bool
	SetUseHighQualityRendering(value *bool)
	GetVerticalResolution() *float64
	SetVerticalResolution(value *float64)
	GetImageHeight() *int32
	SetImageHeight(value *int32)
	GetImageWidth() *int32
	SetImageWidth(value *int32)
	GetUseGdiEmfRenderer() *bool
	SetUseGdiEmfRenderer(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IHeaderFooter ¶

type IHeaderFooter interface {
	IsHeaderFooter() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetType() *string
	SetType(value *string)
	GetChildNodes() []INodeLink
	SetChildNodes(value []INodeLink)
	GetParagraphs() ILinkElement
	SetParagraphs(value ILinkElement)
	GetDrawingObjects() ILinkElement
	SetDrawingObjects(value ILinkElement)
}
type IHeaderFooterLink interface {
	IsHeaderFooterLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetType() *string
	SetType(value *string)
}

type IHeaderFooterLinkCollection ¶

type IHeaderFooterLinkCollection interface {
	IsHeaderFooterLinkCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetList() []IHeaderFooterLink
	SetList(value []IHeaderFooterLink)
}

type IHeaderFooterResponse ¶

type IHeaderFooterResponse interface {
	IsHeaderFooterResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetHeaderFooter() IHeaderFooter
	SetHeaderFooter(value IHeaderFooter)
}

type IHeaderFootersResponse ¶

type IHeaderFootersResponse interface {
	IsHeaderFootersResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetHeaderFooters() IHeaderFooterLinkCollection
	SetHeaderFooters(value IHeaderFooterLinkCollection)
}

type IHtmlFixedSaveOptionsData ¶

type IHtmlFixedSaveOptionsData interface {
	IsHtmlFixedSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetCssClassNamesPrefix() *string
	SetCssClassNamesPrefix(value *string)
	GetEncoding() *string
	SetEncoding(value *string)
	GetExportEmbeddedCss() *bool
	SetExportEmbeddedCss(value *bool)
	GetExportEmbeddedFonts() *bool
	SetExportEmbeddedFonts(value *bool)
	GetExportEmbeddedImages() *bool
	SetExportEmbeddedImages(value *bool)
	GetExportFormFields() *bool
	SetExportFormFields(value *bool)
	GetFontFormat() *string
	SetFontFormat(value *string)
	GetPageHorizontalAlignment() *string
	SetPageHorizontalAlignment(value *string)
	GetPageMargins() *float64
	SetPageMargins(value *float64)
	GetResourcesFolder() *string
	SetResourcesFolder(value *string)
	GetResourcesFolderAlias() *string
	SetResourcesFolderAlias(value *string)
	GetSaveFontFaceCssSeparately() *bool
	SetSaveFontFaceCssSeparately(value *bool)
	GetShowPageBorder() *bool
	SetShowPageBorder(value *bool)
	GetUseTargetMachineFonts() *bool
	SetUseTargetMachineFonts(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IHtmlSaveOptionsData ¶

type IHtmlSaveOptionsData interface {
	IsHtmlSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetAllowNegativeIndent() *bool
	SetAllowNegativeIndent(value *bool)
	GetCssClassNamePrefix() *string
	SetCssClassNamePrefix(value *string)
	GetCssStyleSheetFileName() *string
	SetCssStyleSheetFileName(value *string)
	GetCssStyleSheetType() *string
	SetCssStyleSheetType(value *string)
	GetDocumentSplitCriteria() *string
	SetDocumentSplitCriteria(value *string)
	GetDocumentSplitHeadingLevel() *int32
	SetDocumentSplitHeadingLevel(value *int32)
	GetEncoding() *string
	SetEncoding(value *string)
	GetExportDocumentProperties() *bool
	SetExportDocumentProperties(value *bool)
	GetExportDropDownFormFieldAsText() *bool
	SetExportDropDownFormFieldAsText(value *bool)
	GetExportFontResources() *bool
	SetExportFontResources(value *bool)
	GetExportFontsAsBase64() *bool
	SetExportFontsAsBase64(value *bool)
	GetExportHeadersFootersMode() *string
	SetExportHeadersFootersMode(value *string)
	GetExportImagesAsBase64() *bool
	SetExportImagesAsBase64(value *bool)
	GetExportLanguageInformation() *bool
	SetExportLanguageInformation(value *bool)
	GetExportListLabels() *string
	SetExportListLabels(value *string)
	GetExportOriginalUrlForLinkedImages() *bool
	SetExportOriginalUrlForLinkedImages(value *bool)
	GetExportPageMargins() *bool
	SetExportPageMargins(value *bool)
	GetExportPageSetup() *bool
	SetExportPageSetup(value *bool)
	GetExportRelativeFontSize() *bool
	SetExportRelativeFontSize(value *bool)
	GetExportRoundtripInformation() *bool
	SetExportRoundtripInformation(value *bool)
	GetExportTextInputFormFieldAsText() *bool
	SetExportTextInputFormFieldAsText(value *bool)
	GetExportTocPageNumbers() *bool
	SetExportTocPageNumbers(value *bool)
	GetExportXhtmlTransitional() *bool
	SetExportXhtmlTransitional(value *bool)
	GetFontResourcesSubsettingSizeThreshold() *int32
	SetFontResourcesSubsettingSizeThreshold(value *int32)
	GetFontsFolder() *string
	SetFontsFolder(value *string)
	GetFontsFolderAlias() *string
	SetFontsFolderAlias(value *string)
	GetHtmlVersion() *string
	SetHtmlVersion(value *string)
	GetImageResolution() *int32
	SetImageResolution(value *int32)
	GetImagesFolder() *string
	SetImagesFolder(value *string)
	GetImagesFolderAlias() *string
	SetImagesFolderAlias(value *string)
	GetMetafileFormat() *string
	SetMetafileFormat(value *string)
	GetOfficeMathOutputMode() *string
	SetOfficeMathOutputMode(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetResolveFontNames() *bool
	SetResolveFontNames(value *bool)
	GetResourceFolder() *string
	SetResourceFolder(value *string)
	GetResourceFolderAlias() *string
	SetResourceFolderAlias(value *string)
	GetScaleImageToShapeSize() *bool
	SetScaleImageToShapeSize(value *bool)
	GetTableWidthOutputMode() *string
	SetTableWidthOutputMode(value *string)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}
type IHyperlink interface {
	IsHyperlink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetDisplayText() *string
	SetDisplayText(value *string)
	GetValue() *string
	SetValue(value *string)
}

type IHyperlinkResponse ¶

type IHyperlinkResponse interface {
	IsHyperlinkResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetHyperlink() IHyperlink
	SetHyperlink(value IHyperlink)
}
type IHyperlinks interface {
	IsHyperlinks() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetHyperlinkList() []IHyperlink
	SetHyperlinkList(value []IHyperlink)
}

type IHyperlinksResponse ¶

type IHyperlinksResponse interface {
	IsHyperlinksResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetHyperlinks() IHyperlinks
	SetHyperlinks(value IHyperlinks)
}

type IImageEntry ¶

type IImageEntry interface {
	IsImageEntry() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetFileReference() IFileReference
	SetFileReference(value IFileReference)
}

type IImageEntryList ¶

type IImageEntryList interface {
	IsImageEntryList() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAppendEachImageOnNewPage() *bool
	SetAppendEachImageOnNewPage(value *bool)
	GetImageEntries() []IImageEntry
	SetImageEntries(value []IImageEntry)
}

type IImageSaveOptionsData ¶

type IImageSaveOptionsData interface {
	IsImageSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetHorizontalResolution() *float64
	SetHorizontalResolution(value *float64)
	GetImageBrightness() *float64
	SetImageBrightness(value *float64)
	GetImageColorMode() *string
	SetImageColorMode(value *string)
	GetImageContrast() *float64
	SetImageContrast(value *float64)
	GetPaperColor() *string
	SetPaperColor(value *string)
	GetPixelFormat() *string
	SetPixelFormat(value *string)
	GetResolution() *float64
	SetResolution(value *float64)
	GetScale() *float64
	SetScale(value *float64)
	GetUseAntiAliasing() *bool
	SetUseAntiAliasing(value *bool)
	GetUseHighQualityRendering() *bool
	SetUseHighQualityRendering(value *bool)
	GetVerticalResolution() *float64
	SetVerticalResolution(value *float64)
	GetImageHeight() *int32
	SetImageHeight(value *int32)
	GetImageWidth() *int32
	SetImageWidth(value *int32)
	GetUseGdiEmfRenderer() *bool
	SetUseGdiEmfRenderer(value *bool)
}

type IInfoAdditionalItem ¶

type IInfoAdditionalItem interface {
	IsInfoAdditionalItem() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetKey() *string
	SetKey(value *string)
	GetValue() *string
	SetValue(value *string)
}

type IInfoResponse ¶

type IInfoResponse interface {
	IsInfoResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetAdditionalInfo() []IInfoAdditionalItem
	SetAdditionalInfo(value []IInfoAdditionalItem)
	GetName() *string
	SetName(value *string)
	GetVersion() *string
	SetVersion(value *string)
}

type IJpegSaveOptionsData ¶

type IJpegSaveOptionsData interface {
	IsJpegSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetHorizontalResolution() *float64
	SetHorizontalResolution(value *float64)
	GetImageBrightness() *float64
	SetImageBrightness(value *float64)
	GetImageColorMode() *string
	SetImageColorMode(value *string)
	GetImageContrast() *float64
	SetImageContrast(value *float64)
	GetPaperColor() *string
	SetPaperColor(value *string)
	GetPixelFormat() *string
	SetPixelFormat(value *string)
	GetResolution() *float64
	SetResolution(value *float64)
	GetScale() *float64
	SetScale(value *float64)
	GetUseAntiAliasing() *bool
	SetUseAntiAliasing(value *bool)
	GetUseHighQualityRendering() *bool
	SetUseHighQualityRendering(value *bool)
	GetVerticalResolution() *float64
	SetVerticalResolution(value *float64)
	GetImageHeight() *int32
	SetImageHeight(value *int32)
	GetImageWidth() *int32
	SetImageWidth(value *int32)
	GetUseGdiEmfRenderer() *bool
	SetUseGdiEmfRenderer(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IJsonDataLoadOptions ¶

type IJsonDataLoadOptions interface {
	IsJsonDataLoadOptions() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAlwaysGenerateRootObject() *bool
	SetAlwaysGenerateRootObject(value *bool)
	GetExactDateTimeParseFormats() []string
	SetExactDateTimeParseFormats(value []string)
	GetSimpleValueParseMode() *string
	SetSimpleValueParseMode(value *string)
}
type ILink interface {
	IsLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetHref() *string
	SetHref(value *string)
	GetRel() *string
	SetRel(value *string)
	GetTitle() *string
	SetTitle(value *string)
	GetType() *string
	SetType(value *string)
}

type ILinkElement ¶

type ILinkElement interface {
	IsLinkElement() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
}

type IListFormat ¶

type IListFormat interface {
	IsListFormat() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetListLevelNumber() *int32
	SetListLevelNumber(value *int32)
	GetListId() *int32
	SetListId(value *int32)
	GetIsListItem() *bool
	SetIsListItem(value *bool)
}

type IListFormatUpdate ¶

type IListFormatUpdate interface {
	IsListFormatUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetListLevelNumber() *int32
	SetListLevelNumber(value *int32)
	GetListId() *int32
	SetListId(value *int32)
}

type IListInfo ¶

type IListInfo interface {
	IsListInfo() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetListId() *int32
	SetListId(value *int32)
	GetIsMultiLevel() *bool
	SetIsMultiLevel(value *bool)
	GetIsRestartAtEachSection() *bool
	SetIsRestartAtEachSection(value *bool)
	GetIsListStyleDefinition() *bool
	SetIsListStyleDefinition(value *bool)
	GetIsListStyleReference() *bool
	SetIsListStyleReference(value *bool)
	GetStyle() IStyle
	SetStyle(value IStyle)
	GetListLevels() IListLevels
	SetListLevels(value IListLevels)
}

type IListInsert ¶

type IListInsert interface {
	IsListInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetTemplate() *string
	SetTemplate(value *string)
}

type IListLevel ¶

type IListLevel interface {
	IsListLevel() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetStartAt() *int32
	SetStartAt(value *int32)
	GetNumberStyle() *string
	SetNumberStyle(value *string)
	GetNumberFormat() *string
	SetNumberFormat(value *string)
	GetAlignment() *string
	SetAlignment(value *string)
	GetIsLegal() *bool
	SetIsLegal(value *bool)
	GetRestartAfterLevel() *int32
	SetRestartAfterLevel(value *int32)
	GetTrailingCharacter() *string
	SetTrailingCharacter(value *string)
	GetFont() IFont
	SetFont(value IFont)
	GetTabPosition() *float64
	SetTabPosition(value *float64)
	GetNumberPosition() *float64
	SetNumberPosition(value *float64)
	GetTextPosition() *float64
	SetTextPosition(value *float64)
	GetLinkedStyle() IStyle
	SetLinkedStyle(value IStyle)
}

type IListLevelUpdate ¶

type IListLevelUpdate interface {
	IsListLevelUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetStartAt() *int32
	SetStartAt(value *int32)
	GetNumberStyle() *string
	SetNumberStyle(value *string)
	GetNumberFormat() *string
	SetNumberFormat(value *string)
	GetAlignment() *string
	SetAlignment(value *string)
	GetIsLegal() *bool
	SetIsLegal(value *bool)
	GetRestartAfterLevel() *int32
	SetRestartAfterLevel(value *int32)
	GetTrailingCharacter() *string
	SetTrailingCharacter(value *string)
	GetTabPosition() *float64
	SetTabPosition(value *float64)
	GetNumberPosition() *float64
	SetNumberPosition(value *float64)
	GetTextPosition() *float64
	SetTextPosition(value *float64)
}

type IListLevels ¶

type IListLevels interface {
	IsListLevels() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetListLevel() []IListLevel
	SetListLevel(value []IListLevel)
}

type IListResponse ¶

type IListResponse interface {
	IsListResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetList() IListInfo
	SetList(value IListInfo)
}

type IListUpdate ¶

type IListUpdate interface {
	IsListUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetIsRestartAtEachSection() *bool
	SetIsRestartAtEachSection(value *bool)
}

type ILists ¶

type ILists interface {
	IsLists() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetListInfo() []IListInfo
	SetListInfo(value []IListInfo)
}

type IListsResponse ¶

type IListsResponse interface {
	IsListsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetLists() ILists
	SetLists(value ILists)
}

type ILoadWebDocumentData ¶

type ILoadWebDocumentData interface {
	IsLoadWebDocumentData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetSaveOptions() ISaveOptionsData
	SetSaveOptions(value ISaveOptionsData)
	GetLoadingDocumentUrl() *string
	SetLoadingDocumentUrl(value *string)
}

type IMarkdownSaveOptionsData ¶

type IMarkdownSaveOptionsData interface {
	IsMarkdownSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetEncoding() *string
	SetEncoding(value *string)
	GetExportHeadersFootersMode() *string
	SetExportHeadersFootersMode(value *string)
	GetForcePageBreaks() *bool
	SetForcePageBreaks(value *bool)
	GetParagraphBreak() *string
	SetParagraphBreak(value *string)
	GetTableContentAlignment() *string
	SetTableContentAlignment(value *string)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IMetafileRenderingOptionsData ¶

type IMetafileRenderingOptionsData interface {
	IsMetafileRenderingOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetEmfPlusDualRenderingMode() *string
	SetEmfPlusDualRenderingMode(value *string)
	GetEmulateRasterOperations() *bool
	SetEmulateRasterOperations(value *bool)
	GetEmulateRenderingToSizeOnPage() *bool
	SetEmulateRenderingToSizeOnPage(value *bool)
	GetEmulateRenderingToSizeOnPageResolution() *int32
	SetEmulateRenderingToSizeOnPageResolution(value *int32)
	GetRenderingMode() *string
	SetRenderingMode(value *string)
	GetUseEmfEmbeddedToWmf() *bool
	SetUseEmfEmbeddedToWmf(value *bool)
}

type IMhtmlSaveOptionsData ¶

type IMhtmlSaveOptionsData interface {
	IsMhtmlSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetAllowNegativeIndent() *bool
	SetAllowNegativeIndent(value *bool)
	GetCssClassNamePrefix() *string
	SetCssClassNamePrefix(value *string)
	GetCssStyleSheetFileName() *string
	SetCssStyleSheetFileName(value *string)
	GetCssStyleSheetType() *string
	SetCssStyleSheetType(value *string)
	GetDocumentSplitCriteria() *string
	SetDocumentSplitCriteria(value *string)
	GetDocumentSplitHeadingLevel() *int32
	SetDocumentSplitHeadingLevel(value *int32)
	GetEncoding() *string
	SetEncoding(value *string)
	GetExportDocumentProperties() *bool
	SetExportDocumentProperties(value *bool)
	GetExportDropDownFormFieldAsText() *bool
	SetExportDropDownFormFieldAsText(value *bool)
	GetExportFontResources() *bool
	SetExportFontResources(value *bool)
	GetExportFontsAsBase64() *bool
	SetExportFontsAsBase64(value *bool)
	GetExportHeadersFootersMode() *string
	SetExportHeadersFootersMode(value *string)
	GetExportImagesAsBase64() *bool
	SetExportImagesAsBase64(value *bool)
	GetExportLanguageInformation() *bool
	SetExportLanguageInformation(value *bool)
	GetExportListLabels() *string
	SetExportListLabels(value *string)
	GetExportOriginalUrlForLinkedImages() *bool
	SetExportOriginalUrlForLinkedImages(value *bool)
	GetExportPageMargins() *bool
	SetExportPageMargins(value *bool)
	GetExportPageSetup() *bool
	SetExportPageSetup(value *bool)
	GetExportRelativeFontSize() *bool
	SetExportRelativeFontSize(value *bool)
	GetExportRoundtripInformation() *bool
	SetExportRoundtripInformation(value *bool)
	GetExportTextInputFormFieldAsText() *bool
	SetExportTextInputFormFieldAsText(value *bool)
	GetExportTocPageNumbers() *bool
	SetExportTocPageNumbers(value *bool)
	GetExportXhtmlTransitional() *bool
	SetExportXhtmlTransitional(value *bool)
	GetFontResourcesSubsettingSizeThreshold() *int32
	SetFontResourcesSubsettingSizeThreshold(value *int32)
	GetFontsFolder() *string
	SetFontsFolder(value *string)
	GetFontsFolderAlias() *string
	SetFontsFolderAlias(value *string)
	GetHtmlVersion() *string
	SetHtmlVersion(value *string)
	GetImageResolution() *int32
	SetImageResolution(value *int32)
	GetImagesFolder() *string
	SetImagesFolder(value *string)
	GetImagesFolderAlias() *string
	SetImagesFolderAlias(value *string)
	GetMetafileFormat() *string
	SetMetafileFormat(value *string)
	GetOfficeMathOutputMode() *string
	SetOfficeMathOutputMode(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetResolveFontNames() *bool
	SetResolveFontNames(value *bool)
	GetResourceFolder() *string
	SetResourceFolder(value *string)
	GetResourceFolderAlias() *string
	SetResourceFolderAlias(value *string)
	GetScaleImageToShapeSize() *bool
	SetScaleImageToShapeSize(value *bool)
	GetTableWidthOutputMode() *string
	SetTableWidthOutputMode(value *string)
	GetExportCidUrlsForMhtmlResources() *bool
	SetExportCidUrlsForMhtmlResources(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IModificationOperationResult ¶

type IModificationOperationResult interface {
	IsModificationOperationResult() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetDest() IFileLink
	SetDest(value IFileLink)
	GetSource() IFileLink
	SetSource(value IFileLink)
}
type INodeLink interface {
	IsNodeLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
}

type IOdtSaveOptionsData ¶

type IOdtSaveOptionsData interface {
	IsOdtSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetIsStrictSchema11() *bool
	SetIsStrictSchema11(value *bool)
	GetMeasureUnit() *string
	SetMeasureUnit(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}
type IOfficeMathLink interface {
	IsOfficeMathLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
}

type IOfficeMathObject ¶

type IOfficeMathObject interface {
	IsOfficeMathObject() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetContent() IStoryChildNodes
	SetContent(value IStoryChildNodes)
	GetDisplayType() *string
	SetDisplayType(value *string)
	GetJustification() *string
	SetJustification(value *string)
	GetMathObjectType() *string
	SetMathObjectType(value *string)
}

type IOfficeMathObjectResponse ¶

type IOfficeMathObjectResponse interface {
	IsOfficeMathObjectResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetOfficeMathObject() IOfficeMathObject
	SetOfficeMathObject(value IOfficeMathObject)
}

type IOfficeMathObjectsCollection ¶

type IOfficeMathObjectsCollection interface {
	IsOfficeMathObjectsCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetList() []IOfficeMathObject
	SetList(value []IOfficeMathObject)
}

type IOfficeMathObjectsResponse ¶

type IOfficeMathObjectsResponse interface {
	IsOfficeMathObjectsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetOfficeMathObjects() IOfficeMathObjectsCollection
	SetOfficeMathObjects(value IOfficeMathObjectsCollection)
}

type IOoxmlSaveOptionsData ¶

type IOoxmlSaveOptionsData interface {
	IsOoxmlSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
	GetCompliance() *string
	SetCompliance(value *string)
	GetCompressionLevel() *string
	SetCompressionLevel(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
}

type IOpenXpsSaveOptionsData ¶

type IOpenXpsSaveOptionsData interface {
	IsOpenXpsSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetBookmarksOutlineLevel() *int32
	SetBookmarksOutlineLevel(value *int32)
	GetHeadingsOutlineLevels() *int32
	SetHeadingsOutlineLevels(value *int32)
	GetOutlineOptions() IOutlineOptionsData
	SetOutlineOptions(value IOutlineOptionsData)
	GetUseBookFoldPrintingSettings() *bool
	SetUseBookFoldPrintingSettings(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IOptimizationOptions ¶

type IOptimizationOptions interface {
	IsOptimizationOptions() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetMsWordVersion() *string
	SetMsWordVersion(value *string)
}

type IOttSaveOptionsData ¶

type IOttSaveOptionsData interface {
	IsOttSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetIsStrictSchema11() *bool
	SetIsStrictSchema11(value *bool)
	GetMeasureUnit() *string
	SetMeasureUnit(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IOutlineOptionsData ¶

type IOutlineOptionsData interface {
	IsOutlineOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetCreateMissingOutlineLevels() *bool
	SetCreateMissingOutlineLevels(value *bool)
	GetCreateOutlinesForHeadingsInTables() *bool
	SetCreateOutlinesForHeadingsInTables(value *bool)
	GetDefaultBookmarksOutlineLevel() *int32
	SetDefaultBookmarksOutlineLevel(value *int32)
	GetExpandedOutlineLevels() *int32
	SetExpandedOutlineLevels(value *int32)
	GetHeadingsOutlineLevels() *int32
	SetHeadingsOutlineLevels(value *int32)
	GetBookmarksOutlineLevels() []IBookmarksOutlineLevelData
	SetBookmarksOutlineLevels(value []IBookmarksOutlineLevelData)
}

type IPageNumber ¶

type IPageNumber interface {
	IsPageNumber() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAlignment() *string
	SetAlignment(value *string)
	GetFormat() *string
	SetFormat(value *string)
	GetIsTop() *bool
	SetIsTop(value *bool)
	GetPageStartingNumber() *int32
	SetPageStartingNumber(value *int32)
	GetSetPageNumberOnFirstPage() *bool
	SetSetPageNumberOnFirstPage(value *bool)
}

type IPageSetup ¶

type IPageSetup interface {
	IsPageSetup() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetBidi() *bool
	SetBidi(value *bool)
	GetBorderAlwaysInFront() *bool
	SetBorderAlwaysInFront(value *bool)
	GetBorderAppliesTo() *string
	SetBorderAppliesTo(value *string)
	GetBorderDistanceFrom() *string
	SetBorderDistanceFrom(value *string)
	GetBottomMargin() *float64
	SetBottomMargin(value *float64)
	GetDifferentFirstPageHeaderFooter() *bool
	SetDifferentFirstPageHeaderFooter(value *bool)
	GetFirstPageTray() *int32
	SetFirstPageTray(value *int32)
	GetFooterDistance() *float64
	SetFooterDistance(value *float64)
	GetGutter() *float64
	SetGutter(value *float64)
	GetHeaderDistance() *float64
	SetHeaderDistance(value *float64)
	GetLeftMargin() *float64
	SetLeftMargin(value *float64)
	GetLineNumberCountBy() *int32
	SetLineNumberCountBy(value *int32)
	GetLineNumberDistanceFromText() *float64
	SetLineNumberDistanceFromText(value *float64)
	GetLineNumberRestartMode() *string
	SetLineNumberRestartMode(value *string)
	GetLineStartingNumber() *int32
	SetLineStartingNumber(value *int32)
	GetOrientation() *string
	SetOrientation(value *string)
	GetOtherPagesTray() *int32
	SetOtherPagesTray(value *int32)
	GetPageHeight() *float64
	SetPageHeight(value *float64)
	GetPageNumberStyle() *string
	SetPageNumberStyle(value *string)
	GetPageStartingNumber() *int32
	SetPageStartingNumber(value *int32)
	GetPageWidth() *float64
	SetPageWidth(value *float64)
	GetPaperSize() *string
	SetPaperSize(value *string)
	GetRestartPageNumbering() *bool
	SetRestartPageNumbering(value *bool)
	GetRightMargin() *float64
	SetRightMargin(value *float64)
	GetRtlGutter() *bool
	SetRtlGutter(value *bool)
	GetSectionStart() *string
	SetSectionStart(value *string)
	GetSuppressEndnotes() *bool
	SetSuppressEndnotes(value *bool)
	GetTopMargin() *float64
	SetTopMargin(value *float64)
	GetVerticalAlignment() *string
	SetVerticalAlignment(value *string)
}

type IPageStatData ¶

type IPageStatData interface {
	IsPageStatData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetFootnotesStatData() IFootnotesStatData
	SetFootnotesStatData(value IFootnotesStatData)
	GetParagraphCount() *int32
	SetParagraphCount(value *int32)
	GetWordCount() *int32
	SetWordCount(value *int32)
	GetPageNumber() *int32
	SetPageNumber(value *int32)
}

type IParagraph ¶

type IParagraph interface {
	IsParagraph() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetChildNodes() []INodeLink
	SetChildNodes(value []INodeLink)
}

type IParagraphFormat ¶

type IParagraphFormat interface {
	IsParagraphFormat() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetAddSpaceBetweenFarEastAndAlpha() *bool
	SetAddSpaceBetweenFarEastAndAlpha(value *bool)
	GetAddSpaceBetweenFarEastAndDigit() *bool
	SetAddSpaceBetweenFarEastAndDigit(value *bool)
	GetAlignment() *string
	SetAlignment(value *string)
	GetBidi() *bool
	SetBidi(value *bool)
	GetDropCapPosition() *string
	SetDropCapPosition(value *string)
	GetFirstLineIndent() *float64
	SetFirstLineIndent(value *float64)
	GetKeepTogether() *bool
	SetKeepTogether(value *bool)
	GetKeepWithNext() *bool
	SetKeepWithNext(value *bool)
	GetLeftIndent() *float64
	SetLeftIndent(value *float64)
	GetLineSpacing() *float64
	SetLineSpacing(value *float64)
	GetLineSpacingRule() *string
	SetLineSpacingRule(value *string)
	GetLinesToDrop() *int32
	SetLinesToDrop(value *int32)
	GetNoSpaceBetweenParagraphsOfSameStyle() *bool
	SetNoSpaceBetweenParagraphsOfSameStyle(value *bool)
	GetOutlineLevel() *string
	SetOutlineLevel(value *string)
	GetPageBreakBefore() *bool
	SetPageBreakBefore(value *bool)
	GetRightIndent() *float64
	SetRightIndent(value *float64)
	GetSpaceAfter() *float64
	SetSpaceAfter(value *float64)
	GetSpaceAfterAuto() *bool
	SetSpaceAfterAuto(value *bool)
	GetSpaceBefore() *float64
	SetSpaceBefore(value *float64)
	GetSpaceBeforeAuto() *bool
	SetSpaceBeforeAuto(value *bool)
	GetStyleIdentifier() *string
	SetStyleIdentifier(value *string)
	GetStyleName() *string
	SetStyleName(value *string)
	GetSuppressAutoHyphens() *bool
	SetSuppressAutoHyphens(value *bool)
	GetSuppressLineNumbers() *bool
	SetSuppressLineNumbers(value *bool)
	GetWidowControl() *bool
	SetWidowControl(value *bool)
	GetShading() IShading
	SetShading(value IShading)
	GetIsListItem() *bool
	SetIsListItem(value *bool)
	GetIsHeading() *bool
	SetIsHeading(value *bool)
}

type IParagraphFormatBase ¶

type IParagraphFormatBase interface {
	IsParagraphFormatBase() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetAddSpaceBetweenFarEastAndAlpha() *bool
	SetAddSpaceBetweenFarEastAndAlpha(value *bool)
	GetAddSpaceBetweenFarEastAndDigit() *bool
	SetAddSpaceBetweenFarEastAndDigit(value *bool)
	GetAlignment() *string
	SetAlignment(value *string)
	GetBidi() *bool
	SetBidi(value *bool)
	GetDropCapPosition() *string
	SetDropCapPosition(value *string)
	GetFirstLineIndent() *float64
	SetFirstLineIndent(value *float64)
	GetKeepTogether() *bool
	SetKeepTogether(value *bool)
	GetKeepWithNext() *bool
	SetKeepWithNext(value *bool)
	GetLeftIndent() *float64
	SetLeftIndent(value *float64)
	GetLineSpacing() *float64
	SetLineSpacing(value *float64)
	GetLineSpacingRule() *string
	SetLineSpacingRule(value *string)
	GetLinesToDrop() *int32
	SetLinesToDrop(value *int32)
	GetNoSpaceBetweenParagraphsOfSameStyle() *bool
	SetNoSpaceBetweenParagraphsOfSameStyle(value *bool)
	GetOutlineLevel() *string
	SetOutlineLevel(value *string)
	GetPageBreakBefore() *bool
	SetPageBreakBefore(value *bool)
	GetRightIndent() *float64
	SetRightIndent(value *float64)
	GetSpaceAfter() *float64
	SetSpaceAfter(value *float64)
	GetSpaceAfterAuto() *bool
	SetSpaceAfterAuto(value *bool)
	GetSpaceBefore() *float64
	SetSpaceBefore(value *float64)
	GetSpaceBeforeAuto() *bool
	SetSpaceBeforeAuto(value *bool)
	GetStyleIdentifier() *string
	SetStyleIdentifier(value *string)
	GetStyleName() *string
	SetStyleName(value *string)
	GetSuppressAutoHyphens() *bool
	SetSuppressAutoHyphens(value *bool)
	GetSuppressLineNumbers() *bool
	SetSuppressLineNumbers(value *bool)
	GetWidowControl() *bool
	SetWidowControl(value *bool)
	GetShading() IShading
	SetShading(value IShading)
}

type IParagraphFormatResponse ¶

type IParagraphFormatResponse interface {
	IsParagraphFormatResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetParagraphFormat() IParagraphFormat
	SetParagraphFormat(value IParagraphFormat)
}

type IParagraphFormatUpdate ¶

type IParagraphFormatUpdate interface {
	IsParagraphFormatUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetAddSpaceBetweenFarEastAndAlpha() *bool
	SetAddSpaceBetweenFarEastAndAlpha(value *bool)
	GetAddSpaceBetweenFarEastAndDigit() *bool
	SetAddSpaceBetweenFarEastAndDigit(value *bool)
	GetAlignment() *string
	SetAlignment(value *string)
	GetBidi() *bool
	SetBidi(value *bool)
	GetDropCapPosition() *string
	SetDropCapPosition(value *string)
	GetFirstLineIndent() *float64
	SetFirstLineIndent(value *float64)
	GetKeepTogether() *bool
	SetKeepTogether(value *bool)
	GetKeepWithNext() *bool
	SetKeepWithNext(value *bool)
	GetLeftIndent() *float64
	SetLeftIndent(value *float64)
	GetLineSpacing() *float64
	SetLineSpacing(value *float64)
	GetLineSpacingRule() *string
	SetLineSpacingRule(value *string)
	GetLinesToDrop() *int32
	SetLinesToDrop(value *int32)
	GetNoSpaceBetweenParagraphsOfSameStyle() *bool
	SetNoSpaceBetweenParagraphsOfSameStyle(value *bool)
	GetOutlineLevel() *string
	SetOutlineLevel(value *string)
	GetPageBreakBefore() *bool
	SetPageBreakBefore(value *bool)
	GetRightIndent() *float64
	SetRightIndent(value *float64)
	GetSpaceAfter() *float64
	SetSpaceAfter(value *float64)
	GetSpaceAfterAuto() *bool
	SetSpaceAfterAuto(value *bool)
	GetSpaceBefore() *float64
	SetSpaceBefore(value *float64)
	GetSpaceBeforeAuto() *bool
	SetSpaceBeforeAuto(value *bool)
	GetStyleIdentifier() *string
	SetStyleIdentifier(value *string)
	GetStyleName() *string
	SetStyleName(value *string)
	GetSuppressAutoHyphens() *bool
	SetSuppressAutoHyphens(value *bool)
	GetSuppressLineNumbers() *bool
	SetSuppressLineNumbers(value *bool)
	GetWidowControl() *bool
	SetWidowControl(value *bool)
	GetShading() IShading
	SetShading(value IShading)
}

type IParagraphInsert ¶

type IParagraphInsert interface {
	IsParagraphInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetText() *string
	SetText(value *string)
	GetPosition() IPosition
	SetPosition(value IPosition)
}
type IParagraphLink interface {
	IsParagraphLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetText() *string
	SetText(value *string)
}

type IParagraphLinkCollection ¶

type IParagraphLinkCollection interface {
	IsParagraphLinkCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetParagraphLinkList() []IParagraphLink
	SetParagraphLinkList(value []IParagraphLink)
}

type IParagraphLinkCollectionResponse ¶

type IParagraphLinkCollectionResponse interface {
	IsParagraphLinkCollectionResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetParagraphs() IParagraphLinkCollection
	SetParagraphs(value IParagraphLinkCollection)
}

type IParagraphListFormatResponse ¶

type IParagraphListFormatResponse interface {
	IsParagraphListFormatResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetListFormat() IListFormat
	SetListFormat(value IListFormat)
}

type IParagraphResponse ¶

type IParagraphResponse interface {
	IsParagraphResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetParagraph() IParagraph
	SetParagraph(value IParagraph)
}

type IPclSaveOptionsData ¶

type IPclSaveOptionsData interface {
	IsPclSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetFalllbackFontName() *string
	SetFalllbackFontName(value *string)
	GetRasterizeTransformedElements() *bool
	SetRasterizeTransformedElements(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IPdfDigitalSignatureDetailsData ¶

type IPdfDigitalSignatureDetailsData interface {
	IsPdfDigitalSignatureDetailsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetCertificateFilename() *string
	SetCertificateFilename(value *string)
	GetHashAlgorithm() *string
	SetHashAlgorithm(value *string)
	GetLocation() *string
	SetLocation(value *string)
	GetReason() *string
	SetReason(value *string)
	GetSignatureDate() *Time
	SetSignatureDate(value *Time)
}

type IPdfEncryptionDetailsData ¶

type IPdfEncryptionDetailsData interface {
	IsPdfEncryptionDetailsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetOwnerPassword() *string
	SetOwnerPassword(value *string)
	GetPermissions() []string
	SetPermissions(value []string)
	GetUserPassword() *string
	SetUserPassword(value *string)
}

type IPdfSaveOptionsData ¶

type IPdfSaveOptionsData interface {
	IsPdfSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetCacheBackgroundGraphics() *bool
	SetCacheBackgroundGraphics(value *bool)
	GetCompliance() *string
	SetCompliance(value *string)
	GetCreateNoteHyperlinks() *bool
	SetCreateNoteHyperlinks(value *bool)
	GetCustomPropertiesExport() *string
	SetCustomPropertiesExport(value *string)
	GetDigitalSignatureDetails() IPdfDigitalSignatureDetailsData
	SetDigitalSignatureDetails(value IPdfDigitalSignatureDetailsData)
	GetDisplayDocTitle() *bool
	SetDisplayDocTitle(value *bool)
	GetDownsampleOptions() IDownsampleOptionsData
	SetDownsampleOptions(value IDownsampleOptionsData)
	GetEmbedAttachments() *bool
	SetEmbedAttachments(value *bool)
	GetEmbedFullFonts() *bool
	SetEmbedFullFonts(value *bool)
	GetEncryptionDetails() IPdfEncryptionDetailsData
	SetEncryptionDetails(value IPdfEncryptionDetailsData)
	GetExportDocumentStructure() *bool
	SetExportDocumentStructure(value *bool)
	GetExportLanguageToSpanTag() *bool
	SetExportLanguageToSpanTag(value *bool)
	GetFontEmbeddingMode() *string
	SetFontEmbeddingMode(value *string)
	GetHeaderFooterBookmarksExportMode() *string
	SetHeaderFooterBookmarksExportMode(value *string)
	GetImageColorSpaceExportMode() *string
	SetImageColorSpaceExportMode(value *string)
	GetImageCompression() *string
	SetImageCompression(value *string)
	GetInterpolateImages() *bool
	SetInterpolateImages(value *bool)
	GetOpenHyperlinksInNewWindow() *bool
	SetOpenHyperlinksInNewWindow(value *bool)
	GetOutlineOptions() IOutlineOptionsData
	SetOutlineOptions(value IOutlineOptionsData)
	GetPageMode() *string
	SetPageMode(value *string)
	GetPreblendImages() *bool
	SetPreblendImages(value *bool)
	GetPreserveFormFields() *bool
	SetPreserveFormFields(value *bool)
	GetTextCompression() *string
	SetTextCompression(value *string)
	GetUseBookFoldPrintingSettings() *bool
	SetUseBookFoldPrintingSettings(value *bool)
	GetUseCoreFonts() *bool
	SetUseCoreFonts(value *bool)
	GetZoomBehavior() *string
	SetZoomBehavior(value *string)
	GetZoomFactor() *int32
	SetZoomFactor(value *int32)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IPngSaveOptionsData ¶

type IPngSaveOptionsData interface {
	IsPngSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetHorizontalResolution() *float64
	SetHorizontalResolution(value *float64)
	GetImageBrightness() *float64
	SetImageBrightness(value *float64)
	GetImageColorMode() *string
	SetImageColorMode(value *string)
	GetImageContrast() *float64
	SetImageContrast(value *float64)
	GetPaperColor() *string
	SetPaperColor(value *string)
	GetPixelFormat() *string
	SetPixelFormat(value *string)
	GetResolution() *float64
	SetResolution(value *float64)
	GetScale() *float64
	SetScale(value *float64)
	GetUseAntiAliasing() *bool
	SetUseAntiAliasing(value *bool)
	GetUseHighQualityRendering() *bool
	SetUseHighQualityRendering(value *bool)
	GetVerticalResolution() *float64
	SetVerticalResolution(value *float64)
	GetImageHeight() *int32
	SetImageHeight(value *int32)
	GetImageWidth() *int32
	SetImageWidth(value *int32)
	GetUseGdiEmfRenderer() *bool
	SetUseGdiEmfRenderer(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IPosition ¶

type IPosition interface {
	IsPosition() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetNodeId() *string
	SetNodeId(value *string)
	GetType() *string
	SetType(value *string)
}

type IPositionAfterNode ¶

type IPositionAfterNode interface {
	IsPositionAfterNode() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetNodeId() *string
	SetNodeId(value *string)
	GetType() *string
	SetType(value *string)
}

type IPositionBeforeNode ¶

type IPositionBeforeNode interface {
	IsPositionBeforeNode() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetNodeId() *string
	SetNodeId(value *string)
	GetType() *string
	SetType(value *string)
}

type IPositionInsideNode ¶

type IPositionInsideNode interface {
	IsPositionInsideNode() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetNodeId() *string
	SetNodeId(value *string)
	GetType() *string
	SetType(value *string)
	GetOffset() *int32
	SetOffset(value *int32)
}

type IPreferredWidth ¶

type IPreferredWidth interface {
	IsPreferredWidth() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetType() *string
	SetType(value *string)
	GetValue() *float64
	SetValue(value *float64)
}

type IProtectionData ¶

type IProtectionData interface {
	IsProtectionData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetProtectionType() *string
	SetProtectionType(value *string)
}

type IProtectionDataResponse ¶

type IProtectionDataResponse interface {
	IsProtectionDataResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetDocumentLink() IFileLink
	SetDocumentLink(value IFileLink)
	GetProtectionData() IProtectionData
	SetProtectionData(value IProtectionData)
}

type IProtectionRequest ¶

type IProtectionRequest interface {
	IsProtectionRequest() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetNewPassword() *string
	SetNewPassword(value *string)
	GetPassword() *string
	SetPassword(value *string)
	GetProtectionType() *string
	SetProtectionType(value *string)
}

type IProtectionRequestBase ¶

type IProtectionRequestBase interface {
	IsProtectionRequestBase() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
}

type IProtectionRequestV2 ¶

type IProtectionRequestV2 interface {
	IsProtectionRequestV2() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetProtectionPassword() *string
	SetProtectionPassword(value *string)
	GetProtectionType() *string
	SetProtectionType(value *string)
}

type IPsSaveOptionsData ¶

type IPsSaveOptionsData interface {
	IsPsSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetUseBookFoldPrintingSettings() *bool
	SetUseBookFoldPrintingSettings(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IPublicKeyResponse ¶

type IPublicKeyResponse interface {
	IsPublicKeyResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetExponent() *string
	SetExponent(value *string)
	GetModulus() *string
	SetModulus(value *string)
}

type IRangeDocument ¶

type IRangeDocument interface {
	IsRangeDocument() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetDocumentName() *string
	SetDocumentName(value *string)
}

type IRangeTextResponse ¶

type IRangeTextResponse interface {
	IsRangeTextResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetText() *string
	SetText(value *string)
}

type IReplaceRange ¶

type IReplaceRange interface {
	IsReplaceRange() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetText() *string
	SetText(value *string)
	GetTextType() *string
	SetTextType(value *string)
}

type IReplaceTextParameters ¶

type IReplaceTextParameters interface {
	IsReplaceTextParameters() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetIsMatchCase() *bool
	SetIsMatchCase(value *bool)
	GetIsMatchWholeWord() *bool
	SetIsMatchWholeWord(value *bool)
	GetIsOldValueRegex() *bool
	SetIsOldValueRegex(value *bool)
	GetNewValue() *string
	SetNewValue(value *string)
	GetOldValue() *string
	SetOldValue(value *string)
}

type IReplaceTextResponse ¶

type IReplaceTextResponse interface {
	IsReplaceTextResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetDocumentLink() IFileLink
	SetDocumentLink(value IFileLink)
	GetMatches() *int32
	SetMatches(value *int32)
}

type IReportEngineSettings ¶

type IReportEngineSettings interface {
	IsReportEngineSettings() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetCsvDataLoadOptions() ICsvDataLoadOptions
	SetCsvDataLoadOptions(value ICsvDataLoadOptions)
	GetDataSourceName() *string
	SetDataSourceName(value *string)
	GetDataSourceType() *string
	SetDataSourceType(value *string)
	GetJsonDataLoadOptions() IJsonDataLoadOptions
	SetJsonDataLoadOptions(value IJsonDataLoadOptions)
	GetReportBuildOptions() []string
	SetReportBuildOptions(value []string)
	GetXmlDataLoadOptions() IXmlDataLoadOptions
	SetXmlDataLoadOptions(value IXmlDataLoadOptions)
}

type IRevisionsModificationResponse ¶

type IRevisionsModificationResponse interface {
	IsRevisionsModificationResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetResult() IModificationOperationResult
	SetResult(value IModificationOperationResult)
}

type IRtfSaveOptionsData ¶

type IRtfSaveOptionsData interface {
	IsRtfSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetExportCompactSize() *bool
	SetExportCompactSize(value *bool)
	GetExportImagesForOldReaders() *bool
	SetExportImagesForOldReaders(value *bool)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveImagesAsWmf() *bool
	SetSaveImagesAsWmf(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IRun ¶

type IRun interface {
	IsRun() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetText() *string
	SetText(value *string)
}

type IRunBase ¶

type IRunBase interface {
	IsRunBase() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetText() *string
	SetText(value *string)
}

type IRunInsert ¶

type IRunInsert interface {
	IsRunInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetText() *string
	SetText(value *string)
	GetPosition() IPosition
	SetPosition(value IPosition)
}
type IRunLink interface {
	IsRunLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetText() *string
	SetText(value *string)
}

type IRunResponse ¶

type IRunResponse interface {
	IsRunResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetRun() IRun
	SetRun(value IRun)
}

type IRunUpdate ¶

type IRunUpdate interface {
	IsRunUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetText() *string
	SetText(value *string)
}

type IRuns ¶

type IRuns interface {
	IsRuns() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetList() []IRun
	SetList(value []IRun)
}

type IRunsResponse ¶

type IRunsResponse interface {
	IsRunsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetRuns() IRuns
	SetRuns(value IRuns)
}

type ISaveOptionsData ¶

type ISaveOptionsData interface {
	IsSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type ISaveResponse ¶

type ISaveResponse interface {
	IsSaveResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetSaveResult() ISaveResult
	SetSaveResult(value ISaveResult)
}

type ISaveResult ¶

type ISaveResult interface {
	IsSaveResult() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetDestDocument() IFileLink
	SetDestDocument(value IFileLink)
	GetSourceDocument() IFileLink
	SetSourceDocument(value IFileLink)
	GetAdditionalItems() []IFileLink
	SetAdditionalItems(value []IFileLink)
}

type ISearchResponse ¶

type ISearchResponse interface {
	IsSearchResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetSearchingPattern() *string
	SetSearchingPattern(value *string)
	GetSearchResults() ISearchResultsCollection
	SetSearchResults(value ISearchResultsCollection)
}

type ISearchResult ¶

type ISearchResult interface {
	IsSearchResult() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRangeStart() IDocumentPosition
	SetRangeStart(value IDocumentPosition)
	GetRangeEnd() IDocumentPosition
	SetRangeEnd(value IDocumentPosition)
}

type ISearchResultsCollection ¶

type ISearchResultsCollection interface {
	IsSearchResultsCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetResultsList() []ISearchResult
	SetResultsList(value []ISearchResult)
}

type ISection ¶

type ISection interface {
	IsSection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetChildNodes() []INodeLink
	SetChildNodes(value []INodeLink)
	GetParagraphs() ILinkElement
	SetParagraphs(value ILinkElement)
	GetPageSetup() ILinkElement
	SetPageSetup(value ILinkElement)
	GetHeaderFooters() ILinkElement
	SetHeaderFooters(value ILinkElement)
	GetTables() ILinkElement
	SetTables(value ILinkElement)
}
type ISectionLink interface {
	IsSectionLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
}

type ISectionLinkCollection ¶

type ISectionLinkCollection interface {
	IsSectionLinkCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetSectionLinkList() []ISectionLink
	SetSectionLinkList(value []ISectionLink)
}

type ISectionLinkCollectionResponse ¶

type ISectionLinkCollectionResponse interface {
	IsSectionLinkCollectionResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetSections() ISectionLinkCollection
	SetSections(value ISectionLinkCollection)
}

type ISectionPageSetupResponse ¶

type ISectionPageSetupResponse interface {
	IsSectionPageSetupResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetPageSetup() IPageSetup
	SetPageSetup(value IPageSetup)
}

type ISectionResponse ¶

type ISectionResponse interface {
	IsSectionResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetSection() ISection
	SetSection(value ISection)
}

type IShading ¶

type IShading interface {
	IsShading() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetBackgroundPatternColor() IXmlColor
	SetBackgroundPatternColor(value IXmlColor)
	GetForegroundPatternColor() IXmlColor
	SetForegroundPatternColor(value IXmlColor)
	GetTexture() *string
	SetTexture(value *string)
}

type ISplitDocumentResponse ¶

type ISplitDocumentResponse interface {
	IsSplitDocumentResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetSplitResult() ISplitDocumentResult
	SetSplitResult(value ISplitDocumentResult)
}

type ISplitDocumentResult ¶

type ISplitDocumentResult interface {
	IsSplitDocumentResult() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetSourceDocument() IFileLink
	SetSourceDocument(value IFileLink)
	GetZippedPages() IFileLink
	SetZippedPages(value IFileLink)
	GetPages() []IFileLink
	SetPages(value []IFileLink)
}

type IStatDataResponse ¶

type IStatDataResponse interface {
	IsStatDataResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetDocumentLink() IFileLink
	SetDocumentLink(value IFileLink)
	GetStatData() IDocumentStatData
	SetStatData(value IDocumentStatData)
}

type IStorageFile ¶

type IStorageFile interface {
	IsStorageFile() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetIsFolder() *bool
	SetIsFolder(value *bool)
	GetModifiedDate() *Time
	SetModifiedDate(value *Time)
	GetName() *string
	SetName(value *string)
	GetPath() *string
	SetPath(value *string)
	GetSize() *int32
	SetSize(value *int32)
}

type IStoryChildNodes ¶

type IStoryChildNodes interface {
	IsStoryChildNodes() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetChildNodes() []INodeLink
	SetChildNodes(value []INodeLink)
}

type IStructuredDocumentTag ¶

type IStructuredDocumentTag interface {
	IsStructuredDocumentTag() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetListItems() []IStructuredDocumentTagListItem
	SetListItems(value []IStructuredDocumentTagListItem)
	GetChecked() *bool
	SetChecked(value *bool)
	GetAppearance() *string
	SetAppearance(value *string)
	GetDateDisplayLocale() *int32
	SetDateDisplayLocale(value *int32)
	GetDateDisplayFormat() *string
	SetDateDisplayFormat(value *string)
	GetFullDate() *Time
	SetFullDate(value *Time)
	GetTitle() *string
	SetTitle(value *string)
	GetDateStorageFormat() *string
	SetDateStorageFormat(value *string)
	GetBuildingBlockGallery() *string
	SetBuildingBlockGallery(value *string)
	GetBuildingBlockCategory() *string
	SetBuildingBlockCategory(value *string)
	GetMultiline() *bool
	SetMultiline(value *bool)
	GetColor() IXmlColor
	SetColor(value IXmlColor)
	GetStyleName() *string
	SetStyleName(value *string)
	GetCalendarType() *string
	SetCalendarType(value *string)
	GetIsTemporary() *bool
	SetIsTemporary(value *bool)
	GetPlaceholderName() *string
	SetPlaceholderName(value *string)
	GetLockContentControl() *bool
	SetLockContentControl(value *bool)
	GetLockContents() *bool
	SetLockContents(value *bool)
	GetIsShowingPlaceholderText() *bool
	SetIsShowingPlaceholderText(value *bool)
	GetTag() *string
	SetTag(value *string)
	GetId() *int32
	SetId(value *int32)
	GetWordOpenXML() *string
	SetWordOpenXML(value *string)
	GetLevel() *string
	SetLevel(value *string)
	GetSdtType() *string
	SetSdtType(value *string)
}

type IStructuredDocumentTagBase ¶

type IStructuredDocumentTagBase interface {
	IsStructuredDocumentTagBase() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetListItems() []IStructuredDocumentTagListItem
	SetListItems(value []IStructuredDocumentTagListItem)
	GetChecked() *bool
	SetChecked(value *bool)
	GetAppearance() *string
	SetAppearance(value *string)
	GetDateDisplayLocale() *int32
	SetDateDisplayLocale(value *int32)
	GetDateDisplayFormat() *string
	SetDateDisplayFormat(value *string)
	GetFullDate() *Time
	SetFullDate(value *Time)
	GetTitle() *string
	SetTitle(value *string)
	GetDateStorageFormat() *string
	SetDateStorageFormat(value *string)
	GetBuildingBlockGallery() *string
	SetBuildingBlockGallery(value *string)
	GetBuildingBlockCategory() *string
	SetBuildingBlockCategory(value *string)
	GetMultiline() *bool
	SetMultiline(value *bool)
	GetColor() IXmlColor
	SetColor(value IXmlColor)
	GetStyleName() *string
	SetStyleName(value *string)
	GetCalendarType() *string
	SetCalendarType(value *string)
	GetIsTemporary() *bool
	SetIsTemporary(value *bool)
	GetPlaceholderName() *string
	SetPlaceholderName(value *string)
	GetLockContentControl() *bool
	SetLockContentControl(value *bool)
	GetLockContents() *bool
	SetLockContents(value *bool)
	GetIsShowingPlaceholderText() *bool
	SetIsShowingPlaceholderText(value *bool)
	GetTag() *string
	SetTag(value *string)
	GetId() *int32
	SetId(value *int32)
	GetWordOpenXML() *string
	SetWordOpenXML(value *string)
}

type IStructuredDocumentTagCollection ¶

type IStructuredDocumentTagCollection interface {
	IsStructuredDocumentTagCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetList() []IStructuredDocumentTag
	SetList(value []IStructuredDocumentTag)
}

type IStructuredDocumentTagInsert ¶

type IStructuredDocumentTagInsert interface {
	IsStructuredDocumentTagInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetListItems() []IStructuredDocumentTagListItem
	SetListItems(value []IStructuredDocumentTagListItem)
	GetChecked() *bool
	SetChecked(value *bool)
	GetAppearance() *string
	SetAppearance(value *string)
	GetDateDisplayLocale() *int32
	SetDateDisplayLocale(value *int32)
	GetDateDisplayFormat() *string
	SetDateDisplayFormat(value *string)
	GetFullDate() *Time
	SetFullDate(value *Time)
	GetTitle() *string
	SetTitle(value *string)
	GetDateStorageFormat() *string
	SetDateStorageFormat(value *string)
	GetBuildingBlockGallery() *string
	SetBuildingBlockGallery(value *string)
	GetBuildingBlockCategory() *string
	SetBuildingBlockCategory(value *string)
	GetMultiline() *bool
	SetMultiline(value *bool)
	GetColor() IXmlColor
	SetColor(value IXmlColor)
	GetStyleName() *string
	SetStyleName(value *string)
	GetCalendarType() *string
	SetCalendarType(value *string)
	GetIsTemporary() *bool
	SetIsTemporary(value *bool)
	GetPlaceholderName() *string
	SetPlaceholderName(value *string)
	GetLockContentControl() *bool
	SetLockContentControl(value *bool)
	GetLockContents() *bool
	SetLockContents(value *bool)
	GetIsShowingPlaceholderText() *bool
	SetIsShowingPlaceholderText(value *bool)
	GetTag() *string
	SetTag(value *string)
	GetId() *int32
	SetId(value *int32)
	GetWordOpenXML() *string
	SetWordOpenXML(value *string)
	GetLevel() *string
	SetLevel(value *string)
	GetSdtType() *string
	SetSdtType(value *string)
	GetPosition() IPosition
	SetPosition(value IPosition)
}

type IStructuredDocumentTagListItem ¶

type IStructuredDocumentTagListItem interface {
	IsStructuredDocumentTagListItem() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetDisplayText() *string
	SetDisplayText(value *string)
	GetValue() *string
	SetValue(value *string)
}

type IStructuredDocumentTagResponse ¶

type IStructuredDocumentTagResponse interface {
	IsStructuredDocumentTagResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetStructuredDocumentTag() IStructuredDocumentTag
	SetStructuredDocumentTag(value IStructuredDocumentTag)
}

type IStructuredDocumentTagUpdate ¶

type IStructuredDocumentTagUpdate interface {
	IsStructuredDocumentTagUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetListItems() []IStructuredDocumentTagListItem
	SetListItems(value []IStructuredDocumentTagListItem)
	GetChecked() *bool
	SetChecked(value *bool)
	GetAppearance() *string
	SetAppearance(value *string)
	GetDateDisplayLocale() *int32
	SetDateDisplayLocale(value *int32)
	GetDateDisplayFormat() *string
	SetDateDisplayFormat(value *string)
	GetFullDate() *Time
	SetFullDate(value *Time)
	GetTitle() *string
	SetTitle(value *string)
	GetDateStorageFormat() *string
	SetDateStorageFormat(value *string)
	GetBuildingBlockGallery() *string
	SetBuildingBlockGallery(value *string)
	GetBuildingBlockCategory() *string
	SetBuildingBlockCategory(value *string)
	GetMultiline() *bool
	SetMultiline(value *bool)
	GetColor() IXmlColor
	SetColor(value IXmlColor)
	GetStyleName() *string
	SetStyleName(value *string)
	GetCalendarType() *string
	SetCalendarType(value *string)
	GetIsTemporary() *bool
	SetIsTemporary(value *bool)
	GetPlaceholderName() *string
	SetPlaceholderName(value *string)
	GetLockContentControl() *bool
	SetLockContentControl(value *bool)
	GetLockContents() *bool
	SetLockContents(value *bool)
	GetIsShowingPlaceholderText() *bool
	SetIsShowingPlaceholderText(value *bool)
	GetTag() *string
	SetTag(value *string)
	GetId() *int32
	SetId(value *int32)
	GetWordOpenXML() *string
	SetWordOpenXML(value *string)
	GetLevel() *string
	SetLevel(value *string)
	GetSdtType() *string
	SetSdtType(value *string)
}

type IStructuredDocumentTagsResponse ¶

type IStructuredDocumentTagsResponse interface {
	IsStructuredDocumentTagsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetStructuredDocumentTags() IStructuredDocumentTagCollection
	SetStructuredDocumentTags(value IStructuredDocumentTagCollection)
}

type IStyle ¶

type IStyle interface {
	IsStyle() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetFont() IFont
	SetFont(value IFont)
	GetBuiltIn() *bool
	SetBuiltIn(value *bool)
	GetNextParagraphStyleName() *string
	SetNextParagraphStyleName(value *string)
	GetBaseStyleName() *string
	SetBaseStyleName(value *string)
	GetIsQuickStyle() *bool
	SetIsQuickStyle(value *bool)
	GetLinkedStyleName() *string
	SetLinkedStyleName(value *string)
	GetType() *string
	SetType(value *string)
	GetIsHeading() *bool
	SetIsHeading(value *bool)
	GetAliases() []string
	SetAliases(value []string)
	GetStyleIdentifier() *string
	SetStyleIdentifier(value *string)
	GetName() *string
	SetName(value *string)
}

type IStyleApply ¶

type IStyleApply interface {
	IsStyleApply() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetStyleName() *string
	SetStyleName(value *string)
}

type IStyleCopy ¶

type IStyleCopy interface {
	IsStyleCopy() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetStyleName() *string
	SetStyleName(value *string)
}

type IStyleInsert ¶

type IStyleInsert interface {
	IsStyleInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetStyleName() *string
	SetStyleName(value *string)
	GetStyleType() *string
	SetStyleType(value *string)
}

type IStyleResponse ¶

type IStyleResponse interface {
	IsStyleResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetStyle() IStyle
	SetStyle(value IStyle)
}

type IStyleUpdate ¶

type IStyleUpdate interface {
	IsStyleUpdate() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetNextParagraphStyleName() *string
	SetNextParagraphStyleName(value *string)
	GetBaseStyleName() *string
	SetBaseStyleName(value *string)
	GetIsQuickStyle() *bool
	SetIsQuickStyle(value *bool)
	GetName() *string
	SetName(value *string)
}

type IStylesResponse ¶

type IStylesResponse interface {
	IsStylesResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetStyles() []IStyle
	SetStyles(value []IStyle)
}

type ISvgSaveOptionsData ¶

type ISvgSaveOptionsData interface {
	IsSvgSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetExportEmbeddedImages() *bool
	SetExportEmbeddedImages(value *bool)
	GetFitToViewPort() *bool
	SetFitToViewPort(value *bool)
	GetResourcesFolder() *string
	SetResourcesFolder(value *string)
	GetResourcesFolderAlias() *string
	SetResourcesFolderAlias(value *string)
	GetShowPageBorder() *bool
	SetShowPageBorder(value *bool)
	GetTextOutputMode() *string
	SetTextOutputMode(value *string)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type ITabStop ¶

type ITabStop interface {
	IsTabStop() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAlignment() *string
	SetAlignment(value *string)
	GetLeader() *string
	SetLeader(value *string)
	GetPosition() *float64
	SetPosition(value *float64)
	GetIsClear() *bool
	SetIsClear(value *bool)
}

type ITabStopBase ¶

type ITabStopBase interface {
	IsTabStopBase() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAlignment() *string
	SetAlignment(value *string)
	GetLeader() *string
	SetLeader(value *string)
	GetPosition() *float64
	SetPosition(value *float64)
}

type ITabStopInsert ¶

type ITabStopInsert interface {
	IsTabStopInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAlignment() *string
	SetAlignment(value *string)
	GetLeader() *string
	SetLeader(value *string)
	GetPosition() *float64
	SetPosition(value *float64)
}

type ITabStopsResponse ¶

type ITabStopsResponse interface {
	IsTabStopsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetTabStops() []ITabStop
	SetTabStops(value []ITabStop)
}

type ITable ¶

type ITable interface {
	IsTable() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetTableRowList() []ITableRow
	SetTableRowList(value []ITableRow)
	GetTableProperties() ITableProperties
	SetTableProperties(value ITableProperties)
}

type ITableCell ¶

type ITableCell interface {
	IsTableCell() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetChildNodes() []INodeLink
	SetChildNodes(value []INodeLink)
}

type ITableCellFormat ¶

type ITableCellFormat interface {
	IsTableCellFormat() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetBottomPadding() *float64
	SetBottomPadding(value *float64)
	GetFitText() *bool
	SetFitText(value *bool)
	GetHorizontalMerge() *string
	SetHorizontalMerge(value *string)
	GetLeftPadding() *float64
	SetLeftPadding(value *float64)
	GetOrientation() *string
	SetOrientation(value *string)
	GetPreferredWidth() IPreferredWidth
	SetPreferredWidth(value IPreferredWidth)
	GetRightPadding() *float64
	SetRightPadding(value *float64)
	GetTopPadding() *float64
	SetTopPadding(value *float64)
	GetVerticalAlignment() *string
	SetVerticalAlignment(value *string)
	GetVerticalMerge() *string
	SetVerticalMerge(value *string)
	GetWidth() *float64
	SetWidth(value *float64)
	GetWrapText() *bool
	SetWrapText(value *bool)
}

type ITableCellFormatResponse ¶

type ITableCellFormatResponse interface {
	IsTableCellFormatResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetCellFormat() ITableCellFormat
	SetCellFormat(value ITableCellFormat)
}

type ITableCellInsert ¶

type ITableCellInsert interface {
	IsTableCellInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetExistingCellPosition() IPosition
	SetExistingCellPosition(value IPosition)
	GetInsertAfter() *int32
	SetInsertAfter(value *int32)
}

type ITableCellResponse ¶

type ITableCellResponse interface {
	IsTableCellResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetCell() ITableCell
	SetCell(value ITableCell)
}

type ITableInsert ¶

type ITableInsert interface {
	IsTableInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetColumnsCount() *int32
	SetColumnsCount(value *int32)
	GetPosition() IPosition
	SetPosition(value IPosition)
	GetRowsCount() *int32
	SetRowsCount(value *int32)
}
type ITableLink interface {
	IsTableLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
}

type ITableLinkCollection ¶

type ITableLinkCollection interface {
	IsTableLinkCollection() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetTableLinkList() []ITableLink
	SetTableLinkList(value []ITableLink)
}

type ITableLinkCollectionResponse ¶

type ITableLinkCollectionResponse interface {
	IsTableLinkCollectionResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetTables() ITableLinkCollection
	SetTables(value ITableLinkCollection)
}

type ITableProperties ¶

type ITableProperties interface {
	IsTableProperties() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetAlignment() *string
	SetAlignment(value *string)
	GetAllowAutoFit() *bool
	SetAllowAutoFit(value *bool)
	GetBidi() *bool
	SetBidi(value *bool)
	GetBottomPadding() *float64
	SetBottomPadding(value *float64)
	GetCellSpacing() *float64
	SetCellSpacing(value *float64)
	GetLeftIndent() *float64
	SetLeftIndent(value *float64)
	GetLeftPadding() *float64
	SetLeftPadding(value *float64)
	GetPreferredWidth() IPreferredWidth
	SetPreferredWidth(value IPreferredWidth)
	GetRightPadding() *float64
	SetRightPadding(value *float64)
	GetStyleIdentifier() *string
	SetStyleIdentifier(value *string)
	GetStyleName() *string
	SetStyleName(value *string)
	GetStyleOptions() *string
	SetStyleOptions(value *string)
	GetTextWrapping() *string
	SetTextWrapping(value *string)
	GetTopPadding() *float64
	SetTopPadding(value *float64)
}

type ITablePropertiesResponse ¶

type ITablePropertiesResponse interface {
	IsTablePropertiesResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetProperties() ITableProperties
	SetProperties(value ITableProperties)
}

type ITableResponse ¶

type ITableResponse interface {
	IsTableResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetTable() ITable
	SetTable(value ITable)
}

type ITableRow ¶

type ITableRow interface {
	IsTableRow() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetNodeId() *string
	SetNodeId(value *string)
	GetTableCellList() []ITableCell
	SetTableCellList(value []ITableCell)
	GetRowFormat() ITableRowFormat
	SetRowFormat(value ITableRowFormat)
}

type ITableRowFormat ¶

type ITableRowFormat interface {
	IsTableRowFormat() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetLink() IWordsApiLink
	SetLink(value IWordsApiLink)
	GetHeight() *float64
	SetHeight(value *float64)
	GetHeightRule() *string
	SetHeightRule(value *string)
	GetAllowBreakAcrossPages() *bool
	SetAllowBreakAcrossPages(value *bool)
	GetHeadingFormat() *bool
	SetHeadingFormat(value *bool)
}

type ITableRowFormatResponse ¶

type ITableRowFormatResponse interface {
	IsTableRowFormatResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetRowFormat() ITableRowFormat
	SetRowFormat(value ITableRowFormat)
}

type ITableRowInsert ¶

type ITableRowInsert interface {
	IsTableRowInsert() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetColumnsCount() *int32
	SetColumnsCount(value *int32)
	GetExistingRowPosition() IPosition
	SetExistingRowPosition(value IPosition)
	GetInsertAfter() *int32
	SetInsertAfter(value *int32)
}

type ITableRowResponse ¶

type ITableRowResponse interface {
	IsTableRowResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetRow() ITableRow
	SetRow(value ITableRow)
}

type ITextSaveOptionsData ¶

type ITextSaveOptionsData interface {
	IsTextSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetEncoding() *string
	SetEncoding(value *string)
	GetExportHeadersFootersMode() *string
	SetExportHeadersFootersMode(value *string)
	GetForcePageBreaks() *bool
	SetForcePageBreaks(value *bool)
	GetParagraphBreak() *string
	SetParagraphBreak(value *string)
	GetAddBidiMarks() *bool
	SetAddBidiMarks(value *bool)
	GetMaxCharactersPerLine() *int32
	SetMaxCharactersPerLine(value *int32)
	GetPreserveTableLayout() *bool
	SetPreserveTableLayout(value *bool)
	GetSimplifyListLabels() *bool
	SetSimplifyListLabels(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type ITiffSaveOptionsData ¶

type ITiffSaveOptionsData interface {
	IsTiffSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetHorizontalResolution() *float64
	SetHorizontalResolution(value *float64)
	GetImageBrightness() *float64
	SetImageBrightness(value *float64)
	GetImageColorMode() *string
	SetImageColorMode(value *string)
	GetImageContrast() *float64
	SetImageContrast(value *float64)
	GetPaperColor() *string
	SetPaperColor(value *string)
	GetPixelFormat() *string
	SetPixelFormat(value *string)
	GetResolution() *float64
	SetResolution(value *float64)
	GetScale() *float64
	SetScale(value *float64)
	GetUseAntiAliasing() *bool
	SetUseAntiAliasing(value *bool)
	GetUseHighQualityRendering() *bool
	SetUseHighQualityRendering(value *bool)
	GetVerticalResolution() *float64
	SetVerticalResolution(value *float64)
	GetImageHeight() *int32
	SetImageHeight(value *int32)
	GetImageWidth() *int32
	SetImageWidth(value *int32)
	GetUseGdiEmfRenderer() *bool
	SetUseGdiEmfRenderer(value *bool)
	GetThresholdForFloydSteinbergDithering() *int32
	SetThresholdForFloydSteinbergDithering(value *int32)
	GetTiffBinarizationMethod() *string
	SetTiffBinarizationMethod(value *string)
	GetTiffCompression() *string
	SetTiffCompression(value *string)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type ITimeZoneInfoData ¶

type ITimeZoneInfoData interface {
	IsTimeZoneInfoData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetBaseUtcOffset() *string
	SetBaseUtcOffset(value *string)
	GetDisplayName() *string
	SetDisplayName(value *string)
	GetId() *string
	SetId(value *string)
	GetStandardDisplayName() *string
	SetStandardDisplayName(value *string)
}

type ITxtSaveOptionsBaseData ¶

type ITxtSaveOptionsBaseData interface {
	IsTxtSaveOptionsBaseData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
	GetEncoding() *string
	SetEncoding(value *string)
	GetExportHeadersFootersMode() *string
	SetExportHeadersFootersMode(value *string)
	GetForcePageBreaks() *bool
	SetForcePageBreaks(value *bool)
	GetParagraphBreak() *string
	SetParagraphBreak(value *string)
}

type IUserInformation ¶

type IUserInformation interface {
	IsUserInformation() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAddress() *string
	SetAddress(value *string)
	GetInitials() *string
	SetInitials(value *string)
	GetName() *string
	SetName(value *string)
}

type IWatermarkDataBase ¶

type IWatermarkDataBase interface {
	IsWatermarkDataBase() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
}

type IWatermarkDataImage ¶

type IWatermarkDataImage interface {
	IsWatermarkDataImage() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetImage() IFileReference
	SetImage(value IFileReference)
	GetIsWashout() *bool
	SetIsWashout(value *bool)
	GetScale() *float64
	SetScale(value *float64)
}

type IWatermarkDataText ¶

type IWatermarkDataText interface {
	IsWatermarkDataText() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetColor() IXmlColor
	SetColor(value IXmlColor)
	GetFontFamily() *string
	SetFontFamily(value *string)
	GetFontSize() *float64
	SetFontSize(value *float64)
	GetIsSemitrasparent() *bool
	SetIsSemitrasparent(value *bool)
	GetLayout() *string
	SetLayout(value *string)
	GetText() *string
	SetText(value *string)
}

type IWatermarkText ¶

type IWatermarkText interface {
	IsWatermarkText() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRotationAngle() *float64
	SetRotationAngle(value *float64)
	GetText() *string
	SetText(value *string)
}

type IWordMLSaveOptionsData ¶

type IWordMLSaveOptionsData interface {
	IsWordMLSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetPrettyFormat() *bool
	SetPrettyFormat(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IWordsApiErrorResponse ¶

type IWordsApiErrorResponse interface {
	IsWordsApiErrorResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
	GetError() IApiError
	SetError(value IApiError)
}
type IWordsApiLink interface {
	IsWordsApiLink() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetHref() *string
	SetHref(value *string)
	GetRel() *string
	SetRel(value *string)
	GetTitle() *string
	SetTitle(value *string)
	GetType() *string
	SetType(value *string)
}

type IWordsResponse ¶

type IWordsResponse interface {
	IsWordsResponse() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetRequestId() *string
	SetRequestId(value *string)
}

type IXamlFixedSaveOptionsData ¶

type IXamlFixedSaveOptionsData interface {
	IsXamlFixedSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetResourcesFolder() *string
	SetResourcesFolder(value *string)
	GetResourcesFolderAlias() *string
	SetResourcesFolderAlias(value *string)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IXamlFlowPackSaveOptionsData ¶

type IXamlFlowPackSaveOptionsData interface {
	IsXamlFlowPackSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetImagesFolder() *string
	SetImagesFolder(value *string)
	GetImagesFolderAlias() *string
	SetImagesFolderAlias(value *string)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IXamlFlowSaveOptionsData ¶

type IXamlFlowSaveOptionsData interface {
	IsXamlFlowSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetImagesFolder() *string
	SetImagesFolder(value *string)
	GetImagesFolderAlias() *string
	SetImagesFolderAlias(value *string)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type IXmlColor ¶

type IXmlColor interface {
	IsXmlColor() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAlpha() *int32
	SetAlpha(value *int32)
	GetWeb() *string
	SetWeb(value *string)
}

type IXmlDataLoadOptions ¶

type IXmlDataLoadOptions interface {
	IsXmlDataLoadOptions() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAlwaysGenerateRootObject() *bool
	SetAlwaysGenerateRootObject(value *bool)
}

type IXpsSaveOptionsData ¶

type IXpsSaveOptionsData interface {
	IsXpsSaveOptionsData() bool
	Initialize()
	Deserialize(json map[string]interface{})
	CollectFilesContent(resultFilesContent []FileReference) []FileReference
	Validate() error
	GetAllowEmbeddingPostScriptFonts() *bool
	SetAllowEmbeddingPostScriptFonts(value *bool)
	GetCustomTimeZoneInfoData() ITimeZoneInfoData
	SetCustomTimeZoneInfoData(value ITimeZoneInfoData)
	GetDml3DEffectsRenderingMode() *string
	SetDml3DEffectsRenderingMode(value *string)
	GetDmlEffectsRenderingMode() *string
	SetDmlEffectsRenderingMode(value *string)
	GetDmlRenderingMode() *string
	SetDmlRenderingMode(value *string)
	GetFileName() *string
	SetFileName(value *string)
	GetImlRenderingMode() *string
	SetImlRenderingMode(value *string)
	GetUpdateCreatedTimeProperty() *bool
	SetUpdateCreatedTimeProperty(value *bool)
	GetUpdateFields() *bool
	SetUpdateFields(value *bool)
	GetUpdateLastPrintedProperty() *bool
	SetUpdateLastPrintedProperty(value *bool)
	GetUpdateLastSavedTimeProperty() *bool
	SetUpdateLastSavedTimeProperty(value *bool)
	GetZipOutput() *bool
	SetZipOutput(value *bool)
	GetColorMode() *string
	SetColorMode(value *string)
	GetJpegQuality() *int32
	SetJpegQuality(value *int32)
	GetMetafileRenderingOptions() IMetafileRenderingOptionsData
	SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)
	GetNumeralFormat() *string
	SetNumeralFormat(value *string)
	GetOptimizeOutput() *bool
	SetOptimizeOutput(value *bool)
	GetPageCount() *int32
	SetPageCount(value *int32)
	GetPageIndex() *int32
	SetPageIndex(value *int32)
	GetBookmarksOutlineLevel() *int32
	SetBookmarksOutlineLevel(value *int32)
	GetHeadingsOutlineLevels() *int32
	SetHeadingsOutlineLevels(value *int32)
	GetOutlineOptions() IOutlineOptionsData
	SetOutlineOptions(value IOutlineOptionsData)
	GetUseBookFoldPrintingSettings() *bool
	SetUseBookFoldPrintingSettings(value *bool)
	GetSaveFormat() *string
	SetSaveFormat(value *string)
}

type ImageEntry ¶

type ImageEntry struct {
	// Represents a image which will be appended to the original resource image or document.
	FileReference IFileReference `json:"FileReference,omitempty"`
}

func (*ImageEntry) CollectFilesContent ¶

func (obj *ImageEntry) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ImageEntry) Deserialize ¶

func (obj *ImageEntry) Deserialize(json map[string]interface{})

func (*ImageEntry) GetFileReference ¶

func (obj *ImageEntry) GetFileReference() IFileReference

func (*ImageEntry) Initialize ¶

func (obj *ImageEntry) Initialize()

func (ImageEntry) IsBaseEntry ¶

func (ImageEntry) IsBaseEntry() bool

func (ImageEntry) IsImageEntry ¶

func (ImageEntry) IsImageEntry() bool

func (*ImageEntry) SetFileReference ¶

func (obj *ImageEntry) SetFileReference(value IFileReference)

func (*ImageEntry) Validate ¶

func (obj *ImageEntry) Validate() error

type ImageEntryList ¶

type ImageEntryList struct {
	// Represents a list of images which will be appended to the original resource document or image.
	AppendEachImageOnNewPage *bool `json:"AppendEachImageOnNewPage,omitempty"`

	// Represents a list of images which will be appended to the original resource document or image.
	ImageEntries []IImageEntry `json:"ImageEntries,omitempty"`
}

func (*ImageEntryList) CollectFilesContent ¶

func (obj *ImageEntryList) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ImageEntryList) Deserialize ¶

func (obj *ImageEntryList) Deserialize(json map[string]interface{})

func (*ImageEntryList) GetAppendEachImageOnNewPage ¶

func (obj *ImageEntryList) GetAppendEachImageOnNewPage() *bool

func (*ImageEntryList) GetImageEntries ¶

func (obj *ImageEntryList) GetImageEntries() []IImageEntry

func (*ImageEntryList) Initialize ¶

func (obj *ImageEntryList) Initialize()

func (ImageEntryList) IsBaseEntryList ¶

func (ImageEntryList) IsBaseEntryList() bool

func (ImageEntryList) IsImageEntryList ¶

func (ImageEntryList) IsImageEntryList() bool

func (*ImageEntryList) SetAppendEachImageOnNewPage ¶

func (obj *ImageEntryList) SetAppendEachImageOnNewPage(value *bool)

func (*ImageEntryList) SetImageEntries ¶

func (obj *ImageEntryList) SetImageEntries(value []IImageEntry)

func (*ImageEntryList) Validate ¶

func (obj *ImageEntryList) Validate() error

type InfoAdditionalItem ¶

type InfoAdditionalItem struct {
	// Info additional item.
	Key *string `json:"Key,omitempty"`

	// Info additional item.
	Value *string `json:"Value,omitempty"`
}

func (*InfoAdditionalItem) CollectFilesContent ¶

func (obj *InfoAdditionalItem) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*InfoAdditionalItem) Deserialize ¶

func (obj *InfoAdditionalItem) Deserialize(json map[string]interface{})

func (*InfoAdditionalItem) GetKey ¶

func (obj *InfoAdditionalItem) GetKey() *string

func (*InfoAdditionalItem) GetValue ¶

func (obj *InfoAdditionalItem) GetValue() *string

func (*InfoAdditionalItem) Initialize ¶

func (obj *InfoAdditionalItem) Initialize()

func (InfoAdditionalItem) IsInfoAdditionalItem ¶

func (InfoAdditionalItem) IsInfoAdditionalItem() bool

func (*InfoAdditionalItem) SetKey ¶

func (obj *InfoAdditionalItem) SetKey(value *string)

func (*InfoAdditionalItem) SetValue ¶

func (obj *InfoAdditionalItem) SetValue(value *string)

func (*InfoAdditionalItem) Validate ¶

func (obj *InfoAdditionalItem) Validate() error

type InfoResponse ¶

type InfoResponse struct {
	// Response with API info.
	RequestId *string `json:"RequestId,omitempty"`

	// Response with API info.
	AdditionalInfo []IInfoAdditionalItem `json:"AdditionalInfo,omitempty"`

	// Response with API info.
	Name *string `json:"Name,omitempty"`

	// Response with API info.
	Version *string `json:"Version,omitempty"`
}

func (*InfoResponse) CollectFilesContent ¶

func (obj *InfoResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*InfoResponse) Deserialize ¶

func (obj *InfoResponse) Deserialize(json map[string]interface{})

func (*InfoResponse) GetAdditionalInfo ¶

func (obj *InfoResponse) GetAdditionalInfo() []IInfoAdditionalItem

func (*InfoResponse) GetName ¶

func (obj *InfoResponse) GetName() *string

func (*InfoResponse) GetRequestId ¶

func (obj *InfoResponse) GetRequestId() *string

func (*InfoResponse) GetVersion ¶

func (obj *InfoResponse) GetVersion() *string

func (*InfoResponse) Initialize ¶

func (obj *InfoResponse) Initialize()

func (InfoResponse) IsInfoResponse ¶

func (InfoResponse) IsInfoResponse() bool

func (InfoResponse) IsWordsResponse ¶

func (InfoResponse) IsWordsResponse() bool

func (*InfoResponse) SetAdditionalInfo ¶

func (obj *InfoResponse) SetAdditionalInfo(value []IInfoAdditionalItem)

func (*InfoResponse) SetName ¶

func (obj *InfoResponse) SetName(value *string)

func (*InfoResponse) SetRequestId ¶

func (obj *InfoResponse) SetRequestId(value *string)

func (*InfoResponse) SetVersion ¶

func (obj *InfoResponse) SetVersion(value *string)

func (*InfoResponse) Validate ¶

func (obj *InfoResponse) Validate() error

type InsertBookmarkOnlineRequest ¶

type InsertBookmarkOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Bookmark to insert.
	Bookmark IBookmarkInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertBookmarkOnlineRequest contains request data for WordsApiService.InsertBookmarkOnline method.

func (*InsertBookmarkOnlineRequest) CreateRequestData ¶

func (data *InsertBookmarkOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertBookmarkOnlineRequest) CreateResponse ¶

func (data *InsertBookmarkOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertBookmarkOnlineResponse ¶

type InsertBookmarkOnlineResponse struct {
	// The REST response with a bookmark.
	// This response should be returned by the service when handling: GET bookmarks/{bookmarkName}.
	Model IBookmarkResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertBookmarkOnlineResponse struct Inserts a new bookmark to the document.

func (*InsertBookmarkOnlineResponse) GetDocument ¶

func (obj *InsertBookmarkOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertBookmarkOnlineResponse) GetModel ¶

func (*InsertBookmarkOnlineResponse) SetDocument ¶

func (obj *InsertBookmarkOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertBookmarkOnlineResponse) SetModel ¶

func (obj *InsertBookmarkOnlineResponse) SetModel(value IBookmarkResponse)

type InsertBookmarkRequest ¶

type InsertBookmarkRequest struct {
	// The filename of the input document.
	Name *string
	// Bookmark to insert.
	Bookmark IBookmarkInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertBookmarkRequest contains request data for WordsApiService.InsertBookmark method.

func (*InsertBookmarkRequest) CreateRequestData ¶

func (data *InsertBookmarkRequest) CreateRequestData() (RequestData, error)

func (*InsertBookmarkRequest) CreateResponse ¶

func (data *InsertBookmarkRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertCommentOnlineRequest ¶

type InsertCommentOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Comment data.
	Comment ICommentInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertCommentOnlineRequest contains request data for WordsApiService.InsertCommentOnline method.

func (*InsertCommentOnlineRequest) CreateRequestData ¶

func (data *InsertCommentOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertCommentOnlineRequest) CreateResponse ¶

func (data *InsertCommentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertCommentOnlineResponse ¶

type InsertCommentOnlineResponse struct {
	// The REST response with a comment.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/comments/0" REST API requests.
	Model ICommentResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertCommentOnlineResponse struct Inserts a new comment to the document.

func (*InsertCommentOnlineResponse) GetDocument ¶

func (obj *InsertCommentOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertCommentOnlineResponse) GetModel ¶

func (*InsertCommentOnlineResponse) SetDocument ¶

func (obj *InsertCommentOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertCommentOnlineResponse) SetModel ¶

func (obj *InsertCommentOnlineResponse) SetModel(value ICommentResponse)

type InsertCommentRequest ¶

type InsertCommentRequest struct {
	// The filename of the input document.
	Name *string
	// Comment data.
	Comment ICommentInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertCommentRequest contains request data for WordsApiService.InsertComment method.

func (*InsertCommentRequest) CreateRequestData ¶

func (data *InsertCommentRequest) CreateRequestData() (RequestData, error)

func (*InsertCommentRequest) CreateResponse ¶

func (data *InsertCommentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertCustomXmlPartOnlineRequest ¶

type InsertCustomXmlPartOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Custom xml part.
	CustomXmlPart ICustomXmlPartInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertCustomXmlPartOnlineRequest contains request data for WordsApiService.InsertCustomXmlPartOnline method.

func (*InsertCustomXmlPartOnlineRequest) CreateRequestData ¶

func (data *InsertCustomXmlPartOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertCustomXmlPartOnlineRequest) CreateResponse ¶

func (data *InsertCustomXmlPartOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertCustomXmlPartOnlineResponse ¶

type InsertCustomXmlPartOnlineResponse struct {
	// The REST response with a custom xml part.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/customXmlParts/0" REST API requests.
	Model ICustomXmlPartResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertCustomXmlPartOnlineResponse struct Inserts a new custom xml part to the document.

func (*InsertCustomXmlPartOnlineResponse) GetDocument ¶

func (obj *InsertCustomXmlPartOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertCustomXmlPartOnlineResponse) GetModel ¶

func (*InsertCustomXmlPartOnlineResponse) SetDocument ¶

func (obj *InsertCustomXmlPartOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertCustomXmlPartOnlineResponse) SetModel ¶

type InsertCustomXmlPartRequest ¶

type InsertCustomXmlPartRequest struct {
	// The filename of the input document.
	Name *string
	// Custom xml part.
	CustomXmlPart ICustomXmlPartInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertCustomXmlPartRequest contains request data for WordsApiService.InsertCustomXmlPart method.

func (*InsertCustomXmlPartRequest) CreateRequestData ¶

func (data *InsertCustomXmlPartRequest) CreateRequestData() (RequestData, error)

func (*InsertCustomXmlPartRequest) CreateResponse ¶

func (data *InsertCustomXmlPartRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertDrawingObjectOnlineRequest ¶

type InsertDrawingObjectOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Drawing object parameters.
	DrawingObject IDrawingObjectInsert
	// File with image.
	ImageFile io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertDrawingObjectOnlineRequest contains request data for WordsApiService.InsertDrawingObjectOnline method.

func (*InsertDrawingObjectOnlineRequest) CreateRequestData ¶

func (data *InsertDrawingObjectOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertDrawingObjectOnlineRequest) CreateResponse ¶

func (data *InsertDrawingObjectOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertDrawingObjectOnlineResponse ¶

type InsertDrawingObjectOnlineResponse struct {
	// The REST response with a DrawingObject.
	Model IDrawingObjectResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertDrawingObjectOnlineResponse struct Inserts a new DrawingObject to the document node.

func (*InsertDrawingObjectOnlineResponse) GetDocument ¶

func (obj *InsertDrawingObjectOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertDrawingObjectOnlineResponse) GetModel ¶

func (*InsertDrawingObjectOnlineResponse) SetDocument ¶

func (obj *InsertDrawingObjectOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertDrawingObjectOnlineResponse) SetModel ¶

type InsertDrawingObjectRequest ¶

type InsertDrawingObjectRequest struct {
	// The filename of the input document.
	Name *string
	// Drawing object parameters.
	DrawingObject IDrawingObjectInsert
	// File with image.
	ImageFile io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertDrawingObjectRequest contains request data for WordsApiService.InsertDrawingObject method.

func (*InsertDrawingObjectRequest) CreateRequestData ¶

func (data *InsertDrawingObjectRequest) CreateRequestData() (RequestData, error)

func (*InsertDrawingObjectRequest) CreateResponse ¶

func (data *InsertDrawingObjectRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertFieldOnlineRequest ¶

type InsertFieldOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Field data.
	Field IFieldInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertFieldOnlineRequest contains request data for WordsApiService.InsertFieldOnline method.

func (*InsertFieldOnlineRequest) CreateRequestData ¶

func (data *InsertFieldOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertFieldOnlineRequest) CreateResponse ¶

func (data *InsertFieldOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertFieldOnlineResponse ¶

type InsertFieldOnlineResponse struct {
	// The REST response with a field.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/fields/{1}" REST API requests.
	Model IFieldResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertFieldOnlineResponse struct Inserts a new field to the document node.

func (*InsertFieldOnlineResponse) GetDocument ¶

func (obj *InsertFieldOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertFieldOnlineResponse) GetModel ¶

func (obj *InsertFieldOnlineResponse) GetModel() IFieldResponse

func (*InsertFieldOnlineResponse) SetDocument ¶

func (obj *InsertFieldOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertFieldOnlineResponse) SetModel ¶

func (obj *InsertFieldOnlineResponse) SetModel(value IFieldResponse)

type InsertFieldRequest ¶

type InsertFieldRequest struct {
	// The filename of the input document.
	Name *string
	// Field data.
	Field IFieldInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertFieldRequest contains request data for WordsApiService.InsertField method.

func (*InsertFieldRequest) CreateRequestData ¶

func (data *InsertFieldRequest) CreateRequestData() (RequestData, error)

func (*InsertFieldRequest) CreateResponse ¶

func (data *InsertFieldRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertFootnoteOnlineRequest ¶

type InsertFootnoteOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Footnote data.
	FootnoteDto IFootnoteInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertFootnoteOnlineRequest contains request data for WordsApiService.InsertFootnoteOnline method.

func (*InsertFootnoteOnlineRequest) CreateRequestData ¶

func (data *InsertFootnoteOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertFootnoteOnlineRequest) CreateResponse ¶

func (data *InsertFootnoteOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertFootnoteOnlineResponse ¶

type InsertFootnoteOnlineResponse struct {
	// The REST response with a footnote.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/footnote/0" REST API requests.
	Model IFootnoteResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertFootnoteOnlineResponse struct Inserts a new footnote to the document node.

func (*InsertFootnoteOnlineResponse) GetDocument ¶

func (obj *InsertFootnoteOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertFootnoteOnlineResponse) GetModel ¶

func (*InsertFootnoteOnlineResponse) SetDocument ¶

func (obj *InsertFootnoteOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertFootnoteOnlineResponse) SetModel ¶

func (obj *InsertFootnoteOnlineResponse) SetModel(value IFootnoteResponse)

type InsertFootnoteRequest ¶

type InsertFootnoteRequest struct {
	// The filename of the input document.
	Name *string
	// Footnote data.
	FootnoteDto IFootnoteInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertFootnoteRequest contains request data for WordsApiService.InsertFootnote method.

func (*InsertFootnoteRequest) CreateRequestData ¶

func (data *InsertFootnoteRequest) CreateRequestData() (RequestData, error)

func (*InsertFootnoteRequest) CreateResponse ¶

func (data *InsertFootnoteRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertFormFieldOnlineRequest ¶

type InsertFormFieldOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// From field data.
	FormField IFormField
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions.
	   key: "insertBeforeNode" value: (*string) The index of the node. A new form field will be inserted before the node with the specified node Id. */
	Optionals map[string]interface{}
}

InsertFormFieldOnlineRequest contains request data for WordsApiService.InsertFormFieldOnline method.

func (*InsertFormFieldOnlineRequest) CreateRequestData ¶

func (data *InsertFormFieldOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertFormFieldOnlineRequest) CreateResponse ¶

func (data *InsertFormFieldOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertFormFieldOnlineResponse ¶

type InsertFormFieldOnlineResponse struct {
	// The REST response with a form field.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/form fields/{1}" REST API requests.
	Model IFormFieldResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertFormFieldOnlineResponse struct Inserts a new form field to the document node.

func (*InsertFormFieldOnlineResponse) GetDocument ¶

func (obj *InsertFormFieldOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertFormFieldOnlineResponse) GetModel ¶

func (*InsertFormFieldOnlineResponse) SetDocument ¶

func (obj *InsertFormFieldOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertFormFieldOnlineResponse) SetModel ¶

type InsertFormFieldRequest ¶

type InsertFormFieldRequest struct {
	// The filename of the input document.
	Name *string
	// From field data.
	FormField IFormField
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions.
	   key: "insertBeforeNode" value: (*string) The index of the node. A new form field will be inserted before the node with the specified node Id. */
	Optionals map[string]interface{}
}

InsertFormFieldRequest contains request data for WordsApiService.InsertFormField method.

func (*InsertFormFieldRequest) CreateRequestData ¶

func (data *InsertFormFieldRequest) CreateRequestData() (RequestData, error)

func (*InsertFormFieldRequest) CreateResponse ¶

func (data *InsertFormFieldRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertHeaderFooterOnlineRequest ¶

type InsertHeaderFooterOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the section in the document tree.
	SectionPath *string
	// Type of header/footer.
	HeaderFooterType *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertHeaderFooterOnlineRequest contains request data for WordsApiService.InsertHeaderFooterOnline method.

func (*InsertHeaderFooterOnlineRequest) CreateRequestData ¶

func (data *InsertHeaderFooterOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertHeaderFooterOnlineRequest) CreateResponse ¶

func (data *InsertHeaderFooterOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertHeaderFooterOnlineResponse ¶

type InsertHeaderFooterOnlineResponse struct {
	// The REST response with a HeaderFooter.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/headersfooters/{0}" REST API requests.
	Model IHeaderFooterResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertHeaderFooterOnlineResponse struct Inserts a new HeaderFooter object to the document section.

func (*InsertHeaderFooterOnlineResponse) GetDocument ¶

func (obj *InsertHeaderFooterOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertHeaderFooterOnlineResponse) GetModel ¶

func (*InsertHeaderFooterOnlineResponse) SetDocument ¶

func (obj *InsertHeaderFooterOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertHeaderFooterOnlineResponse) SetModel ¶

type InsertHeaderFooterRequest ¶

type InsertHeaderFooterRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the section in the document tree.
	SectionPath *string
	// Type of header/footer.
	HeaderFooterType *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertHeaderFooterRequest contains request data for WordsApiService.InsertHeaderFooter method.

func (*InsertHeaderFooterRequest) CreateRequestData ¶

func (data *InsertHeaderFooterRequest) CreateRequestData() (RequestData, error)

func (*InsertHeaderFooterRequest) CreateResponse ¶

func (data *InsertHeaderFooterRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertListOnlineRequest ¶

type InsertListOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// List object.
	ListInsert IListInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertListOnlineRequest contains request data for WordsApiService.InsertListOnline method.

func (*InsertListOnlineRequest) CreateRequestData ¶

func (data *InsertListOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertListOnlineRequest) CreateResponse ¶

func (data *InsertListOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertListOnlineResponse ¶

type InsertListOnlineResponse struct {
	// The REST response with a list information.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/lists/{n}" REST API requests.
	Model IListResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertListOnlineResponse struct Inserts a new list to the document.

func (*InsertListOnlineResponse) GetDocument ¶

func (obj *InsertListOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertListOnlineResponse) GetModel ¶

func (obj *InsertListOnlineResponse) GetModel() IListResponse

func (*InsertListOnlineResponse) SetDocument ¶

func (obj *InsertListOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertListOnlineResponse) SetModel ¶

func (obj *InsertListOnlineResponse) SetModel(value IListResponse)

type InsertListRequest ¶

type InsertListRequest struct {
	// The filename of the input document.
	Name *string
	// List object.
	ListInsert IListInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertListRequest contains request data for WordsApiService.InsertList method.

func (*InsertListRequest) CreateRequestData ¶

func (data *InsertListRequest) CreateRequestData() (RequestData, error)

func (*InsertListRequest) CreateResponse ¶

func (data *InsertListRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertOrUpdateParagraphTabStopOnlineRequest ¶

type InsertOrUpdateParagraphTabStopOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// TabStopInsert dto.
	TabStopInsertDto ITabStopInsert
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

InsertOrUpdateParagraphTabStopOnlineRequest contains request data for WordsApiService.InsertOrUpdateParagraphTabStopOnline method.

func (*InsertOrUpdateParagraphTabStopOnlineRequest) CreateRequestData ¶

func (data *InsertOrUpdateParagraphTabStopOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertOrUpdateParagraphTabStopOnlineRequest) CreateResponse ¶

func (data *InsertOrUpdateParagraphTabStopOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertOrUpdateParagraphTabStopOnlineResponse ¶

type InsertOrUpdateParagraphTabStopOnlineResponse struct {
	// The REST response with an array of tab stops.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/tabstops" REST API requests.
	Model ITabStopsResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertOrUpdateParagraphTabStopOnlineResponse struct Inserts a new or updates an existing paragraph tab stop in the document node.

func (*InsertOrUpdateParagraphTabStopOnlineResponse) GetDocument ¶

func (*InsertOrUpdateParagraphTabStopOnlineResponse) GetModel ¶

func (*InsertOrUpdateParagraphTabStopOnlineResponse) SetDocument ¶

func (obj *InsertOrUpdateParagraphTabStopOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertOrUpdateParagraphTabStopOnlineResponse) SetModel ¶

type InsertOrUpdateParagraphTabStopRequest ¶

type InsertOrUpdateParagraphTabStopRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	// TabStopInsert dto.
	TabStopInsertDto ITabStopInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

InsertOrUpdateParagraphTabStopRequest contains request data for WordsApiService.InsertOrUpdateParagraphTabStop method.

func (*InsertOrUpdateParagraphTabStopRequest) CreateRequestData ¶

func (data *InsertOrUpdateParagraphTabStopRequest) CreateRequestData() (RequestData, error)

func (*InsertOrUpdateParagraphTabStopRequest) CreateResponse ¶

func (data *InsertOrUpdateParagraphTabStopRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertPageNumbersOnlineRequest ¶

type InsertPageNumbersOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Page number dto.
	PageNumber IPageNumber
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertPageNumbersOnlineRequest contains request data for WordsApiService.InsertPageNumbersOnline method.

func (*InsertPageNumbersOnlineRequest) CreateRequestData ¶

func (data *InsertPageNumbersOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertPageNumbersOnlineRequest) CreateResponse ¶

func (data *InsertPageNumbersOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertPageNumbersOnlineResponse ¶

type InsertPageNumbersOnlineResponse struct {
	// The REST response with a document description.
	Model IDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertPageNumbersOnlineResponse struct Inserts page numbers to the document.

func (*InsertPageNumbersOnlineResponse) GetDocument ¶

func (obj *InsertPageNumbersOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertPageNumbersOnlineResponse) GetModel ¶

func (*InsertPageNumbersOnlineResponse) SetDocument ¶

func (obj *InsertPageNumbersOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertPageNumbersOnlineResponse) SetModel ¶

type InsertPageNumbersRequest ¶

type InsertPageNumbersRequest struct {
	// The filename of the input document.
	Name *string
	// Page number dto.
	PageNumber IPageNumber
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertPageNumbersRequest contains request data for WordsApiService.InsertPageNumbers method.

func (*InsertPageNumbersRequest) CreateRequestData ¶

func (data *InsertPageNumbersRequest) CreateRequestData() (RequestData, error)

func (*InsertPageNumbersRequest) CreateResponse ¶

func (data *InsertPageNumbersRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertParagraphOnlineRequest ¶

type InsertParagraphOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Paragraph data.
	Paragraph IParagraphInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertParagraphOnlineRequest contains request data for WordsApiService.InsertParagraphOnline method.

func (*InsertParagraphOnlineRequest) CreateRequestData ¶

func (data *InsertParagraphOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertParagraphOnlineRequest) CreateResponse ¶

func (data *InsertParagraphOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertParagraphOnlineResponse ¶

type InsertParagraphOnlineResponse struct {
	// The REST response with a paragraph.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}" REST API requests.
	Model IParagraphResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertParagraphOnlineResponse struct Inserts a new paragraph to the document node.

func (*InsertParagraphOnlineResponse) GetDocument ¶

func (obj *InsertParagraphOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertParagraphOnlineResponse) GetModel ¶

func (*InsertParagraphOnlineResponse) SetDocument ¶

func (obj *InsertParagraphOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertParagraphOnlineResponse) SetModel ¶

type InsertParagraphRequest ¶

type InsertParagraphRequest struct {
	// The filename of the input document.
	Name *string
	// Paragraph data.
	Paragraph IParagraphInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertParagraphRequest contains request data for WordsApiService.InsertParagraph method.

func (*InsertParagraphRequest) CreateRequestData ¶

func (data *InsertParagraphRequest) CreateRequestData() (RequestData, error)

func (*InsertParagraphRequest) CreateResponse ¶

func (data *InsertParagraphRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertRunOnlineRequest ¶

type InsertRunOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Run data.
	Run IRunInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "paragraphPath" value: (*string) The path to the paragraph in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertRunOnlineRequest contains request data for WordsApiService.InsertRunOnline method.

func (*InsertRunOnlineRequest) CreateRequestData ¶

func (data *InsertRunOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertRunOnlineRequest) CreateResponse ¶

func (data *InsertRunOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertRunOnlineResponse ¶

type InsertRunOnlineResponse struct {
	// The REST response with a Run element.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/runs/{1}" REST API requests.
	Model IRunResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertRunOnlineResponse struct Inserts a new Run object to the paragraph.

func (*InsertRunOnlineResponse) GetDocument ¶

func (obj *InsertRunOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertRunOnlineResponse) GetModel ¶

func (obj *InsertRunOnlineResponse) GetModel() IRunResponse

func (*InsertRunOnlineResponse) SetDocument ¶

func (obj *InsertRunOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertRunOnlineResponse) SetModel ¶

func (obj *InsertRunOnlineResponse) SetModel(value IRunResponse)

type InsertRunRequest ¶

type InsertRunRequest struct {
	// The filename of the input document.
	Name *string
	// Run data.
	Run IRunInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "paragraphPath" value: (*string) The path to the paragraph in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertRunRequest contains request data for WordsApiService.InsertRun method.

func (*InsertRunRequest) CreateRequestData ¶

func (data *InsertRunRequest) CreateRequestData() (RequestData, error)

func (*InsertRunRequest) CreateResponse ¶

func (data *InsertRunRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertSectionOnlineRequest ¶

type InsertSectionOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index to insert into.
	SectionIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertSectionOnlineRequest contains request data for WordsApiService.InsertSectionOnline method.

func (*InsertSectionOnlineRequest) CreateRequestData ¶

func (data *InsertSectionOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertSectionOnlineRequest) CreateResponse ¶

func (data *InsertSectionOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertSectionRequest ¶

type InsertSectionRequest struct {
	// The filename of the input document.
	Name *string
	// The index to insert into.
	SectionIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertSectionRequest contains request data for WordsApiService.InsertSection method.

func (*InsertSectionRequest) CreateRequestData ¶

func (data *InsertSectionRequest) CreateRequestData() (RequestData, error)

func (*InsertSectionRequest) CreateResponse ¶

func (data *InsertSectionRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertStructuredDocumentTagOnlineRequest ¶

type InsertStructuredDocumentTagOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Structured document tag parameters.
	StructuredDocumentTag IStructuredDocumentTagInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertStructuredDocumentTagOnlineRequest contains request data for WordsApiService.InsertStructuredDocumentTagOnline method.

func (*InsertStructuredDocumentTagOnlineRequest) CreateRequestData ¶

func (data *InsertStructuredDocumentTagOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertStructuredDocumentTagOnlineRequest) CreateResponse ¶

func (data *InsertStructuredDocumentTagOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertStructuredDocumentTagOnlineResponse ¶

type InsertStructuredDocumentTagOnlineResponse struct {
	// The REST response with a StructuredDocumentTag.
	Model IStructuredDocumentTagResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertStructuredDocumentTagOnlineResponse struct Inserts a new StructuredDocumentTag (SDT) to the document node.

func (*InsertStructuredDocumentTagOnlineResponse) GetDocument ¶

func (*InsertStructuredDocumentTagOnlineResponse) GetModel ¶

func (*InsertStructuredDocumentTagOnlineResponse) SetDocument ¶

func (obj *InsertStructuredDocumentTagOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertStructuredDocumentTagOnlineResponse) SetModel ¶

type InsertStructuredDocumentTagRequest ¶

type InsertStructuredDocumentTagRequest struct {
	// The filename of the input document.
	Name *string
	// Structured document tag parameters.
	StructuredDocumentTag IStructuredDocumentTagInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertStructuredDocumentTagRequest contains request data for WordsApiService.InsertStructuredDocumentTag method.

func (*InsertStructuredDocumentTagRequest) CreateRequestData ¶

func (data *InsertStructuredDocumentTagRequest) CreateRequestData() (RequestData, error)

func (*InsertStructuredDocumentTagRequest) CreateResponse ¶

func (data *InsertStructuredDocumentTagRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertStyleOnlineRequest ¶

type InsertStyleOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Style to insert.
	StyleInsert IStyleInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertStyleOnlineRequest contains request data for WordsApiService.InsertStyleOnline method.

func (*InsertStyleOnlineRequest) CreateRequestData ¶

func (data *InsertStyleOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertStyleOnlineRequest) CreateResponse ¶

func (data *InsertStyleOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertStyleOnlineResponse ¶

type InsertStyleOnlineResponse struct {
	// The REST response with a style.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/styles/{0}" REST API requests.
	Model IStyleResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertStyleOnlineResponse struct Inserts a new style to the document.

func (*InsertStyleOnlineResponse) GetDocument ¶

func (obj *InsertStyleOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertStyleOnlineResponse) GetModel ¶

func (obj *InsertStyleOnlineResponse) GetModel() IStyleResponse

func (*InsertStyleOnlineResponse) SetDocument ¶

func (obj *InsertStyleOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertStyleOnlineResponse) SetModel ¶

func (obj *InsertStyleOnlineResponse) SetModel(value IStyleResponse)

type InsertStyleRequest ¶

type InsertStyleRequest struct {
	// The filename of the input document.
	Name *string
	// Style to insert.
	StyleInsert IStyleInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertStyleRequest contains request data for WordsApiService.InsertStyle method.

func (*InsertStyleRequest) CreateRequestData ¶

func (data *InsertStyleRequest) CreateRequestData() (RequestData, error)

func (*InsertStyleRequest) CreateResponse ¶

func (data *InsertStyleRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertTableCellOnlineRequest ¶

type InsertTableCellOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Table cell parameters.
	Cell ITableCellInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "tableRowPath" value: (*string) The path to the table row in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertTableCellOnlineRequest contains request data for WordsApiService.InsertTableCellOnline method.

func (*InsertTableCellOnlineRequest) CreateRequestData ¶

func (data *InsertTableCellOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertTableCellOnlineRequest) CreateResponse ¶

func (data *InsertTableCellOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertTableCellOnlineResponse ¶

type InsertTableCellOnlineResponse struct {
	// The REST response with a table cell.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}" REST API requests.
	Model ITableCellResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertTableCellOnlineResponse struct Inserts a new cell to the table row.

func (*InsertTableCellOnlineResponse) GetDocument ¶

func (obj *InsertTableCellOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertTableCellOnlineResponse) GetModel ¶

func (*InsertTableCellOnlineResponse) SetDocument ¶

func (obj *InsertTableCellOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertTableCellOnlineResponse) SetModel ¶

type InsertTableCellRequest ¶

type InsertTableCellRequest struct {
	// The filename of the input document.
	Name *string
	// Table cell parameters.
	Cell ITableCellInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "tableRowPath" value: (*string) The path to the table row in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertTableCellRequest contains request data for WordsApiService.InsertTableCell method.

func (*InsertTableCellRequest) CreateRequestData ¶

func (data *InsertTableCellRequest) CreateRequestData() (RequestData, error)

func (*InsertTableCellRequest) CreateResponse ¶

func (data *InsertTableCellRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertTableOnlineRequest ¶

type InsertTableOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Table parameters.
	Table ITableInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertTableOnlineRequest contains request data for WordsApiService.InsertTableOnline method.

func (*InsertTableOnlineRequest) CreateRequestData ¶

func (data *InsertTableOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertTableOnlineRequest) CreateResponse ¶

func (data *InsertTableOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertTableOnlineResponse ¶

type InsertTableOnlineResponse struct {
	// The REST response with a table.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}" REST API requests.
	Model ITableResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertTableOnlineResponse struct Inserts a new table to the document node.

func (*InsertTableOnlineResponse) GetDocument ¶

func (obj *InsertTableOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertTableOnlineResponse) GetModel ¶

func (obj *InsertTableOnlineResponse) GetModel() ITableResponse

func (*InsertTableOnlineResponse) SetDocument ¶

func (obj *InsertTableOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertTableOnlineResponse) SetModel ¶

func (obj *InsertTableOnlineResponse) SetModel(value ITableResponse)

type InsertTableRequest ¶

type InsertTableRequest struct {
	// The filename of the input document.
	Name *string
	// Table parameters.
	Table ITableInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertTableRequest contains request data for WordsApiService.InsertTable method.

func (*InsertTableRequest) CreateRequestData ¶

func (data *InsertTableRequest) CreateRequestData() (RequestData, error)

func (*InsertTableRequest) CreateResponse ¶

func (data *InsertTableRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertTableRowOnlineRequest ¶

type InsertTableRowOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Table row parameters.
	Row ITableRowInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the table in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertTableRowOnlineRequest contains request data for WordsApiService.InsertTableRowOnline method.

func (*InsertTableRowOnlineRequest) CreateRequestData ¶

func (data *InsertTableRowOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertTableRowOnlineRequest) CreateResponse ¶

func (data *InsertTableRowOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertTableRowOnlineResponse ¶

type InsertTableRowOnlineResponse struct {
	// The REST response with a table row.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}" REST API requests.
	Model ITableRowResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertTableRowOnlineResponse struct Inserts a new row to the table.

func (*InsertTableRowOnlineResponse) GetDocument ¶

func (obj *InsertTableRowOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertTableRowOnlineResponse) GetModel ¶

func (*InsertTableRowOnlineResponse) SetDocument ¶

func (obj *InsertTableRowOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertTableRowOnlineResponse) SetModel ¶

func (obj *InsertTableRowOnlineResponse) SetModel(value ITableRowResponse)

type InsertTableRowRequest ¶

type InsertTableRowRequest struct {
	// The filename of the input document.
	Name *string
	// Table row parameters.
	Row ITableRowInsert
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the table in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertTableRowRequest contains request data for WordsApiService.InsertTableRow method.

func (*InsertTableRowRequest) CreateRequestData ¶

func (data *InsertTableRowRequest) CreateRequestData() (RequestData, error)

func (*InsertTableRowRequest) CreateResponse ¶

func (data *InsertTableRowRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertWatermarkImageOnlineRequest ¶

type InsertWatermarkImageOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "imageFile" value: (io.ReadCloser) File with image.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions.
	   key: "rotationAngle" value: (*float64) The rotation angle of the watermark.
	   key: "image" value: (*string) The filename of the image. If the parameter value is missing — the image data is expected in the request content. */
	Optionals map[string]interface{}
}

InsertWatermarkImageOnlineRequest contains request data for WordsApiService.InsertWatermarkImageOnline method.

func (*InsertWatermarkImageOnlineRequest) CreateRequestData ¶

func (data *InsertWatermarkImageOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertWatermarkImageOnlineRequest) CreateResponse ¶

func (data *InsertWatermarkImageOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertWatermarkImageOnlineResponse ¶

type InsertWatermarkImageOnlineResponse struct {
	// The REST response with a document description.
	Model IDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertWatermarkImageOnlineResponse struct Inserts a new watermark image to the document.

func (*InsertWatermarkImageOnlineResponse) GetDocument ¶

func (obj *InsertWatermarkImageOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertWatermarkImageOnlineResponse) GetModel ¶

func (*InsertWatermarkImageOnlineResponse) SetDocument ¶

func (obj *InsertWatermarkImageOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertWatermarkImageOnlineResponse) SetModel ¶

type InsertWatermarkImageRequest ¶

type InsertWatermarkImageRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "imageFile" value: (io.ReadCloser) File with image.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions.
	   key: "rotationAngle" value: (*float64) The rotation angle of the watermark.
	   key: "image" value: (*string) The filename of the image. If the parameter value is missing — the image data is expected in the request content. */
	Optionals map[string]interface{}
}

InsertWatermarkImageRequest contains request data for WordsApiService.InsertWatermarkImage method.

func (*InsertWatermarkImageRequest) CreateRequestData ¶

func (data *InsertWatermarkImageRequest) CreateRequestData() (RequestData, error)

func (*InsertWatermarkImageRequest) CreateResponse ¶

func (data *InsertWatermarkImageRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertWatermarkOnlineRequest ¶

type InsertWatermarkOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The watermark data.
	WatermarkData IWatermarkDataBase
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertWatermarkOnlineRequest contains request data for WordsApiService.InsertWatermarkOnline method.

func (*InsertWatermarkOnlineRequest) CreateRequestData ¶

func (data *InsertWatermarkOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertWatermarkOnlineRequest) CreateResponse ¶

func (data *InsertWatermarkOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertWatermarkOnlineResponse ¶

type InsertWatermarkOnlineResponse struct {
	// The REST response with a document description.
	Model IDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertWatermarkOnlineResponse struct Insert a watermark to the document.

func (*InsertWatermarkOnlineResponse) GetDocument ¶

func (obj *InsertWatermarkOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertWatermarkOnlineResponse) GetModel ¶

func (*InsertWatermarkOnlineResponse) SetDocument ¶

func (obj *InsertWatermarkOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertWatermarkOnlineResponse) SetModel ¶

func (obj *InsertWatermarkOnlineResponse) SetModel(value IDocumentResponse)

type InsertWatermarkRequest ¶

type InsertWatermarkRequest struct {
	// The filename of the input document.
	Name *string
	// The watermark data.
	WatermarkData IWatermarkDataBase
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertWatermarkRequest contains request data for WordsApiService.InsertWatermark method.

func (*InsertWatermarkRequest) CreateRequestData ¶

func (data *InsertWatermarkRequest) CreateRequestData() (RequestData, error)

func (*InsertWatermarkRequest) CreateResponse ¶

func (data *InsertWatermarkRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertWatermarkTextOnlineRequest ¶

type InsertWatermarkTextOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The watermark data.
	WatermarkText IWatermarkText
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertWatermarkTextOnlineRequest contains request data for WordsApiService.InsertWatermarkTextOnline method.

func (*InsertWatermarkTextOnlineRequest) CreateRequestData ¶

func (data *InsertWatermarkTextOnlineRequest) CreateRequestData() (RequestData, error)

func (*InsertWatermarkTextOnlineRequest) CreateResponse ¶

func (data *InsertWatermarkTextOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type InsertWatermarkTextOnlineResponse ¶

type InsertWatermarkTextOnlineResponse struct {
	// The REST response with a document description.
	Model IDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

InsertWatermarkTextOnlineResponse struct Inserts a new watermark text to the document.

func (*InsertWatermarkTextOnlineResponse) GetDocument ¶

func (obj *InsertWatermarkTextOnlineResponse) GetDocument() map[string]io.Reader

func (*InsertWatermarkTextOnlineResponse) GetModel ¶

func (*InsertWatermarkTextOnlineResponse) SetDocument ¶

func (obj *InsertWatermarkTextOnlineResponse) SetDocument(value map[string]io.Reader)

func (*InsertWatermarkTextOnlineResponse) SetModel ¶

type InsertWatermarkTextRequest ¶

type InsertWatermarkTextRequest struct {
	// The filename of the input document.
	Name *string
	// The watermark data.
	WatermarkText IWatermarkText
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

InsertWatermarkTextRequest contains request data for WordsApiService.InsertWatermarkText method.

func (*InsertWatermarkTextRequest) CreateRequestData ¶

func (data *InsertWatermarkTextRequest) CreateRequestData() (RequestData, error)

func (*InsertWatermarkTextRequest) CreateResponse ¶

func (data *InsertWatermarkTextRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type JpegSaveOptionsData ¶

type JpegSaveOptionsData struct {
	// Container class for jpeg save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for jpeg save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for jpeg save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for jpeg save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for jpeg save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for jpeg save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for jpeg save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for jpeg save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for jpeg save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for jpeg save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for jpeg save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for jpeg save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for jpeg save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for jpeg save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for jpeg save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for jpeg save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for jpeg save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for jpeg save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for jpeg save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for jpeg save options.
	HorizontalResolution *float64 `json:"HorizontalResolution,omitempty"`

	// Container class for jpeg save options.
	ImageBrightness *float64 `json:"ImageBrightness,omitempty"`

	// Container class for jpeg save options.
	ImageColorMode *string `json:"ImageColorMode,omitempty"`

	// Container class for jpeg save options.
	ImageContrast *float64 `json:"ImageContrast,omitempty"`

	// Container class for jpeg save options.
	PaperColor *string `json:"PaperColor,omitempty"`

	// Container class for jpeg save options.
	PixelFormat *string `json:"PixelFormat,omitempty"`

	// Container class for jpeg save options.
	Resolution *float64 `json:"Resolution,omitempty"`

	// Container class for jpeg save options.
	Scale *float64 `json:"Scale,omitempty"`

	// Container class for jpeg save options.
	UseAntiAliasing *bool `json:"UseAntiAliasing,omitempty"`

	// Container class for jpeg save options.
	UseHighQualityRendering *bool `json:"UseHighQualityRendering,omitempty"`

	// Container class for jpeg save options.
	VerticalResolution *float64 `json:"VerticalResolution,omitempty"`

	// Container class for jpeg save options.
	ImageHeight *int32 `json:"ImageHeight,omitempty"`

	// Container class for jpeg save options.
	ImageWidth *int32 `json:"ImageWidth,omitempty"`

	// Container class for jpeg save options.
	UseGdiEmfRenderer *bool `json:"UseGdiEmfRenderer,omitempty"`

	// Container class for jpeg save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*JpegSaveOptionsData) CollectFilesContent ¶

func (obj *JpegSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*JpegSaveOptionsData) Deserialize ¶

func (obj *JpegSaveOptionsData) Deserialize(json map[string]interface{})

func (*JpegSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *JpegSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*JpegSaveOptionsData) GetColorMode ¶

func (obj *JpegSaveOptionsData) GetColorMode() *string

func (*JpegSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *JpegSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*JpegSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *JpegSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*JpegSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *JpegSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*JpegSaveOptionsData) GetDmlRenderingMode ¶

func (obj *JpegSaveOptionsData) GetDmlRenderingMode() *string

func (*JpegSaveOptionsData) GetFileName ¶

func (obj *JpegSaveOptionsData) GetFileName() *string

func (*JpegSaveOptionsData) GetHorizontalResolution ¶

func (obj *JpegSaveOptionsData) GetHorizontalResolution() *float64

func (*JpegSaveOptionsData) GetImageBrightness ¶

func (obj *JpegSaveOptionsData) GetImageBrightness() *float64

func (*JpegSaveOptionsData) GetImageColorMode ¶

func (obj *JpegSaveOptionsData) GetImageColorMode() *string

func (*JpegSaveOptionsData) GetImageContrast ¶

func (obj *JpegSaveOptionsData) GetImageContrast() *float64

func (*JpegSaveOptionsData) GetImageHeight ¶

func (obj *JpegSaveOptionsData) GetImageHeight() *int32

func (*JpegSaveOptionsData) GetImageWidth ¶

func (obj *JpegSaveOptionsData) GetImageWidth() *int32

func (*JpegSaveOptionsData) GetImlRenderingMode ¶

func (obj *JpegSaveOptionsData) GetImlRenderingMode() *string

func (*JpegSaveOptionsData) GetJpegQuality ¶

func (obj *JpegSaveOptionsData) GetJpegQuality() *int32

func (*JpegSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *JpegSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*JpegSaveOptionsData) GetNumeralFormat ¶

func (obj *JpegSaveOptionsData) GetNumeralFormat() *string

func (*JpegSaveOptionsData) GetOptimizeOutput ¶

func (obj *JpegSaveOptionsData) GetOptimizeOutput() *bool

func (*JpegSaveOptionsData) GetPageCount ¶

func (obj *JpegSaveOptionsData) GetPageCount() *int32

func (*JpegSaveOptionsData) GetPageIndex ¶

func (obj *JpegSaveOptionsData) GetPageIndex() *int32

func (*JpegSaveOptionsData) GetPaperColor ¶

func (obj *JpegSaveOptionsData) GetPaperColor() *string

func (*JpegSaveOptionsData) GetPixelFormat ¶

func (obj *JpegSaveOptionsData) GetPixelFormat() *string

func (*JpegSaveOptionsData) GetResolution ¶

func (obj *JpegSaveOptionsData) GetResolution() *float64

func (*JpegSaveOptionsData) GetSaveFormat ¶

func (obj *JpegSaveOptionsData) GetSaveFormat() *string

func (*JpegSaveOptionsData) GetScale ¶

func (obj *JpegSaveOptionsData) GetScale() *float64

func (*JpegSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *JpegSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*JpegSaveOptionsData) GetUpdateFields ¶

func (obj *JpegSaveOptionsData) GetUpdateFields() *bool

func (*JpegSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *JpegSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*JpegSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *JpegSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*JpegSaveOptionsData) GetUseAntiAliasing ¶

func (obj *JpegSaveOptionsData) GetUseAntiAliasing() *bool

func (*JpegSaveOptionsData) GetUseGdiEmfRenderer ¶

func (obj *JpegSaveOptionsData) GetUseGdiEmfRenderer() *bool

func (*JpegSaveOptionsData) GetUseHighQualityRendering ¶

func (obj *JpegSaveOptionsData) GetUseHighQualityRendering() *bool

func (*JpegSaveOptionsData) GetVerticalResolution ¶

func (obj *JpegSaveOptionsData) GetVerticalResolution() *float64

func (*JpegSaveOptionsData) GetZipOutput ¶

func (obj *JpegSaveOptionsData) GetZipOutput() *bool

func (*JpegSaveOptionsData) Initialize ¶

func (obj *JpegSaveOptionsData) Initialize()

func (JpegSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (JpegSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (JpegSaveOptionsData) IsImageSaveOptionsData ¶

func (JpegSaveOptionsData) IsImageSaveOptionsData() bool

func (JpegSaveOptionsData) IsJpegSaveOptionsData ¶

func (JpegSaveOptionsData) IsJpegSaveOptionsData() bool

func (JpegSaveOptionsData) IsSaveOptionsData ¶

func (JpegSaveOptionsData) IsSaveOptionsData() bool

func (*JpegSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *JpegSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*JpegSaveOptionsData) SetColorMode ¶

func (obj *JpegSaveOptionsData) SetColorMode(value *string)

func (*JpegSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *JpegSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*JpegSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *JpegSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*JpegSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *JpegSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*JpegSaveOptionsData) SetDmlRenderingMode ¶

func (obj *JpegSaveOptionsData) SetDmlRenderingMode(value *string)

func (*JpegSaveOptionsData) SetFileName ¶

func (obj *JpegSaveOptionsData) SetFileName(value *string)

func (*JpegSaveOptionsData) SetHorizontalResolution ¶

func (obj *JpegSaveOptionsData) SetHorizontalResolution(value *float64)

func (*JpegSaveOptionsData) SetImageBrightness ¶

func (obj *JpegSaveOptionsData) SetImageBrightness(value *float64)

func (*JpegSaveOptionsData) SetImageColorMode ¶

func (obj *JpegSaveOptionsData) SetImageColorMode(value *string)

func (*JpegSaveOptionsData) SetImageContrast ¶

func (obj *JpegSaveOptionsData) SetImageContrast(value *float64)

func (*JpegSaveOptionsData) SetImageHeight ¶

func (obj *JpegSaveOptionsData) SetImageHeight(value *int32)

func (*JpegSaveOptionsData) SetImageWidth ¶

func (obj *JpegSaveOptionsData) SetImageWidth(value *int32)

func (*JpegSaveOptionsData) SetImlRenderingMode ¶

func (obj *JpegSaveOptionsData) SetImlRenderingMode(value *string)

func (*JpegSaveOptionsData) SetJpegQuality ¶

func (obj *JpegSaveOptionsData) SetJpegQuality(value *int32)

func (*JpegSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *JpegSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*JpegSaveOptionsData) SetNumeralFormat ¶

func (obj *JpegSaveOptionsData) SetNumeralFormat(value *string)

func (*JpegSaveOptionsData) SetOptimizeOutput ¶

func (obj *JpegSaveOptionsData) SetOptimizeOutput(value *bool)

func (*JpegSaveOptionsData) SetPageCount ¶

func (obj *JpegSaveOptionsData) SetPageCount(value *int32)

func (*JpegSaveOptionsData) SetPageIndex ¶

func (obj *JpegSaveOptionsData) SetPageIndex(value *int32)

func (*JpegSaveOptionsData) SetPaperColor ¶

func (obj *JpegSaveOptionsData) SetPaperColor(value *string)

func (*JpegSaveOptionsData) SetPixelFormat ¶

func (obj *JpegSaveOptionsData) SetPixelFormat(value *string)

func (*JpegSaveOptionsData) SetResolution ¶

func (obj *JpegSaveOptionsData) SetResolution(value *float64)

func (*JpegSaveOptionsData) SetSaveFormat ¶

func (obj *JpegSaveOptionsData) SetSaveFormat(value *string)

func (*JpegSaveOptionsData) SetScale ¶

func (obj *JpegSaveOptionsData) SetScale(value *float64)

func (*JpegSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *JpegSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*JpegSaveOptionsData) SetUpdateFields ¶

func (obj *JpegSaveOptionsData) SetUpdateFields(value *bool)

func (*JpegSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *JpegSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*JpegSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *JpegSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*JpegSaveOptionsData) SetUseAntiAliasing ¶

func (obj *JpegSaveOptionsData) SetUseAntiAliasing(value *bool)

func (*JpegSaveOptionsData) SetUseGdiEmfRenderer ¶

func (obj *JpegSaveOptionsData) SetUseGdiEmfRenderer(value *bool)

func (*JpegSaveOptionsData) SetUseHighQualityRendering ¶

func (obj *JpegSaveOptionsData) SetUseHighQualityRendering(value *bool)

func (*JpegSaveOptionsData) SetVerticalResolution ¶

func (obj *JpegSaveOptionsData) SetVerticalResolution(value *float64)

func (*JpegSaveOptionsData) SetZipOutput ¶

func (obj *JpegSaveOptionsData) SetZipOutput(value *bool)

func (*JpegSaveOptionsData) Validate ¶

func (obj *JpegSaveOptionsData) Validate() error

type JsonDataLoadOptions ¶

type JsonDataLoadOptions struct {
	// Represents options for parsing JSON data.
	// An instance of this class can be passed into constructors of Aspose.Words.Reporting.JsonDataSource.
	AlwaysGenerateRootObject *bool `json:"AlwaysGenerateRootObject,omitempty"`

	// Represents options for parsing JSON data.
	// An instance of this class can be passed into constructors of Aspose.Words.Reporting.JsonDataSource.
	ExactDateTimeParseFormats []string `json:"ExactDateTimeParseFormats,omitempty"`

	// Represents options for parsing JSON data.
	// An instance of this class can be passed into constructors of Aspose.Words.Reporting.JsonDataSource.
	SimpleValueParseMode *string `json:"SimpleValueParseMode,omitempty"`
}

func (*JsonDataLoadOptions) CollectFilesContent ¶

func (obj *JsonDataLoadOptions) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*JsonDataLoadOptions) Deserialize ¶

func (obj *JsonDataLoadOptions) Deserialize(json map[string]interface{})

func (*JsonDataLoadOptions) GetAlwaysGenerateRootObject ¶

func (obj *JsonDataLoadOptions) GetAlwaysGenerateRootObject() *bool

func (*JsonDataLoadOptions) GetExactDateTimeParseFormats ¶

func (obj *JsonDataLoadOptions) GetExactDateTimeParseFormats() []string

func (*JsonDataLoadOptions) GetSimpleValueParseMode ¶

func (obj *JsonDataLoadOptions) GetSimpleValueParseMode() *string

func (*JsonDataLoadOptions) Initialize ¶

func (obj *JsonDataLoadOptions) Initialize()

func (JsonDataLoadOptions) IsJsonDataLoadOptions ¶

func (JsonDataLoadOptions) IsJsonDataLoadOptions() bool

func (*JsonDataLoadOptions) SetAlwaysGenerateRootObject ¶

func (obj *JsonDataLoadOptions) SetAlwaysGenerateRootObject(value *bool)

func (*JsonDataLoadOptions) SetExactDateTimeParseFormats ¶

func (obj *JsonDataLoadOptions) SetExactDateTimeParseFormats(value []string)

func (*JsonDataLoadOptions) SetSimpleValueParseMode ¶

func (obj *JsonDataLoadOptions) SetSimpleValueParseMode(value *string)

func (*JsonDataLoadOptions) Validate ¶

func (obj *JsonDataLoadOptions) Validate() error
type Link struct {
	// Provides information for the object link.
	// This is supposed to be an atom:link, therefore it should have all attributes specified here http://tools.ietf.org/html/rfc4287#section-4.2.7.
	Href *string `json:"Href,omitempty"`

	// Provides information for the object link.
	// This is supposed to be an atom:link, therefore it should have all attributes specified here http://tools.ietf.org/html/rfc4287#section-4.2.7.
	Rel *string `json:"Rel,omitempty"`

	// Provides information for the object link.
	// This is supposed to be an atom:link, therefore it should have all attributes specified here http://tools.ietf.org/html/rfc4287#section-4.2.7.
	Title *string `json:"Title,omitempty"`

	// Provides information for the object link.
	// This is supposed to be an atom:link, therefore it should have all attributes specified here http://tools.ietf.org/html/rfc4287#section-4.2.7.
	Type *string `json:"Type,omitempty"`
}

func (*Link) CollectFilesContent ¶

func (obj *Link) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Link) Deserialize ¶

func (obj *Link) Deserialize(json map[string]interface{})

func (*Link) GetHref ¶

func (obj *Link) GetHref() *string

func (*Link) GetRel ¶

func (obj *Link) GetRel() *string

func (*Link) GetTitle ¶

func (obj *Link) GetTitle() *string

func (*Link) GetType ¶

func (obj *Link) GetType() *string

func (*Link) Initialize ¶

func (obj *Link) Initialize()
func (Link) IsLink() bool

func (*Link) SetHref ¶

func (obj *Link) SetHref(value *string)

func (*Link) SetRel ¶

func (obj *Link) SetRel(value *string)

func (*Link) SetTitle ¶

func (obj *Link) SetTitle(value *string)

func (*Link) SetType ¶

func (obj *Link) SetType(value *string)

func (*Link) Validate ¶

func (obj *Link) Validate() error

type LinkElement ¶

type LinkElement struct {
	// Reference to a document.
	Link IWordsApiLink `json:"Link,omitempty"`
}

func (*LinkElement) CollectFilesContent ¶

func (obj *LinkElement) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*LinkElement) Deserialize ¶

func (obj *LinkElement) Deserialize(json map[string]interface{})
func (obj *LinkElement) GetLink() IWordsApiLink

func (*LinkElement) Initialize ¶

func (obj *LinkElement) Initialize()

func (LinkElement) IsLinkElement ¶

func (LinkElement) IsLinkElement() bool
func (obj *LinkElement) SetLink(value IWordsApiLink)

func (*LinkElement) Validate ¶

func (obj *LinkElement) Validate() error

type LinkHeaderFootersToPreviousRequest ¶

type LinkHeaderFootersToPreviousRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the section.
	SectionIndex *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions.
	   key: "mode" value: (*bool) Linking mode. */
	Optionals map[string]interface{}
}

LinkHeaderFootersToPreviousRequest contains request data for WordsApiService.LinkHeaderFootersToPrevious method.

func (*LinkHeaderFootersToPreviousRequest) CreateRequestData ¶

func (data *LinkHeaderFootersToPreviousRequest) CreateRequestData() (RequestData, error)

func (*LinkHeaderFootersToPreviousRequest) CreateResponse ¶

func (data *LinkHeaderFootersToPreviousRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ListFormat ¶

type ListFormat struct {
	// DTO container with a paragraph list format element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a paragraph list format element.
	ListLevelNumber *int32 `json:"ListLevelNumber,omitempty"`

	// DTO container with a paragraph list format element.
	ListId *int32 `json:"ListId,omitempty"`

	// DTO container with a paragraph list format element.
	IsListItem *bool `json:"IsListItem,omitempty"`
}

func (*ListFormat) CollectFilesContent ¶

func (obj *ListFormat) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ListFormat) Deserialize ¶

func (obj *ListFormat) Deserialize(json map[string]interface{})

func (*ListFormat) GetIsListItem ¶

func (obj *ListFormat) GetIsListItem() *bool
func (obj *ListFormat) GetLink() IWordsApiLink

func (*ListFormat) GetListId ¶

func (obj *ListFormat) GetListId() *int32

func (*ListFormat) GetListLevelNumber ¶

func (obj *ListFormat) GetListLevelNumber() *int32

func (*ListFormat) Initialize ¶

func (obj *ListFormat) Initialize()

func (ListFormat) IsLinkElement ¶

func (ListFormat) IsLinkElement() bool

func (ListFormat) IsListFormat ¶

func (ListFormat) IsListFormat() bool

func (*ListFormat) SetIsListItem ¶

func (obj *ListFormat) SetIsListItem(value *bool)
func (obj *ListFormat) SetLink(value IWordsApiLink)

func (*ListFormat) SetListId ¶

func (obj *ListFormat) SetListId(value *int32)

func (*ListFormat) SetListLevelNumber ¶

func (obj *ListFormat) SetListLevelNumber(value *int32)

func (*ListFormat) Validate ¶

func (obj *ListFormat) Validate() error

type ListFormatUpdate ¶

type ListFormatUpdate struct {
	// Paragraph list format element for update.
	ListLevelNumber *int32 `json:"ListLevelNumber,omitempty"`

	// Paragraph list format element for update.
	ListId *int32 `json:"ListId,omitempty"`
}

func (*ListFormatUpdate) CollectFilesContent ¶

func (obj *ListFormatUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ListFormatUpdate) Deserialize ¶

func (obj *ListFormatUpdate) Deserialize(json map[string]interface{})

func (*ListFormatUpdate) GetListId ¶

func (obj *ListFormatUpdate) GetListId() *int32

func (*ListFormatUpdate) GetListLevelNumber ¶

func (obj *ListFormatUpdate) GetListLevelNumber() *int32

func (*ListFormatUpdate) Initialize ¶

func (obj *ListFormatUpdate) Initialize()

func (ListFormatUpdate) IsListFormatUpdate ¶

func (ListFormatUpdate) IsListFormatUpdate() bool

func (*ListFormatUpdate) SetListId ¶

func (obj *ListFormatUpdate) SetListId(value *int32)

func (*ListFormatUpdate) SetListLevelNumber ¶

func (obj *ListFormatUpdate) SetListLevelNumber(value *int32)

func (*ListFormatUpdate) Validate ¶

func (obj *ListFormatUpdate) Validate() error

type ListInfo ¶

type ListInfo struct {
	// DTO container with a single document list.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a single document list.
	ListId *int32 `json:"ListId,omitempty"`

	// DTO container with a single document list.
	IsMultiLevel *bool `json:"IsMultiLevel,omitempty"`

	// DTO container with a single document list.
	IsRestartAtEachSection *bool `json:"IsRestartAtEachSection,omitempty"`

	// DTO container with a single document list.
	IsListStyleDefinition *bool `json:"IsListStyleDefinition,omitempty"`

	// DTO container with a single document list.
	IsListStyleReference *bool `json:"IsListStyleReference,omitempty"`

	// DTO container with a single document list.
	Style IStyle `json:"Style,omitempty"`

	// DTO container with a single document list.
	ListLevels IListLevels `json:"ListLevels,omitempty"`
}

func (*ListInfo) CollectFilesContent ¶

func (obj *ListInfo) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ListInfo) Deserialize ¶

func (obj *ListInfo) Deserialize(json map[string]interface{})

func (*ListInfo) GetIsListStyleDefinition ¶

func (obj *ListInfo) GetIsListStyleDefinition() *bool

func (*ListInfo) GetIsListStyleReference ¶

func (obj *ListInfo) GetIsListStyleReference() *bool

func (*ListInfo) GetIsMultiLevel ¶

func (obj *ListInfo) GetIsMultiLevel() *bool

func (*ListInfo) GetIsRestartAtEachSection ¶

func (obj *ListInfo) GetIsRestartAtEachSection() *bool
func (obj *ListInfo) GetLink() IWordsApiLink

func (*ListInfo) GetListId ¶

func (obj *ListInfo) GetListId() *int32

func (*ListInfo) GetListLevels ¶

func (obj *ListInfo) GetListLevels() IListLevels

func (*ListInfo) GetStyle ¶

func (obj *ListInfo) GetStyle() IStyle

func (*ListInfo) Initialize ¶

func (obj *ListInfo) Initialize()

func (ListInfo) IsLinkElement ¶

func (ListInfo) IsLinkElement() bool

func (ListInfo) IsListInfo ¶

func (ListInfo) IsListInfo() bool

func (*ListInfo) SetIsListStyleDefinition ¶

func (obj *ListInfo) SetIsListStyleDefinition(value *bool)

func (*ListInfo) SetIsListStyleReference ¶

func (obj *ListInfo) SetIsListStyleReference(value *bool)

func (*ListInfo) SetIsMultiLevel ¶

func (obj *ListInfo) SetIsMultiLevel(value *bool)

func (*ListInfo) SetIsRestartAtEachSection ¶

func (obj *ListInfo) SetIsRestartAtEachSection(value *bool)
func (obj *ListInfo) SetLink(value IWordsApiLink)

func (*ListInfo) SetListId ¶

func (obj *ListInfo) SetListId(value *int32)

func (*ListInfo) SetListLevels ¶

func (obj *ListInfo) SetListLevels(value IListLevels)

func (*ListInfo) SetStyle ¶

func (obj *ListInfo) SetStyle(value IStyle)

func (*ListInfo) Validate ¶

func (obj *ListInfo) Validate() error

type ListInsert ¶

type ListInsert struct {
	// Insert document to document list.
	Template *string `json:"Template,omitempty"`
}

func (*ListInsert) CollectFilesContent ¶

func (obj *ListInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ListInsert) Deserialize ¶

func (obj *ListInsert) Deserialize(json map[string]interface{})

func (*ListInsert) GetTemplate ¶

func (obj *ListInsert) GetTemplate() *string

func (*ListInsert) Initialize ¶

func (obj *ListInsert) Initialize()

func (ListInsert) IsListInsert ¶

func (ListInsert) IsListInsert() bool

func (*ListInsert) SetTemplate ¶

func (obj *ListInsert) SetTemplate(value *string)

func (*ListInsert) Validate ¶

func (obj *ListInsert) Validate() error

type ListLevel ¶

type ListLevel struct {
	// DTO container with a document list level.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a document list level.
	StartAt *int32 `json:"StartAt,omitempty"`

	// DTO container with a document list level.
	NumberStyle *string `json:"NumberStyle,omitempty"`

	// DTO container with a document list level.
	NumberFormat *string `json:"NumberFormat,omitempty"`

	// DTO container with a document list level.
	Alignment *string `json:"Alignment,omitempty"`

	// DTO container with a document list level.
	IsLegal *bool `json:"IsLegal,omitempty"`

	// DTO container with a document list level.
	RestartAfterLevel *int32 `json:"RestartAfterLevel,omitempty"`

	// DTO container with a document list level.
	TrailingCharacter *string `json:"TrailingCharacter,omitempty"`

	// DTO container with a document list level.
	Font IFont `json:"Font,omitempty"`

	// DTO container with a document list level.
	TabPosition *float64 `json:"TabPosition,omitempty"`

	// DTO container with a document list level.
	NumberPosition *float64 `json:"NumberPosition,omitempty"`

	// DTO container with a document list level.
	TextPosition *float64 `json:"TextPosition,omitempty"`

	// DTO container with a document list level.
	LinkedStyle IStyle `json:"LinkedStyle,omitempty"`
}

func (*ListLevel) CollectFilesContent ¶

func (obj *ListLevel) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ListLevel) Deserialize ¶

func (obj *ListLevel) Deserialize(json map[string]interface{})

func (*ListLevel) GetAlignment ¶

func (obj *ListLevel) GetAlignment() *string

func (*ListLevel) GetFont ¶

func (obj *ListLevel) GetFont() IFont

func (*ListLevel) GetIsLegal ¶

func (obj *ListLevel) GetIsLegal() *bool
func (obj *ListLevel) GetLink() IWordsApiLink

func (*ListLevel) GetLinkedStyle ¶

func (obj *ListLevel) GetLinkedStyle() IStyle

func (*ListLevel) GetNumberFormat ¶

func (obj *ListLevel) GetNumberFormat() *string

func (*ListLevel) GetNumberPosition ¶

func (obj *ListLevel) GetNumberPosition() *float64

func (*ListLevel) GetNumberStyle ¶

func (obj *ListLevel) GetNumberStyle() *string

func (*ListLevel) GetRestartAfterLevel ¶

func (obj *ListLevel) GetRestartAfterLevel() *int32

func (*ListLevel) GetStartAt ¶

func (obj *ListLevel) GetStartAt() *int32

func (*ListLevel) GetTabPosition ¶

func (obj *ListLevel) GetTabPosition() *float64

func (*ListLevel) GetTextPosition ¶

func (obj *ListLevel) GetTextPosition() *float64

func (*ListLevel) GetTrailingCharacter ¶

func (obj *ListLevel) GetTrailingCharacter() *string

func (*ListLevel) Initialize ¶

func (obj *ListLevel) Initialize()

func (ListLevel) IsLinkElement ¶

func (ListLevel) IsLinkElement() bool

func (ListLevel) IsListLevel ¶

func (ListLevel) IsListLevel() bool

func (*ListLevel) SetAlignment ¶

func (obj *ListLevel) SetAlignment(value *string)

func (*ListLevel) SetFont ¶

func (obj *ListLevel) SetFont(value IFont)

func (*ListLevel) SetIsLegal ¶

func (obj *ListLevel) SetIsLegal(value *bool)
func (obj *ListLevel) SetLink(value IWordsApiLink)

func (*ListLevel) SetLinkedStyle ¶

func (obj *ListLevel) SetLinkedStyle(value IStyle)

func (*ListLevel) SetNumberFormat ¶

func (obj *ListLevel) SetNumberFormat(value *string)

func (*ListLevel) SetNumberPosition ¶

func (obj *ListLevel) SetNumberPosition(value *float64)

func (*ListLevel) SetNumberStyle ¶

func (obj *ListLevel) SetNumberStyle(value *string)

func (*ListLevel) SetRestartAfterLevel ¶

func (obj *ListLevel) SetRestartAfterLevel(value *int32)

func (*ListLevel) SetStartAt ¶

func (obj *ListLevel) SetStartAt(value *int32)

func (*ListLevel) SetTabPosition ¶

func (obj *ListLevel) SetTabPosition(value *float64)

func (*ListLevel) SetTextPosition ¶

func (obj *ListLevel) SetTextPosition(value *float64)

func (*ListLevel) SetTrailingCharacter ¶

func (obj *ListLevel) SetTrailingCharacter(value *string)

func (*ListLevel) Validate ¶

func (obj *ListLevel) Validate() error

type ListLevelUpdate ¶

type ListLevelUpdate struct {
	// Represents a document list levels.
	StartAt *int32 `json:"StartAt,omitempty"`

	// Represents a document list levels.
	NumberStyle *string `json:"NumberStyle,omitempty"`

	// Represents a document list levels.
	NumberFormat *string `json:"NumberFormat,omitempty"`

	// Represents a document list levels.
	Alignment *string `json:"Alignment,omitempty"`

	// Represents a document list levels.
	IsLegal *bool `json:"IsLegal,omitempty"`

	// Represents a document list levels.
	RestartAfterLevel *int32 `json:"RestartAfterLevel,omitempty"`

	// Represents a document list levels.
	TrailingCharacter *string `json:"TrailingCharacter,omitempty"`

	// Represents a document list levels.
	TabPosition *float64 `json:"TabPosition,omitempty"`

	// Represents a document list levels.
	NumberPosition *float64 `json:"NumberPosition,omitempty"`

	// Represents a document list levels.
	TextPosition *float64 `json:"TextPosition,omitempty"`
}

func (*ListLevelUpdate) CollectFilesContent ¶

func (obj *ListLevelUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ListLevelUpdate) Deserialize ¶

func (obj *ListLevelUpdate) Deserialize(json map[string]interface{})

func (*ListLevelUpdate) GetAlignment ¶

func (obj *ListLevelUpdate) GetAlignment() *string

func (*ListLevelUpdate) GetIsLegal ¶

func (obj *ListLevelUpdate) GetIsLegal() *bool

func (*ListLevelUpdate) GetNumberFormat ¶

func (obj *ListLevelUpdate) GetNumberFormat() *string

func (*ListLevelUpdate) GetNumberPosition ¶

func (obj *ListLevelUpdate) GetNumberPosition() *float64

func (*ListLevelUpdate) GetNumberStyle ¶

func (obj *ListLevelUpdate) GetNumberStyle() *string

func (*ListLevelUpdate) GetRestartAfterLevel ¶

func (obj *ListLevelUpdate) GetRestartAfterLevel() *int32

func (*ListLevelUpdate) GetStartAt ¶

func (obj *ListLevelUpdate) GetStartAt() *int32

func (*ListLevelUpdate) GetTabPosition ¶

func (obj *ListLevelUpdate) GetTabPosition() *float64

func (*ListLevelUpdate) GetTextPosition ¶

func (obj *ListLevelUpdate) GetTextPosition() *float64

func (*ListLevelUpdate) GetTrailingCharacter ¶

func (obj *ListLevelUpdate) GetTrailingCharacter() *string

func (*ListLevelUpdate) Initialize ¶

func (obj *ListLevelUpdate) Initialize()

func (ListLevelUpdate) IsListLevelUpdate ¶

func (ListLevelUpdate) IsListLevelUpdate() bool

func (*ListLevelUpdate) SetAlignment ¶

func (obj *ListLevelUpdate) SetAlignment(value *string)

func (*ListLevelUpdate) SetIsLegal ¶

func (obj *ListLevelUpdate) SetIsLegal(value *bool)

func (*ListLevelUpdate) SetNumberFormat ¶

func (obj *ListLevelUpdate) SetNumberFormat(value *string)

func (*ListLevelUpdate) SetNumberPosition ¶

func (obj *ListLevelUpdate) SetNumberPosition(value *float64)

func (*ListLevelUpdate) SetNumberStyle ¶

func (obj *ListLevelUpdate) SetNumberStyle(value *string)

func (*ListLevelUpdate) SetRestartAfterLevel ¶

func (obj *ListLevelUpdate) SetRestartAfterLevel(value *int32)

func (*ListLevelUpdate) SetStartAt ¶

func (obj *ListLevelUpdate) SetStartAt(value *int32)

func (*ListLevelUpdate) SetTabPosition ¶

func (obj *ListLevelUpdate) SetTabPosition(value *float64)

func (*ListLevelUpdate) SetTextPosition ¶

func (obj *ListLevelUpdate) SetTextPosition(value *float64)

func (*ListLevelUpdate) SetTrailingCharacter ¶

func (obj *ListLevelUpdate) SetTrailingCharacter(value *string)

func (*ListLevelUpdate) Validate ¶

func (obj *ListLevelUpdate) Validate() error

type ListLevels ¶

type ListLevels struct {
	// DTO container with a single document list.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a single document list.
	ListLevel []IListLevel `json:"ListLevel,omitempty"`
}

func (*ListLevels) CollectFilesContent ¶

func (obj *ListLevels) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ListLevels) Deserialize ¶

func (obj *ListLevels) Deserialize(json map[string]interface{})
func (obj *ListLevels) GetLink() IWordsApiLink

func (*ListLevels) GetListLevel ¶

func (obj *ListLevels) GetListLevel() []IListLevel

func (*ListLevels) Initialize ¶

func (obj *ListLevels) Initialize()

func (ListLevels) IsLinkElement ¶

func (ListLevels) IsLinkElement() bool

func (ListLevels) IsListLevels ¶

func (ListLevels) IsListLevels() bool
func (obj *ListLevels) SetLink(value IWordsApiLink)

func (*ListLevels) SetListLevel ¶

func (obj *ListLevels) SetListLevel(value []IListLevel)

func (*ListLevels) Validate ¶

func (obj *ListLevels) Validate() error

type ListResponse ¶

type ListResponse struct {
	// The REST response with a list information.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/lists/{n}" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a list information.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/lists/{n}" REST API requests.
	List IListInfo `json:"List,omitempty"`
}

func (*ListResponse) CollectFilesContent ¶

func (obj *ListResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ListResponse) Deserialize ¶

func (obj *ListResponse) Deserialize(json map[string]interface{})

func (*ListResponse) GetList ¶

func (obj *ListResponse) GetList() IListInfo

func (*ListResponse) GetRequestId ¶

func (obj *ListResponse) GetRequestId() *string

func (*ListResponse) Initialize ¶

func (obj *ListResponse) Initialize()

func (ListResponse) IsListResponse ¶

func (ListResponse) IsListResponse() bool

func (ListResponse) IsWordsResponse ¶

func (ListResponse) IsWordsResponse() bool

func (*ListResponse) SetList ¶

func (obj *ListResponse) SetList(value IListInfo)

func (*ListResponse) SetRequestId ¶

func (obj *ListResponse) SetRequestId(value *string)

func (*ListResponse) Validate ¶

func (obj *ListResponse) Validate() error

type ListUpdate ¶

type ListUpdate struct {
	// Update document properties if document list.
	IsRestartAtEachSection *bool `json:"IsRestartAtEachSection,omitempty"`
}

func (*ListUpdate) CollectFilesContent ¶

func (obj *ListUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ListUpdate) Deserialize ¶

func (obj *ListUpdate) Deserialize(json map[string]interface{})

func (*ListUpdate) GetIsRestartAtEachSection ¶

func (obj *ListUpdate) GetIsRestartAtEachSection() *bool

func (*ListUpdate) Initialize ¶

func (obj *ListUpdate) Initialize()

func (ListUpdate) IsListUpdate ¶

func (ListUpdate) IsListUpdate() bool

func (*ListUpdate) SetIsRestartAtEachSection ¶

func (obj *ListUpdate) SetIsRestartAtEachSection(value *bool)

func (*ListUpdate) Validate ¶

func (obj *ListUpdate) Validate() error

type Lists ¶

type Lists struct {
	// DTO container with an array of document lists.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with an array of document lists.
	ListInfo []IListInfo `json:"ListInfo,omitempty"`
}

func (*Lists) CollectFilesContent ¶

func (obj *Lists) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Lists) Deserialize ¶

func (obj *Lists) Deserialize(json map[string]interface{})
func (obj *Lists) GetLink() IWordsApiLink

func (*Lists) GetListInfo ¶

func (obj *Lists) GetListInfo() []IListInfo

func (*Lists) Initialize ¶

func (obj *Lists) Initialize()

func (Lists) IsLinkElement ¶

func (Lists) IsLinkElement() bool

func (Lists) IsLists ¶

func (Lists) IsLists() bool
func (obj *Lists) SetLink(value IWordsApiLink)

func (*Lists) SetListInfo ¶

func (obj *Lists) SetListInfo(value []IListInfo)

func (*Lists) Validate ¶

func (obj *Lists) Validate() error

type ListsResponse ¶

type ListsResponse struct {
	// The REST response with a collection of lists, contained in the document.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/lists" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of lists, contained in the document.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/lists" REST API requests.
	Lists ILists `json:"Lists,omitempty"`
}

func (*ListsResponse) CollectFilesContent ¶

func (obj *ListsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ListsResponse) Deserialize ¶

func (obj *ListsResponse) Deserialize(json map[string]interface{})

func (*ListsResponse) GetLists ¶

func (obj *ListsResponse) GetLists() ILists

func (*ListsResponse) GetRequestId ¶

func (obj *ListsResponse) GetRequestId() *string

func (*ListsResponse) Initialize ¶

func (obj *ListsResponse) Initialize()

func (ListsResponse) IsListsResponse ¶

func (ListsResponse) IsListsResponse() bool

func (ListsResponse) IsWordsResponse ¶

func (ListsResponse) IsWordsResponse() bool

func (*ListsResponse) SetLists ¶

func (obj *ListsResponse) SetLists(value ILists)

func (*ListsResponse) SetRequestId ¶

func (obj *ListsResponse) SetRequestId(value *string)

func (*ListsResponse) Validate ¶

func (obj *ListsResponse) Validate() error

type LoadWebDocumentData ¶

type LoadWebDocumentData struct {
	// Contains data for load web document.
	SaveOptions ISaveOptionsData `json:"SaveOptions,omitempty"`

	// Contains data for load web document.
	LoadingDocumentUrl *string `json:"LoadingDocumentUrl,omitempty"`
}

func (*LoadWebDocumentData) CollectFilesContent ¶

func (obj *LoadWebDocumentData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*LoadWebDocumentData) Deserialize ¶

func (obj *LoadWebDocumentData) Deserialize(json map[string]interface{})

func (*LoadWebDocumentData) GetLoadingDocumentUrl ¶

func (obj *LoadWebDocumentData) GetLoadingDocumentUrl() *string

func (*LoadWebDocumentData) GetSaveOptions ¶

func (obj *LoadWebDocumentData) GetSaveOptions() ISaveOptionsData

func (*LoadWebDocumentData) Initialize ¶

func (obj *LoadWebDocumentData) Initialize()

func (LoadWebDocumentData) IsLoadWebDocumentData ¶

func (LoadWebDocumentData) IsLoadWebDocumentData() bool

func (*LoadWebDocumentData) SetLoadingDocumentUrl ¶

func (obj *LoadWebDocumentData) SetLoadingDocumentUrl(value *string)

func (*LoadWebDocumentData) SetSaveOptions ¶

func (obj *LoadWebDocumentData) SetSaveOptions(value ISaveOptionsData)

func (*LoadWebDocumentData) Validate ¶

func (obj *LoadWebDocumentData) Validate() error

type LoadWebDocumentRequest ¶

type LoadWebDocumentRequest struct {
	// The properties of data downloading.
	Data ILoadWebDocumentData
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "storage" value: (*string) Original document storage. */
	Optionals map[string]interface{}
}

LoadWebDocumentRequest contains request data for WordsApiService.LoadWebDocument method.

func (*LoadWebDocumentRequest) CreateRequestData ¶

func (data *LoadWebDocumentRequest) CreateRequestData() (RequestData, error)

func (*LoadWebDocumentRequest) CreateResponse ¶

func (data *LoadWebDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type MarkdownSaveOptionsData ¶

type MarkdownSaveOptionsData struct {
	// Container class for markdown save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for markdown save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for markdown save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for markdown save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for markdown save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for markdown save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for markdown save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for markdown save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for markdown save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for markdown save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for markdown save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for markdown save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for markdown save options.
	Encoding *string `json:"Encoding,omitempty"`

	// Container class for markdown save options.
	ExportHeadersFootersMode *string `json:"ExportHeadersFootersMode,omitempty"`

	// Container class for markdown save options.
	ForcePageBreaks *bool `json:"ForcePageBreaks,omitempty"`

	// Container class for markdown save options.
	ParagraphBreak *string `json:"ParagraphBreak,omitempty"`

	// Container class for markdown save options.
	TableContentAlignment *string `json:"TableContentAlignment,omitempty"`

	// Container class for markdown save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*MarkdownSaveOptionsData) CollectFilesContent ¶

func (obj *MarkdownSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*MarkdownSaveOptionsData) Deserialize ¶

func (obj *MarkdownSaveOptionsData) Deserialize(json map[string]interface{})

func (*MarkdownSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *MarkdownSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*MarkdownSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *MarkdownSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*MarkdownSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *MarkdownSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*MarkdownSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *MarkdownSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*MarkdownSaveOptionsData) GetDmlRenderingMode ¶

func (obj *MarkdownSaveOptionsData) GetDmlRenderingMode() *string

func (*MarkdownSaveOptionsData) GetEncoding ¶

func (obj *MarkdownSaveOptionsData) GetEncoding() *string

func (*MarkdownSaveOptionsData) GetExportHeadersFootersMode ¶

func (obj *MarkdownSaveOptionsData) GetExportHeadersFootersMode() *string

func (*MarkdownSaveOptionsData) GetFileName ¶

func (obj *MarkdownSaveOptionsData) GetFileName() *string

func (*MarkdownSaveOptionsData) GetForcePageBreaks ¶

func (obj *MarkdownSaveOptionsData) GetForcePageBreaks() *bool

func (*MarkdownSaveOptionsData) GetImlRenderingMode ¶

func (obj *MarkdownSaveOptionsData) GetImlRenderingMode() *string

func (*MarkdownSaveOptionsData) GetParagraphBreak ¶

func (obj *MarkdownSaveOptionsData) GetParagraphBreak() *string

func (*MarkdownSaveOptionsData) GetSaveFormat ¶

func (obj *MarkdownSaveOptionsData) GetSaveFormat() *string

func (*MarkdownSaveOptionsData) GetTableContentAlignment ¶

func (obj *MarkdownSaveOptionsData) GetTableContentAlignment() *string

func (*MarkdownSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *MarkdownSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*MarkdownSaveOptionsData) GetUpdateFields ¶

func (obj *MarkdownSaveOptionsData) GetUpdateFields() *bool

func (*MarkdownSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *MarkdownSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*MarkdownSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *MarkdownSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*MarkdownSaveOptionsData) GetZipOutput ¶

func (obj *MarkdownSaveOptionsData) GetZipOutput() *bool

func (*MarkdownSaveOptionsData) Initialize ¶

func (obj *MarkdownSaveOptionsData) Initialize()

func (MarkdownSaveOptionsData) IsMarkdownSaveOptionsData ¶

func (MarkdownSaveOptionsData) IsMarkdownSaveOptionsData() bool

func (MarkdownSaveOptionsData) IsSaveOptionsData ¶

func (MarkdownSaveOptionsData) IsSaveOptionsData() bool

func (MarkdownSaveOptionsData) IsTxtSaveOptionsBaseData ¶

func (MarkdownSaveOptionsData) IsTxtSaveOptionsBaseData() bool

func (*MarkdownSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *MarkdownSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*MarkdownSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *MarkdownSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*MarkdownSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *MarkdownSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*MarkdownSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *MarkdownSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*MarkdownSaveOptionsData) SetDmlRenderingMode ¶

func (obj *MarkdownSaveOptionsData) SetDmlRenderingMode(value *string)

func (*MarkdownSaveOptionsData) SetEncoding ¶

func (obj *MarkdownSaveOptionsData) SetEncoding(value *string)

func (*MarkdownSaveOptionsData) SetExportHeadersFootersMode ¶

func (obj *MarkdownSaveOptionsData) SetExportHeadersFootersMode(value *string)

func (*MarkdownSaveOptionsData) SetFileName ¶

func (obj *MarkdownSaveOptionsData) SetFileName(value *string)

func (*MarkdownSaveOptionsData) SetForcePageBreaks ¶

func (obj *MarkdownSaveOptionsData) SetForcePageBreaks(value *bool)

func (*MarkdownSaveOptionsData) SetImlRenderingMode ¶

func (obj *MarkdownSaveOptionsData) SetImlRenderingMode(value *string)

func (*MarkdownSaveOptionsData) SetParagraphBreak ¶

func (obj *MarkdownSaveOptionsData) SetParagraphBreak(value *string)

func (*MarkdownSaveOptionsData) SetSaveFormat ¶

func (obj *MarkdownSaveOptionsData) SetSaveFormat(value *string)

func (*MarkdownSaveOptionsData) SetTableContentAlignment ¶

func (obj *MarkdownSaveOptionsData) SetTableContentAlignment(value *string)

func (*MarkdownSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *MarkdownSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*MarkdownSaveOptionsData) SetUpdateFields ¶

func (obj *MarkdownSaveOptionsData) SetUpdateFields(value *bool)

func (*MarkdownSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *MarkdownSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*MarkdownSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *MarkdownSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*MarkdownSaveOptionsData) SetZipOutput ¶

func (obj *MarkdownSaveOptionsData) SetZipOutput(value *bool)

func (*MarkdownSaveOptionsData) Validate ¶

func (obj *MarkdownSaveOptionsData) Validate() error

type MetafileRenderingOptionsData ¶

type MetafileRenderingOptionsData struct {
	// Container class for options of metafile rendering.
	EmfPlusDualRenderingMode *string `json:"EmfPlusDualRenderingMode,omitempty"`

	// Container class for options of metafile rendering.
	EmulateRasterOperations *bool `json:"EmulateRasterOperations,omitempty"`

	// Container class for options of metafile rendering.
	EmulateRenderingToSizeOnPage *bool `json:"EmulateRenderingToSizeOnPage,omitempty"`

	// Container class for options of metafile rendering.
	EmulateRenderingToSizeOnPageResolution *int32 `json:"EmulateRenderingToSizeOnPageResolution,omitempty"`

	// Container class for options of metafile rendering.
	RenderingMode *string `json:"RenderingMode,omitempty"`

	// Container class for options of metafile rendering.
	UseEmfEmbeddedToWmf *bool `json:"UseEmfEmbeddedToWmf,omitempty"`
}

func (*MetafileRenderingOptionsData) CollectFilesContent ¶

func (obj *MetafileRenderingOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*MetafileRenderingOptionsData) Deserialize ¶

func (obj *MetafileRenderingOptionsData) Deserialize(json map[string]interface{})

func (*MetafileRenderingOptionsData) GetEmfPlusDualRenderingMode ¶

func (obj *MetafileRenderingOptionsData) GetEmfPlusDualRenderingMode() *string

func (*MetafileRenderingOptionsData) GetEmulateRasterOperations ¶

func (obj *MetafileRenderingOptionsData) GetEmulateRasterOperations() *bool

func (*MetafileRenderingOptionsData) GetEmulateRenderingToSizeOnPage ¶

func (obj *MetafileRenderingOptionsData) GetEmulateRenderingToSizeOnPage() *bool

func (*MetafileRenderingOptionsData) GetEmulateRenderingToSizeOnPageResolution ¶

func (obj *MetafileRenderingOptionsData) GetEmulateRenderingToSizeOnPageResolution() *int32

func (*MetafileRenderingOptionsData) GetRenderingMode ¶

func (obj *MetafileRenderingOptionsData) GetRenderingMode() *string

func (*MetafileRenderingOptionsData) GetUseEmfEmbeddedToWmf ¶

func (obj *MetafileRenderingOptionsData) GetUseEmfEmbeddedToWmf() *bool

func (*MetafileRenderingOptionsData) Initialize ¶

func (obj *MetafileRenderingOptionsData) Initialize()

func (MetafileRenderingOptionsData) IsMetafileRenderingOptionsData ¶

func (MetafileRenderingOptionsData) IsMetafileRenderingOptionsData() bool

func (*MetafileRenderingOptionsData) SetEmfPlusDualRenderingMode ¶

func (obj *MetafileRenderingOptionsData) SetEmfPlusDualRenderingMode(value *string)

func (*MetafileRenderingOptionsData) SetEmulateRasterOperations ¶

func (obj *MetafileRenderingOptionsData) SetEmulateRasterOperations(value *bool)

func (*MetafileRenderingOptionsData) SetEmulateRenderingToSizeOnPage ¶

func (obj *MetafileRenderingOptionsData) SetEmulateRenderingToSizeOnPage(value *bool)

func (*MetafileRenderingOptionsData) SetEmulateRenderingToSizeOnPageResolution ¶

func (obj *MetafileRenderingOptionsData) SetEmulateRenderingToSizeOnPageResolution(value *int32)

func (*MetafileRenderingOptionsData) SetRenderingMode ¶

func (obj *MetafileRenderingOptionsData) SetRenderingMode(value *string)

func (*MetafileRenderingOptionsData) SetUseEmfEmbeddedToWmf ¶

func (obj *MetafileRenderingOptionsData) SetUseEmfEmbeddedToWmf(value *bool)

func (*MetafileRenderingOptionsData) Validate ¶

func (obj *MetafileRenderingOptionsData) Validate() error

type MhtmlSaveOptionsData ¶

type MhtmlSaveOptionsData struct {
	// Container class for mhtml save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for mhtml save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for mhtml save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for mhtml save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for mhtml save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for mhtml save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for mhtml save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for mhtml save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for mhtml save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for mhtml save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for mhtml save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for mhtml save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for mhtml save options.
	AllowNegativeIndent *bool `json:"AllowNegativeIndent,omitempty"`

	// Container class for mhtml save options.
	CssClassNamePrefix *string `json:"CssClassNamePrefix,omitempty"`

	// Container class for mhtml save options.
	CssStyleSheetFileName *string `json:"CssStyleSheetFileName,omitempty"`

	// Container class for mhtml save options.
	CssStyleSheetType *string `json:"CssStyleSheetType,omitempty"`

	// Container class for mhtml save options.
	DocumentSplitCriteria *string `json:"DocumentSplitCriteria,omitempty"`

	// Container class for mhtml save options.
	DocumentSplitHeadingLevel *int32 `json:"DocumentSplitHeadingLevel,omitempty"`

	// Container class for mhtml save options.
	Encoding *string `json:"Encoding,omitempty"`

	// Container class for mhtml save options.
	ExportDocumentProperties *bool `json:"ExportDocumentProperties,omitempty"`

	// Container class for mhtml save options.
	ExportDropDownFormFieldAsText *bool `json:"ExportDropDownFormFieldAsText,omitempty"`

	// Container class for mhtml save options.
	ExportFontResources *bool `json:"ExportFontResources,omitempty"`

	// Container class for mhtml save options.
	ExportFontsAsBase64 *bool `json:"ExportFontsAsBase64,omitempty"`

	// Container class for mhtml save options.
	ExportHeadersFootersMode *string `json:"ExportHeadersFootersMode,omitempty"`

	// Container class for mhtml save options.
	ExportImagesAsBase64 *bool `json:"ExportImagesAsBase64,omitempty"`

	// Container class for mhtml save options.
	ExportLanguageInformation *bool `json:"ExportLanguageInformation,omitempty"`

	// Container class for mhtml save options.
	ExportListLabels *string `json:"ExportListLabels,omitempty"`

	// Container class for mhtml save options.
	ExportOriginalUrlForLinkedImages *bool `json:"ExportOriginalUrlForLinkedImages,omitempty"`

	// Container class for mhtml save options.
	ExportPageMargins *bool `json:"ExportPageMargins,omitempty"`

	// Container class for mhtml save options.
	ExportPageSetup *bool `json:"ExportPageSetup,omitempty"`

	// Container class for mhtml save options.
	ExportRelativeFontSize *bool `json:"ExportRelativeFontSize,omitempty"`

	// Container class for mhtml save options.
	ExportRoundtripInformation *bool `json:"ExportRoundtripInformation,omitempty"`

	// Container class for mhtml save options.
	ExportTextInputFormFieldAsText *bool `json:"ExportTextInputFormFieldAsText,omitempty"`

	// Container class for mhtml save options.
	ExportTocPageNumbers *bool `json:"ExportTocPageNumbers,omitempty"`

	// Container class for mhtml save options.
	ExportXhtmlTransitional *bool `json:"ExportXhtmlTransitional,omitempty"`

	// Container class for mhtml save options.
	FontResourcesSubsettingSizeThreshold *int32 `json:"FontResourcesSubsettingSizeThreshold,omitempty"`

	// Container class for mhtml save options.
	FontsFolder *string `json:"FontsFolder,omitempty"`

	// Container class for mhtml save options.
	FontsFolderAlias *string `json:"FontsFolderAlias,omitempty"`

	// Container class for mhtml save options.
	HtmlVersion *string `json:"HtmlVersion,omitempty"`

	// Container class for mhtml save options.
	ImageResolution *int32 `json:"ImageResolution,omitempty"`

	// Container class for mhtml save options.
	ImagesFolder *string `json:"ImagesFolder,omitempty"`

	// Container class for mhtml save options.
	ImagesFolderAlias *string `json:"ImagesFolderAlias,omitempty"`

	// Container class for mhtml save options.
	MetafileFormat *string `json:"MetafileFormat,omitempty"`

	// Container class for mhtml save options.
	OfficeMathOutputMode *string `json:"OfficeMathOutputMode,omitempty"`

	// Container class for mhtml save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for mhtml save options.
	ResolveFontNames *bool `json:"ResolveFontNames,omitempty"`

	// Container class for mhtml save options.
	ResourceFolder *string `json:"ResourceFolder,omitempty"`

	// Container class for mhtml save options.
	ResourceFolderAlias *string `json:"ResourceFolderAlias,omitempty"`

	// Container class for mhtml save options.
	ScaleImageToShapeSize *bool `json:"ScaleImageToShapeSize,omitempty"`

	// Container class for mhtml save options.
	TableWidthOutputMode *string `json:"TableWidthOutputMode,omitempty"`

	// Container class for mhtml save options.
	ExportCidUrlsForMhtmlResources *bool `json:"ExportCidUrlsForMhtmlResources,omitempty"`

	// Container class for mhtml save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*MhtmlSaveOptionsData) CollectFilesContent ¶

func (obj *MhtmlSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*MhtmlSaveOptionsData) Deserialize ¶

func (obj *MhtmlSaveOptionsData) Deserialize(json map[string]interface{})

func (*MhtmlSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *MhtmlSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*MhtmlSaveOptionsData) GetAllowNegativeIndent ¶

func (obj *MhtmlSaveOptionsData) GetAllowNegativeIndent() *bool

func (*MhtmlSaveOptionsData) GetCssClassNamePrefix ¶

func (obj *MhtmlSaveOptionsData) GetCssClassNamePrefix() *string

func (*MhtmlSaveOptionsData) GetCssStyleSheetFileName ¶

func (obj *MhtmlSaveOptionsData) GetCssStyleSheetFileName() *string

func (*MhtmlSaveOptionsData) GetCssStyleSheetType ¶

func (obj *MhtmlSaveOptionsData) GetCssStyleSheetType() *string

func (*MhtmlSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *MhtmlSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*MhtmlSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *MhtmlSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*MhtmlSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *MhtmlSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*MhtmlSaveOptionsData) GetDmlRenderingMode ¶

func (obj *MhtmlSaveOptionsData) GetDmlRenderingMode() *string

func (*MhtmlSaveOptionsData) GetDocumentSplitCriteria ¶

func (obj *MhtmlSaveOptionsData) GetDocumentSplitCriteria() *string

func (*MhtmlSaveOptionsData) GetDocumentSplitHeadingLevel ¶

func (obj *MhtmlSaveOptionsData) GetDocumentSplitHeadingLevel() *int32

func (*MhtmlSaveOptionsData) GetEncoding ¶

func (obj *MhtmlSaveOptionsData) GetEncoding() *string

func (*MhtmlSaveOptionsData) GetExportCidUrlsForMhtmlResources ¶

func (obj *MhtmlSaveOptionsData) GetExportCidUrlsForMhtmlResources() *bool

func (*MhtmlSaveOptionsData) GetExportDocumentProperties ¶

func (obj *MhtmlSaveOptionsData) GetExportDocumentProperties() *bool

func (*MhtmlSaveOptionsData) GetExportDropDownFormFieldAsText ¶

func (obj *MhtmlSaveOptionsData) GetExportDropDownFormFieldAsText() *bool

func (*MhtmlSaveOptionsData) GetExportFontResources ¶

func (obj *MhtmlSaveOptionsData) GetExportFontResources() *bool

func (*MhtmlSaveOptionsData) GetExportFontsAsBase64 ¶

func (obj *MhtmlSaveOptionsData) GetExportFontsAsBase64() *bool

func (*MhtmlSaveOptionsData) GetExportHeadersFootersMode ¶

func (obj *MhtmlSaveOptionsData) GetExportHeadersFootersMode() *string

func (*MhtmlSaveOptionsData) GetExportImagesAsBase64 ¶

func (obj *MhtmlSaveOptionsData) GetExportImagesAsBase64() *bool

func (*MhtmlSaveOptionsData) GetExportLanguageInformation ¶

func (obj *MhtmlSaveOptionsData) GetExportLanguageInformation() *bool

func (*MhtmlSaveOptionsData) GetExportListLabels ¶

func (obj *MhtmlSaveOptionsData) GetExportListLabels() *string

func (*MhtmlSaveOptionsData) GetExportOriginalUrlForLinkedImages ¶

func (obj *MhtmlSaveOptionsData) GetExportOriginalUrlForLinkedImages() *bool

func (*MhtmlSaveOptionsData) GetExportPageMargins ¶

func (obj *MhtmlSaveOptionsData) GetExportPageMargins() *bool

func (*MhtmlSaveOptionsData) GetExportPageSetup ¶

func (obj *MhtmlSaveOptionsData) GetExportPageSetup() *bool

func (*MhtmlSaveOptionsData) GetExportRelativeFontSize ¶

func (obj *MhtmlSaveOptionsData) GetExportRelativeFontSize() *bool

func (*MhtmlSaveOptionsData) GetExportRoundtripInformation ¶

func (obj *MhtmlSaveOptionsData) GetExportRoundtripInformation() *bool

func (*MhtmlSaveOptionsData) GetExportTextInputFormFieldAsText ¶

func (obj *MhtmlSaveOptionsData) GetExportTextInputFormFieldAsText() *bool

func (*MhtmlSaveOptionsData) GetExportTocPageNumbers ¶

func (obj *MhtmlSaveOptionsData) GetExportTocPageNumbers() *bool

func (*MhtmlSaveOptionsData) GetExportXhtmlTransitional ¶

func (obj *MhtmlSaveOptionsData) GetExportXhtmlTransitional() *bool

func (*MhtmlSaveOptionsData) GetFileName ¶

func (obj *MhtmlSaveOptionsData) GetFileName() *string

func (*MhtmlSaveOptionsData) GetFontResourcesSubsettingSizeThreshold ¶

func (obj *MhtmlSaveOptionsData) GetFontResourcesSubsettingSizeThreshold() *int32

func (*MhtmlSaveOptionsData) GetFontsFolder ¶

func (obj *MhtmlSaveOptionsData) GetFontsFolder() *string

func (*MhtmlSaveOptionsData) GetFontsFolderAlias ¶

func (obj *MhtmlSaveOptionsData) GetFontsFolderAlias() *string

func (*MhtmlSaveOptionsData) GetHtmlVersion ¶

func (obj *MhtmlSaveOptionsData) GetHtmlVersion() *string

func (*MhtmlSaveOptionsData) GetImageResolution ¶

func (obj *MhtmlSaveOptionsData) GetImageResolution() *int32

func (*MhtmlSaveOptionsData) GetImagesFolder ¶

func (obj *MhtmlSaveOptionsData) GetImagesFolder() *string

func (*MhtmlSaveOptionsData) GetImagesFolderAlias ¶

func (obj *MhtmlSaveOptionsData) GetImagesFolderAlias() *string

func (*MhtmlSaveOptionsData) GetImlRenderingMode ¶

func (obj *MhtmlSaveOptionsData) GetImlRenderingMode() *string

func (*MhtmlSaveOptionsData) GetMetafileFormat ¶

func (obj *MhtmlSaveOptionsData) GetMetafileFormat() *string

func (*MhtmlSaveOptionsData) GetOfficeMathOutputMode ¶

func (obj *MhtmlSaveOptionsData) GetOfficeMathOutputMode() *string

func (*MhtmlSaveOptionsData) GetPrettyFormat ¶

func (obj *MhtmlSaveOptionsData) GetPrettyFormat() *bool

func (*MhtmlSaveOptionsData) GetResolveFontNames ¶

func (obj *MhtmlSaveOptionsData) GetResolveFontNames() *bool

func (*MhtmlSaveOptionsData) GetResourceFolder ¶

func (obj *MhtmlSaveOptionsData) GetResourceFolder() *string

func (*MhtmlSaveOptionsData) GetResourceFolderAlias ¶

func (obj *MhtmlSaveOptionsData) GetResourceFolderAlias() *string

func (*MhtmlSaveOptionsData) GetSaveFormat ¶

func (obj *MhtmlSaveOptionsData) GetSaveFormat() *string

func (*MhtmlSaveOptionsData) GetScaleImageToShapeSize ¶

func (obj *MhtmlSaveOptionsData) GetScaleImageToShapeSize() *bool

func (*MhtmlSaveOptionsData) GetTableWidthOutputMode ¶

func (obj *MhtmlSaveOptionsData) GetTableWidthOutputMode() *string

func (*MhtmlSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *MhtmlSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*MhtmlSaveOptionsData) GetUpdateFields ¶

func (obj *MhtmlSaveOptionsData) GetUpdateFields() *bool

func (*MhtmlSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *MhtmlSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*MhtmlSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *MhtmlSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*MhtmlSaveOptionsData) GetZipOutput ¶

func (obj *MhtmlSaveOptionsData) GetZipOutput() *bool

func (*MhtmlSaveOptionsData) Initialize ¶

func (obj *MhtmlSaveOptionsData) Initialize()

func (MhtmlSaveOptionsData) IsHtmlSaveOptionsData ¶

func (MhtmlSaveOptionsData) IsHtmlSaveOptionsData() bool

func (MhtmlSaveOptionsData) IsMhtmlSaveOptionsData ¶

func (MhtmlSaveOptionsData) IsMhtmlSaveOptionsData() bool

func (MhtmlSaveOptionsData) IsSaveOptionsData ¶

func (MhtmlSaveOptionsData) IsSaveOptionsData() bool

func (*MhtmlSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *MhtmlSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*MhtmlSaveOptionsData) SetAllowNegativeIndent ¶

func (obj *MhtmlSaveOptionsData) SetAllowNegativeIndent(value *bool)

func (*MhtmlSaveOptionsData) SetCssClassNamePrefix ¶

func (obj *MhtmlSaveOptionsData) SetCssClassNamePrefix(value *string)

func (*MhtmlSaveOptionsData) SetCssStyleSheetFileName ¶

func (obj *MhtmlSaveOptionsData) SetCssStyleSheetFileName(value *string)

func (*MhtmlSaveOptionsData) SetCssStyleSheetType ¶

func (obj *MhtmlSaveOptionsData) SetCssStyleSheetType(value *string)

func (*MhtmlSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *MhtmlSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*MhtmlSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *MhtmlSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*MhtmlSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *MhtmlSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*MhtmlSaveOptionsData) SetDmlRenderingMode ¶

func (obj *MhtmlSaveOptionsData) SetDmlRenderingMode(value *string)

func (*MhtmlSaveOptionsData) SetDocumentSplitCriteria ¶

func (obj *MhtmlSaveOptionsData) SetDocumentSplitCriteria(value *string)

func (*MhtmlSaveOptionsData) SetDocumentSplitHeadingLevel ¶

func (obj *MhtmlSaveOptionsData) SetDocumentSplitHeadingLevel(value *int32)

func (*MhtmlSaveOptionsData) SetEncoding ¶

func (obj *MhtmlSaveOptionsData) SetEncoding(value *string)

func (*MhtmlSaveOptionsData) SetExportCidUrlsForMhtmlResources ¶

func (obj *MhtmlSaveOptionsData) SetExportCidUrlsForMhtmlResources(value *bool)

func (*MhtmlSaveOptionsData) SetExportDocumentProperties ¶

func (obj *MhtmlSaveOptionsData) SetExportDocumentProperties(value *bool)

func (*MhtmlSaveOptionsData) SetExportDropDownFormFieldAsText ¶

func (obj *MhtmlSaveOptionsData) SetExportDropDownFormFieldAsText(value *bool)

func (*MhtmlSaveOptionsData) SetExportFontResources ¶

func (obj *MhtmlSaveOptionsData) SetExportFontResources(value *bool)

func (*MhtmlSaveOptionsData) SetExportFontsAsBase64 ¶

func (obj *MhtmlSaveOptionsData) SetExportFontsAsBase64(value *bool)

func (*MhtmlSaveOptionsData) SetExportHeadersFootersMode ¶

func (obj *MhtmlSaveOptionsData) SetExportHeadersFootersMode(value *string)

func (*MhtmlSaveOptionsData) SetExportImagesAsBase64 ¶

func (obj *MhtmlSaveOptionsData) SetExportImagesAsBase64(value *bool)

func (*MhtmlSaveOptionsData) SetExportLanguageInformation ¶

func (obj *MhtmlSaveOptionsData) SetExportLanguageInformation(value *bool)

func (*MhtmlSaveOptionsData) SetExportListLabels ¶

func (obj *MhtmlSaveOptionsData) SetExportListLabels(value *string)

func (*MhtmlSaveOptionsData) SetExportOriginalUrlForLinkedImages ¶

func (obj *MhtmlSaveOptionsData) SetExportOriginalUrlForLinkedImages(value *bool)

func (*MhtmlSaveOptionsData) SetExportPageMargins ¶

func (obj *MhtmlSaveOptionsData) SetExportPageMargins(value *bool)

func (*MhtmlSaveOptionsData) SetExportPageSetup ¶

func (obj *MhtmlSaveOptionsData) SetExportPageSetup(value *bool)

func (*MhtmlSaveOptionsData) SetExportRelativeFontSize ¶

func (obj *MhtmlSaveOptionsData) SetExportRelativeFontSize(value *bool)

func (*MhtmlSaveOptionsData) SetExportRoundtripInformation ¶

func (obj *MhtmlSaveOptionsData) SetExportRoundtripInformation(value *bool)

func (*MhtmlSaveOptionsData) SetExportTextInputFormFieldAsText ¶

func (obj *MhtmlSaveOptionsData) SetExportTextInputFormFieldAsText(value *bool)

func (*MhtmlSaveOptionsData) SetExportTocPageNumbers ¶

func (obj *MhtmlSaveOptionsData) SetExportTocPageNumbers(value *bool)

func (*MhtmlSaveOptionsData) SetExportXhtmlTransitional ¶

func (obj *MhtmlSaveOptionsData) SetExportXhtmlTransitional(value *bool)

func (*MhtmlSaveOptionsData) SetFileName ¶

func (obj *MhtmlSaveOptionsData) SetFileName(value *string)

func (*MhtmlSaveOptionsData) SetFontResourcesSubsettingSizeThreshold ¶

func (obj *MhtmlSaveOptionsData) SetFontResourcesSubsettingSizeThreshold(value *int32)

func (*MhtmlSaveOptionsData) SetFontsFolder ¶

func (obj *MhtmlSaveOptionsData) SetFontsFolder(value *string)

func (*MhtmlSaveOptionsData) SetFontsFolderAlias ¶

func (obj *MhtmlSaveOptionsData) SetFontsFolderAlias(value *string)

func (*MhtmlSaveOptionsData) SetHtmlVersion ¶

func (obj *MhtmlSaveOptionsData) SetHtmlVersion(value *string)

func (*MhtmlSaveOptionsData) SetImageResolution ¶

func (obj *MhtmlSaveOptionsData) SetImageResolution(value *int32)

func (*MhtmlSaveOptionsData) SetImagesFolder ¶

func (obj *MhtmlSaveOptionsData) SetImagesFolder(value *string)

func (*MhtmlSaveOptionsData) SetImagesFolderAlias ¶

func (obj *MhtmlSaveOptionsData) SetImagesFolderAlias(value *string)

func (*MhtmlSaveOptionsData) SetImlRenderingMode ¶

func (obj *MhtmlSaveOptionsData) SetImlRenderingMode(value *string)

func (*MhtmlSaveOptionsData) SetMetafileFormat ¶

func (obj *MhtmlSaveOptionsData) SetMetafileFormat(value *string)

func (*MhtmlSaveOptionsData) SetOfficeMathOutputMode ¶

func (obj *MhtmlSaveOptionsData) SetOfficeMathOutputMode(value *string)

func (*MhtmlSaveOptionsData) SetPrettyFormat ¶

func (obj *MhtmlSaveOptionsData) SetPrettyFormat(value *bool)

func (*MhtmlSaveOptionsData) SetResolveFontNames ¶

func (obj *MhtmlSaveOptionsData) SetResolveFontNames(value *bool)

func (*MhtmlSaveOptionsData) SetResourceFolder ¶

func (obj *MhtmlSaveOptionsData) SetResourceFolder(value *string)

func (*MhtmlSaveOptionsData) SetResourceFolderAlias ¶

func (obj *MhtmlSaveOptionsData) SetResourceFolderAlias(value *string)

func (*MhtmlSaveOptionsData) SetSaveFormat ¶

func (obj *MhtmlSaveOptionsData) SetSaveFormat(value *string)

func (*MhtmlSaveOptionsData) SetScaleImageToShapeSize ¶

func (obj *MhtmlSaveOptionsData) SetScaleImageToShapeSize(value *bool)

func (*MhtmlSaveOptionsData) SetTableWidthOutputMode ¶

func (obj *MhtmlSaveOptionsData) SetTableWidthOutputMode(value *string)

func (*MhtmlSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *MhtmlSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*MhtmlSaveOptionsData) SetUpdateFields ¶

func (obj *MhtmlSaveOptionsData) SetUpdateFields(value *bool)

func (*MhtmlSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *MhtmlSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*MhtmlSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *MhtmlSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*MhtmlSaveOptionsData) SetZipOutput ¶

func (obj *MhtmlSaveOptionsData) SetZipOutput(value *bool)

func (*MhtmlSaveOptionsData) Validate ¶

func (obj *MhtmlSaveOptionsData) Validate() error

type ModificationOperationResult ¶

type ModificationOperationResult struct {
	// result of the operation which modifies the original document and saves the result.
	Dest IFileLink `json:"Dest,omitempty"`

	// result of the operation which modifies the original document and saves the result.
	Source IFileLink `json:"Source,omitempty"`
}

func (*ModificationOperationResult) CollectFilesContent ¶

func (obj *ModificationOperationResult) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ModificationOperationResult) Deserialize ¶

func (obj *ModificationOperationResult) Deserialize(json map[string]interface{})

func (*ModificationOperationResult) GetDest ¶

func (obj *ModificationOperationResult) GetDest() IFileLink

func (*ModificationOperationResult) GetSource ¶

func (obj *ModificationOperationResult) GetSource() IFileLink

func (*ModificationOperationResult) Initialize ¶

func (obj *ModificationOperationResult) Initialize()

func (ModificationOperationResult) IsModificationOperationResult ¶

func (ModificationOperationResult) IsModificationOperationResult() bool

func (*ModificationOperationResult) SetDest ¶

func (obj *ModificationOperationResult) SetDest(value IFileLink)

func (*ModificationOperationResult) SetSource ¶

func (obj *ModificationOperationResult) SetSource(value IFileLink)

func (*ModificationOperationResult) Validate ¶

func (obj *ModificationOperationResult) Validate() error

type MoveFileRequest ¶

type MoveFileRequest struct {
	// Destination file path e.g. '/dest.ext'.
	DestPath *string
	// Source file's path e.g. '/Folder 1/file.ext' or '/Bucket/Folder 1/file.ext'.
	SrcPath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "srcStorageName" value: (*string) Source storage name.
	   key: "destStorageName" value: (*string) Destination storage name.
	   key: "versionId" value: (*string) File version ID to move. */
	Optionals map[string]interface{}
}

MoveFileRequest contains request data for WordsApiService.MoveFile method.

func (*MoveFileRequest) CreateRequestData ¶

func (data *MoveFileRequest) CreateRequestData() (RequestData, error)

func (*MoveFileRequest) CreateResponse ¶

func (data *MoveFileRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type MoveFolderRequest ¶

type MoveFolderRequest struct {
	// Destination folder path to move to e.g '/dst'.
	DestPath *string
	// Source folder path e.g. /Folder1.
	SrcPath *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "srcStorageName" value: (*string) Source storage name.
	   key: "destStorageName" value: (*string) Destination storage name. */
	Optionals map[string]interface{}
}

MoveFolderRequest contains request data for WordsApiService.MoveFolder method.

func (*MoveFolderRequest) CreateRequestData ¶

func (data *MoveFolderRequest) CreateRequestData() (RequestData, error)

func (*MoveFolderRequest) CreateResponse ¶

func (data *MoveFolderRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)
type NodeLink struct {
	// Reference to node.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Reference to node.
	NodeId *string `json:"NodeId,omitempty"`
}

func (*NodeLink) CollectFilesContent ¶

func (obj *NodeLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*NodeLink) Deserialize ¶

func (obj *NodeLink) Deserialize(json map[string]interface{})
func (obj *NodeLink) GetLink() IWordsApiLink

func (*NodeLink) GetNodeId ¶

func (obj *NodeLink) GetNodeId() *string

func (*NodeLink) Initialize ¶

func (obj *NodeLink) Initialize()

func (NodeLink) IsLinkElement ¶

func (NodeLink) IsLinkElement() bool
func (NodeLink) IsNodeLink() bool
func (obj *NodeLink) SetLink(value IWordsApiLink)

func (*NodeLink) SetNodeId ¶

func (obj *NodeLink) SetNodeId(value *string)

func (*NodeLink) Validate ¶

func (obj *NodeLink) Validate() error

type OdtSaveOptionsData ¶

type OdtSaveOptionsData struct {
	// Container class for odt/ott save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for odt/ott save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for odt/ott save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for odt/ott save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for odt/ott save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for odt/ott save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for odt/ott save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for odt/ott save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for odt/ott save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for odt/ott save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for odt/ott save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for odt/ott save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for odt/ott save options.
	IsStrictSchema11 *bool `json:"IsStrictSchema11,omitempty"`

	// Container class for odt/ott save options.
	MeasureUnit *string `json:"MeasureUnit,omitempty"`

	// Container class for odt/ott save options.
	Password *string `json:"Password,omitempty"`

	// Container class for odt/ott save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for odt/ott save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*OdtSaveOptionsData) CollectFilesContent ¶

func (obj *OdtSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*OdtSaveOptionsData) Deserialize ¶

func (obj *OdtSaveOptionsData) Deserialize(json map[string]interface{})

func (*OdtSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *OdtSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*OdtSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *OdtSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*OdtSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *OdtSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*OdtSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *OdtSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*OdtSaveOptionsData) GetDmlRenderingMode ¶

func (obj *OdtSaveOptionsData) GetDmlRenderingMode() *string

func (*OdtSaveOptionsData) GetFileName ¶

func (obj *OdtSaveOptionsData) GetFileName() *string

func (*OdtSaveOptionsData) GetImlRenderingMode ¶

func (obj *OdtSaveOptionsData) GetImlRenderingMode() *string

func (*OdtSaveOptionsData) GetIsStrictSchema11 ¶

func (obj *OdtSaveOptionsData) GetIsStrictSchema11() *bool

func (*OdtSaveOptionsData) GetMeasureUnit ¶

func (obj *OdtSaveOptionsData) GetMeasureUnit() *string

func (*OdtSaveOptionsData) GetPassword ¶

func (obj *OdtSaveOptionsData) GetPassword() *string

func (*OdtSaveOptionsData) GetPrettyFormat ¶

func (obj *OdtSaveOptionsData) GetPrettyFormat() *bool

func (*OdtSaveOptionsData) GetSaveFormat ¶

func (obj *OdtSaveOptionsData) GetSaveFormat() *string

func (*OdtSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *OdtSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*OdtSaveOptionsData) GetUpdateFields ¶

func (obj *OdtSaveOptionsData) GetUpdateFields() *bool

func (*OdtSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *OdtSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*OdtSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *OdtSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*OdtSaveOptionsData) GetZipOutput ¶

func (obj *OdtSaveOptionsData) GetZipOutput() *bool

func (*OdtSaveOptionsData) Initialize ¶

func (obj *OdtSaveOptionsData) Initialize()

func (OdtSaveOptionsData) IsOdtSaveOptionsData ¶

func (OdtSaveOptionsData) IsOdtSaveOptionsData() bool

func (OdtSaveOptionsData) IsSaveOptionsData ¶

func (OdtSaveOptionsData) IsSaveOptionsData() bool

func (*OdtSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *OdtSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*OdtSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *OdtSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*OdtSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *OdtSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*OdtSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *OdtSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*OdtSaveOptionsData) SetDmlRenderingMode ¶

func (obj *OdtSaveOptionsData) SetDmlRenderingMode(value *string)

func (*OdtSaveOptionsData) SetFileName ¶

func (obj *OdtSaveOptionsData) SetFileName(value *string)

func (*OdtSaveOptionsData) SetImlRenderingMode ¶

func (obj *OdtSaveOptionsData) SetImlRenderingMode(value *string)

func (*OdtSaveOptionsData) SetIsStrictSchema11 ¶

func (obj *OdtSaveOptionsData) SetIsStrictSchema11(value *bool)

func (*OdtSaveOptionsData) SetMeasureUnit ¶

func (obj *OdtSaveOptionsData) SetMeasureUnit(value *string)

func (*OdtSaveOptionsData) SetPassword ¶

func (obj *OdtSaveOptionsData) SetPassword(value *string)

func (*OdtSaveOptionsData) SetPrettyFormat ¶

func (obj *OdtSaveOptionsData) SetPrettyFormat(value *bool)

func (*OdtSaveOptionsData) SetSaveFormat ¶

func (obj *OdtSaveOptionsData) SetSaveFormat(value *string)

func (*OdtSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *OdtSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*OdtSaveOptionsData) SetUpdateFields ¶

func (obj *OdtSaveOptionsData) SetUpdateFields(value *bool)

func (*OdtSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *OdtSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*OdtSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *OdtSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*OdtSaveOptionsData) SetZipOutput ¶

func (obj *OdtSaveOptionsData) SetZipOutput(value *bool)

func (*OdtSaveOptionsData) Validate ¶

func (obj *OdtSaveOptionsData) Validate() error
type OfficeMathLink struct {
	// OfficeMath object link element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// OfficeMath object link element.
	NodeId *string `json:"NodeId,omitempty"`
}

func (*OfficeMathLink) CollectFilesContent ¶

func (obj *OfficeMathLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*OfficeMathLink) Deserialize ¶

func (obj *OfficeMathLink) Deserialize(json map[string]interface{})
func (obj *OfficeMathLink) GetLink() IWordsApiLink

func (*OfficeMathLink) GetNodeId ¶

func (obj *OfficeMathLink) GetNodeId() *string

func (*OfficeMathLink) Initialize ¶

func (obj *OfficeMathLink) Initialize()

func (OfficeMathLink) IsLinkElement ¶

func (OfficeMathLink) IsLinkElement() bool
func (OfficeMathLink) IsNodeLink() bool
func (OfficeMathLink) IsOfficeMathLink() bool
func (obj *OfficeMathLink) SetLink(value IWordsApiLink)

func (*OfficeMathLink) SetNodeId ¶

func (obj *OfficeMathLink) SetNodeId(value *string)

func (*OfficeMathLink) Validate ¶

func (obj *OfficeMathLink) Validate() error

type OfficeMathObject ¶

type OfficeMathObject struct {
	// DTO container with an OfficeMath object.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with an OfficeMath object.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with an OfficeMath object.
	Content IStoryChildNodes `json:"Content,omitempty"`

	// DTO container with an OfficeMath object.
	DisplayType *string `json:"DisplayType,omitempty"`

	// DTO container with an OfficeMath object.
	Justification *string `json:"Justification,omitempty"`

	// DTO container with an OfficeMath object.
	MathObjectType *string `json:"MathObjectType,omitempty"`
}

func (*OfficeMathObject) CollectFilesContent ¶

func (obj *OfficeMathObject) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*OfficeMathObject) Deserialize ¶

func (obj *OfficeMathObject) Deserialize(json map[string]interface{})

func (*OfficeMathObject) GetContent ¶

func (obj *OfficeMathObject) GetContent() IStoryChildNodes

func (*OfficeMathObject) GetDisplayType ¶

func (obj *OfficeMathObject) GetDisplayType() *string

func (*OfficeMathObject) GetJustification ¶

func (obj *OfficeMathObject) GetJustification() *string
func (obj *OfficeMathObject) GetLink() IWordsApiLink

func (*OfficeMathObject) GetMathObjectType ¶

func (obj *OfficeMathObject) GetMathObjectType() *string

func (*OfficeMathObject) GetNodeId ¶

func (obj *OfficeMathObject) GetNodeId() *string

func (*OfficeMathObject) Initialize ¶

func (obj *OfficeMathObject) Initialize()

func (OfficeMathObject) IsLinkElement ¶

func (OfficeMathObject) IsLinkElement() bool
func (OfficeMathObject) IsNodeLink() bool
func (OfficeMathObject) IsOfficeMathLink() bool

func (OfficeMathObject) IsOfficeMathObject ¶

func (OfficeMathObject) IsOfficeMathObject() bool

func (*OfficeMathObject) SetContent ¶

func (obj *OfficeMathObject) SetContent(value IStoryChildNodes)

func (*OfficeMathObject) SetDisplayType ¶

func (obj *OfficeMathObject) SetDisplayType(value *string)

func (*OfficeMathObject) SetJustification ¶

func (obj *OfficeMathObject) SetJustification(value *string)
func (obj *OfficeMathObject) SetLink(value IWordsApiLink)

func (*OfficeMathObject) SetMathObjectType ¶

func (obj *OfficeMathObject) SetMathObjectType(value *string)

func (*OfficeMathObject) SetNodeId ¶

func (obj *OfficeMathObject) SetNodeId(value *string)

func (*OfficeMathObject) Validate ¶

func (obj *OfficeMathObject) Validate() error

type OfficeMathObjectResponse ¶

type OfficeMathObjectResponse struct {
	// The REST response with a OfficeMath object.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/officeMathObjects/0" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a OfficeMath object.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/officeMathObjects/0" REST API requests.
	OfficeMathObject IOfficeMathObject `json:"OfficeMathObject,omitempty"`
}

func (*OfficeMathObjectResponse) CollectFilesContent ¶

func (obj *OfficeMathObjectResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*OfficeMathObjectResponse) Deserialize ¶

func (obj *OfficeMathObjectResponse) Deserialize(json map[string]interface{})

func (*OfficeMathObjectResponse) GetOfficeMathObject ¶

func (obj *OfficeMathObjectResponse) GetOfficeMathObject() IOfficeMathObject

func (*OfficeMathObjectResponse) GetRequestId ¶

func (obj *OfficeMathObjectResponse) GetRequestId() *string

func (*OfficeMathObjectResponse) Initialize ¶

func (obj *OfficeMathObjectResponse) Initialize()

func (OfficeMathObjectResponse) IsOfficeMathObjectResponse ¶

func (OfficeMathObjectResponse) IsOfficeMathObjectResponse() bool

func (OfficeMathObjectResponse) IsWordsResponse ¶

func (OfficeMathObjectResponse) IsWordsResponse() bool

func (*OfficeMathObjectResponse) SetOfficeMathObject ¶

func (obj *OfficeMathObjectResponse) SetOfficeMathObject(value IOfficeMathObject)

func (*OfficeMathObjectResponse) SetRequestId ¶

func (obj *OfficeMathObjectResponse) SetRequestId(value *string)

func (*OfficeMathObjectResponse) Validate ¶

func (obj *OfficeMathObjectResponse) Validate() error

type OfficeMathObjectsCollection ¶

type OfficeMathObjectsCollection struct {
	// DTO container with a collection of OfficeMath objects.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a collection of OfficeMath objects.
	List []IOfficeMathObject `json:"List,omitempty"`
}

func (*OfficeMathObjectsCollection) CollectFilesContent ¶

func (obj *OfficeMathObjectsCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*OfficeMathObjectsCollection) Deserialize ¶

func (obj *OfficeMathObjectsCollection) Deserialize(json map[string]interface{})

func (*OfficeMathObjectsCollection) GetList ¶

func (*OfficeMathObjectsCollection) Initialize ¶

func (obj *OfficeMathObjectsCollection) Initialize()

func (OfficeMathObjectsCollection) IsLinkElement ¶

func (OfficeMathObjectsCollection) IsLinkElement() bool

func (OfficeMathObjectsCollection) IsOfficeMathObjectsCollection ¶

func (OfficeMathObjectsCollection) IsOfficeMathObjectsCollection() bool
func (obj *OfficeMathObjectsCollection) SetLink(value IWordsApiLink)

func (*OfficeMathObjectsCollection) SetList ¶

func (obj *OfficeMathObjectsCollection) SetList(value []IOfficeMathObject)

func (*OfficeMathObjectsCollection) Validate ¶

func (obj *OfficeMathObjectsCollection) Validate() error

type OfficeMathObjectsResponse ¶

type OfficeMathObjectsResponse struct {
	// The REST response with a collection of OfficeMath objects.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/OfficeMathObjects" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of OfficeMath objects.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/OfficeMathObjects" REST API requests.
	OfficeMathObjects IOfficeMathObjectsCollection `json:"OfficeMathObjects,omitempty"`
}

func (*OfficeMathObjectsResponse) CollectFilesContent ¶

func (obj *OfficeMathObjectsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*OfficeMathObjectsResponse) Deserialize ¶

func (obj *OfficeMathObjectsResponse) Deserialize(json map[string]interface{})

func (*OfficeMathObjectsResponse) GetOfficeMathObjects ¶

func (obj *OfficeMathObjectsResponse) GetOfficeMathObjects() IOfficeMathObjectsCollection

func (*OfficeMathObjectsResponse) GetRequestId ¶

func (obj *OfficeMathObjectsResponse) GetRequestId() *string

func (*OfficeMathObjectsResponse) Initialize ¶

func (obj *OfficeMathObjectsResponse) Initialize()

func (OfficeMathObjectsResponse) IsOfficeMathObjectsResponse ¶

func (OfficeMathObjectsResponse) IsOfficeMathObjectsResponse() bool

func (OfficeMathObjectsResponse) IsWordsResponse ¶

func (OfficeMathObjectsResponse) IsWordsResponse() bool

func (*OfficeMathObjectsResponse) SetOfficeMathObjects ¶

func (obj *OfficeMathObjectsResponse) SetOfficeMathObjects(value IOfficeMathObjectsCollection)

func (*OfficeMathObjectsResponse) SetRequestId ¶

func (obj *OfficeMathObjectsResponse) SetRequestId(value *string)

func (*OfficeMathObjectsResponse) Validate ¶

func (obj *OfficeMathObjectsResponse) Validate() error

type OpenXpsSaveOptionsData ¶

type OpenXpsSaveOptionsData struct {
	// Container class for xps save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for xps save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for xps save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for xps save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for xps save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for xps save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for xps save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for xps save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for xps save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for xps save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for xps save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for xps save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for xps save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for xps save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for xps save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for xps save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for xps save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for xps save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for xps save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for xps save options.
	BookmarksOutlineLevel *int32 `json:"BookmarksOutlineLevel,omitempty"`

	// Container class for xps save options.
	HeadingsOutlineLevels *int32 `json:"HeadingsOutlineLevels,omitempty"`

	// Container class for xps save options.
	OutlineOptions IOutlineOptionsData `json:"OutlineOptions,omitempty"`

	// Container class for xps save options.
	UseBookFoldPrintingSettings *bool `json:"UseBookFoldPrintingSettings,omitempty"`

	// Container class for xps save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*OpenXpsSaveOptionsData) CollectFilesContent ¶

func (obj *OpenXpsSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*OpenXpsSaveOptionsData) Deserialize ¶

func (obj *OpenXpsSaveOptionsData) Deserialize(json map[string]interface{})

func (*OpenXpsSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *OpenXpsSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*OpenXpsSaveOptionsData) GetBookmarksOutlineLevel ¶

func (obj *OpenXpsSaveOptionsData) GetBookmarksOutlineLevel() *int32

func (*OpenXpsSaveOptionsData) GetColorMode ¶

func (obj *OpenXpsSaveOptionsData) GetColorMode() *string

func (*OpenXpsSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *OpenXpsSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*OpenXpsSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *OpenXpsSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*OpenXpsSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *OpenXpsSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*OpenXpsSaveOptionsData) GetDmlRenderingMode ¶

func (obj *OpenXpsSaveOptionsData) GetDmlRenderingMode() *string

func (*OpenXpsSaveOptionsData) GetFileName ¶

func (obj *OpenXpsSaveOptionsData) GetFileName() *string

func (*OpenXpsSaveOptionsData) GetHeadingsOutlineLevels ¶

func (obj *OpenXpsSaveOptionsData) GetHeadingsOutlineLevels() *int32

func (*OpenXpsSaveOptionsData) GetImlRenderingMode ¶

func (obj *OpenXpsSaveOptionsData) GetImlRenderingMode() *string

func (*OpenXpsSaveOptionsData) GetJpegQuality ¶

func (obj *OpenXpsSaveOptionsData) GetJpegQuality() *int32

func (*OpenXpsSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *OpenXpsSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*OpenXpsSaveOptionsData) GetNumeralFormat ¶

func (obj *OpenXpsSaveOptionsData) GetNumeralFormat() *string

func (*OpenXpsSaveOptionsData) GetOptimizeOutput ¶

func (obj *OpenXpsSaveOptionsData) GetOptimizeOutput() *bool

func (*OpenXpsSaveOptionsData) GetOutlineOptions ¶

func (obj *OpenXpsSaveOptionsData) GetOutlineOptions() IOutlineOptionsData

func (*OpenXpsSaveOptionsData) GetPageCount ¶

func (obj *OpenXpsSaveOptionsData) GetPageCount() *int32

func (*OpenXpsSaveOptionsData) GetPageIndex ¶

func (obj *OpenXpsSaveOptionsData) GetPageIndex() *int32

func (*OpenXpsSaveOptionsData) GetSaveFormat ¶

func (obj *OpenXpsSaveOptionsData) GetSaveFormat() *string

func (*OpenXpsSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *OpenXpsSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*OpenXpsSaveOptionsData) GetUpdateFields ¶

func (obj *OpenXpsSaveOptionsData) GetUpdateFields() *bool

func (*OpenXpsSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *OpenXpsSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*OpenXpsSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *OpenXpsSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*OpenXpsSaveOptionsData) GetUseBookFoldPrintingSettings ¶

func (obj *OpenXpsSaveOptionsData) GetUseBookFoldPrintingSettings() *bool

func (*OpenXpsSaveOptionsData) GetZipOutput ¶

func (obj *OpenXpsSaveOptionsData) GetZipOutput() *bool

func (*OpenXpsSaveOptionsData) Initialize ¶

func (obj *OpenXpsSaveOptionsData) Initialize()

func (OpenXpsSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (OpenXpsSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (OpenXpsSaveOptionsData) IsOpenXpsSaveOptionsData ¶

func (OpenXpsSaveOptionsData) IsOpenXpsSaveOptionsData() bool

func (OpenXpsSaveOptionsData) IsSaveOptionsData ¶

func (OpenXpsSaveOptionsData) IsSaveOptionsData() bool

func (OpenXpsSaveOptionsData) IsXpsSaveOptionsData ¶

func (OpenXpsSaveOptionsData) IsXpsSaveOptionsData() bool

func (*OpenXpsSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *OpenXpsSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*OpenXpsSaveOptionsData) SetBookmarksOutlineLevel ¶

func (obj *OpenXpsSaveOptionsData) SetBookmarksOutlineLevel(value *int32)

func (*OpenXpsSaveOptionsData) SetColorMode ¶

func (obj *OpenXpsSaveOptionsData) SetColorMode(value *string)

func (*OpenXpsSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *OpenXpsSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*OpenXpsSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *OpenXpsSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*OpenXpsSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *OpenXpsSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*OpenXpsSaveOptionsData) SetDmlRenderingMode ¶

func (obj *OpenXpsSaveOptionsData) SetDmlRenderingMode(value *string)

func (*OpenXpsSaveOptionsData) SetFileName ¶

func (obj *OpenXpsSaveOptionsData) SetFileName(value *string)

func (*OpenXpsSaveOptionsData) SetHeadingsOutlineLevels ¶

func (obj *OpenXpsSaveOptionsData) SetHeadingsOutlineLevels(value *int32)

func (*OpenXpsSaveOptionsData) SetImlRenderingMode ¶

func (obj *OpenXpsSaveOptionsData) SetImlRenderingMode(value *string)

func (*OpenXpsSaveOptionsData) SetJpegQuality ¶

func (obj *OpenXpsSaveOptionsData) SetJpegQuality(value *int32)

func (*OpenXpsSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *OpenXpsSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*OpenXpsSaveOptionsData) SetNumeralFormat ¶

func (obj *OpenXpsSaveOptionsData) SetNumeralFormat(value *string)

func (*OpenXpsSaveOptionsData) SetOptimizeOutput ¶

func (obj *OpenXpsSaveOptionsData) SetOptimizeOutput(value *bool)

func (*OpenXpsSaveOptionsData) SetOutlineOptions ¶

func (obj *OpenXpsSaveOptionsData) SetOutlineOptions(value IOutlineOptionsData)

func (*OpenXpsSaveOptionsData) SetPageCount ¶

func (obj *OpenXpsSaveOptionsData) SetPageCount(value *int32)

func (*OpenXpsSaveOptionsData) SetPageIndex ¶

func (obj *OpenXpsSaveOptionsData) SetPageIndex(value *int32)

func (*OpenXpsSaveOptionsData) SetSaveFormat ¶

func (obj *OpenXpsSaveOptionsData) SetSaveFormat(value *string)

func (*OpenXpsSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *OpenXpsSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*OpenXpsSaveOptionsData) SetUpdateFields ¶

func (obj *OpenXpsSaveOptionsData) SetUpdateFields(value *bool)

func (*OpenXpsSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *OpenXpsSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*OpenXpsSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *OpenXpsSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*OpenXpsSaveOptionsData) SetUseBookFoldPrintingSettings ¶

func (obj *OpenXpsSaveOptionsData) SetUseBookFoldPrintingSettings(value *bool)

func (*OpenXpsSaveOptionsData) SetZipOutput ¶

func (obj *OpenXpsSaveOptionsData) SetZipOutput(value *bool)

func (*OpenXpsSaveOptionsData) Validate ¶

func (obj *OpenXpsSaveOptionsData) Validate() error

type OptimizationOptions ¶

type OptimizationOptions struct {
	// Container class for the document optimization options.
	MsWordVersion *string `json:"MsWordVersion,omitempty"`
}

func (*OptimizationOptions) CollectFilesContent ¶

func (obj *OptimizationOptions) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*OptimizationOptions) Deserialize ¶

func (obj *OptimizationOptions) Deserialize(json map[string]interface{})

func (*OptimizationOptions) GetMsWordVersion ¶

func (obj *OptimizationOptions) GetMsWordVersion() *string

func (*OptimizationOptions) Initialize ¶

func (obj *OptimizationOptions) Initialize()

func (OptimizationOptions) IsOptimizationOptions ¶

func (OptimizationOptions) IsOptimizationOptions() bool

func (*OptimizationOptions) SetMsWordVersion ¶

func (obj *OptimizationOptions) SetMsWordVersion(value *string)

func (*OptimizationOptions) Validate ¶

func (obj *OptimizationOptions) Validate() error

type OptimizeDocumentOnlineRequest ¶

type OptimizeDocumentOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The document optimization options.
	Options IOptimizationOptions
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

OptimizeDocumentOnlineRequest contains request data for WordsApiService.OptimizeDocumentOnline method.

func (*OptimizeDocumentOnlineRequest) CreateRequestData ¶

func (data *OptimizeDocumentOnlineRequest) CreateRequestData() (RequestData, error)

func (*OptimizeDocumentOnlineRequest) CreateResponse ¶

func (data *OptimizeDocumentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type OptimizeDocumentRequest ¶

type OptimizeDocumentRequest struct {
	// The filename of the input document.
	Name *string
	// The document optimization options.
	Options IOptimizationOptions
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

OptimizeDocumentRequest contains request data for WordsApiService.OptimizeDocument method.

func (*OptimizeDocumentRequest) CreateRequestData ¶

func (data *OptimizeDocumentRequest) CreateRequestData() (RequestData, error)

func (*OptimizeDocumentRequest) CreateResponse ¶

func (data *OptimizeDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type OttSaveOptionsData ¶

type OttSaveOptionsData struct {
	// Container class for ott save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for ott save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for ott save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for ott save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for ott save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for ott save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for ott save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for ott save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for ott save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for ott save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for ott save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for ott save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for ott save options.
	IsStrictSchema11 *bool `json:"IsStrictSchema11,omitempty"`

	// Container class for ott save options.
	MeasureUnit *string `json:"MeasureUnit,omitempty"`

	// Container class for ott save options.
	Password *string `json:"Password,omitempty"`

	// Container class for ott save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for ott save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*OttSaveOptionsData) CollectFilesContent ¶

func (obj *OttSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*OttSaveOptionsData) Deserialize ¶

func (obj *OttSaveOptionsData) Deserialize(json map[string]interface{})

func (*OttSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *OttSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*OttSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *OttSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*OttSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *OttSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*OttSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *OttSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*OttSaveOptionsData) GetDmlRenderingMode ¶

func (obj *OttSaveOptionsData) GetDmlRenderingMode() *string

func (*OttSaveOptionsData) GetFileName ¶

func (obj *OttSaveOptionsData) GetFileName() *string

func (*OttSaveOptionsData) GetImlRenderingMode ¶

func (obj *OttSaveOptionsData) GetImlRenderingMode() *string

func (*OttSaveOptionsData) GetIsStrictSchema11 ¶

func (obj *OttSaveOptionsData) GetIsStrictSchema11() *bool

func (*OttSaveOptionsData) GetMeasureUnit ¶

func (obj *OttSaveOptionsData) GetMeasureUnit() *string

func (*OttSaveOptionsData) GetPassword ¶

func (obj *OttSaveOptionsData) GetPassword() *string

func (*OttSaveOptionsData) GetPrettyFormat ¶

func (obj *OttSaveOptionsData) GetPrettyFormat() *bool

func (*OttSaveOptionsData) GetSaveFormat ¶

func (obj *OttSaveOptionsData) GetSaveFormat() *string

func (*OttSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *OttSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*OttSaveOptionsData) GetUpdateFields ¶

func (obj *OttSaveOptionsData) GetUpdateFields() *bool

func (*OttSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *OttSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*OttSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *OttSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*OttSaveOptionsData) GetZipOutput ¶

func (obj *OttSaveOptionsData) GetZipOutput() *bool

func (*OttSaveOptionsData) Initialize ¶

func (obj *OttSaveOptionsData) Initialize()

func (OttSaveOptionsData) IsOdtSaveOptionsData ¶

func (OttSaveOptionsData) IsOdtSaveOptionsData() bool

func (OttSaveOptionsData) IsOttSaveOptionsData ¶

func (OttSaveOptionsData) IsOttSaveOptionsData() bool

func (OttSaveOptionsData) IsSaveOptionsData ¶

func (OttSaveOptionsData) IsSaveOptionsData() bool

func (*OttSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *OttSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*OttSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *OttSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*OttSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *OttSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*OttSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *OttSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*OttSaveOptionsData) SetDmlRenderingMode ¶

func (obj *OttSaveOptionsData) SetDmlRenderingMode(value *string)

func (*OttSaveOptionsData) SetFileName ¶

func (obj *OttSaveOptionsData) SetFileName(value *string)

func (*OttSaveOptionsData) SetImlRenderingMode ¶

func (obj *OttSaveOptionsData) SetImlRenderingMode(value *string)

func (*OttSaveOptionsData) SetIsStrictSchema11 ¶

func (obj *OttSaveOptionsData) SetIsStrictSchema11(value *bool)

func (*OttSaveOptionsData) SetMeasureUnit ¶

func (obj *OttSaveOptionsData) SetMeasureUnit(value *string)

func (*OttSaveOptionsData) SetPassword ¶

func (obj *OttSaveOptionsData) SetPassword(value *string)

func (*OttSaveOptionsData) SetPrettyFormat ¶

func (obj *OttSaveOptionsData) SetPrettyFormat(value *bool)

func (*OttSaveOptionsData) SetSaveFormat ¶

func (obj *OttSaveOptionsData) SetSaveFormat(value *string)

func (*OttSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *OttSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*OttSaveOptionsData) SetUpdateFields ¶

func (obj *OttSaveOptionsData) SetUpdateFields(value *bool)

func (*OttSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *OttSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*OttSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *OttSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*OttSaveOptionsData) SetZipOutput ¶

func (obj *OttSaveOptionsData) SetZipOutput(value *bool)

func (*OttSaveOptionsData) Validate ¶

func (obj *OttSaveOptionsData) Validate() error

type OutlineOptionsData ¶

type OutlineOptionsData struct {
	// Container class for outline options.
	CreateMissingOutlineLevels *bool `json:"CreateMissingOutlineLevels,omitempty"`

	// Container class for outline options.
	CreateOutlinesForHeadingsInTables *bool `json:"CreateOutlinesForHeadingsInTables,omitempty"`

	// Container class for outline options.
	DefaultBookmarksOutlineLevel *int32 `json:"DefaultBookmarksOutlineLevel,omitempty"`

	// Container class for outline options.
	ExpandedOutlineLevels *int32 `json:"ExpandedOutlineLevels,omitempty"`

	// Container class for outline options.
	HeadingsOutlineLevels *int32 `json:"HeadingsOutlineLevels,omitempty"`

	// Container class for outline options.
	BookmarksOutlineLevels []IBookmarksOutlineLevelData `json:"BookmarksOutlineLevels,omitempty"`
}

func (*OutlineOptionsData) CollectFilesContent ¶

func (obj *OutlineOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*OutlineOptionsData) Deserialize ¶

func (obj *OutlineOptionsData) Deserialize(json map[string]interface{})

func (*OutlineOptionsData) GetBookmarksOutlineLevels ¶

func (obj *OutlineOptionsData) GetBookmarksOutlineLevels() []IBookmarksOutlineLevelData

func (*OutlineOptionsData) GetCreateMissingOutlineLevels ¶

func (obj *OutlineOptionsData) GetCreateMissingOutlineLevels() *bool

func (*OutlineOptionsData) GetCreateOutlinesForHeadingsInTables ¶

func (obj *OutlineOptionsData) GetCreateOutlinesForHeadingsInTables() *bool

func (*OutlineOptionsData) GetDefaultBookmarksOutlineLevel ¶

func (obj *OutlineOptionsData) GetDefaultBookmarksOutlineLevel() *int32

func (*OutlineOptionsData) GetExpandedOutlineLevels ¶

func (obj *OutlineOptionsData) GetExpandedOutlineLevels() *int32

func (*OutlineOptionsData) GetHeadingsOutlineLevels ¶

func (obj *OutlineOptionsData) GetHeadingsOutlineLevels() *int32

func (*OutlineOptionsData) Initialize ¶

func (obj *OutlineOptionsData) Initialize()

func (OutlineOptionsData) IsOutlineOptionsData ¶

func (OutlineOptionsData) IsOutlineOptionsData() bool

func (*OutlineOptionsData) SetBookmarksOutlineLevels ¶

func (obj *OutlineOptionsData) SetBookmarksOutlineLevels(value []IBookmarksOutlineLevelData)

func (*OutlineOptionsData) SetCreateMissingOutlineLevels ¶

func (obj *OutlineOptionsData) SetCreateMissingOutlineLevels(value *bool)

func (*OutlineOptionsData) SetCreateOutlinesForHeadingsInTables ¶

func (obj *OutlineOptionsData) SetCreateOutlinesForHeadingsInTables(value *bool)

func (*OutlineOptionsData) SetDefaultBookmarksOutlineLevel ¶

func (obj *OutlineOptionsData) SetDefaultBookmarksOutlineLevel(value *int32)

func (*OutlineOptionsData) SetExpandedOutlineLevels ¶

func (obj *OutlineOptionsData) SetExpandedOutlineLevels(value *int32)

func (*OutlineOptionsData) SetHeadingsOutlineLevels ¶

func (obj *OutlineOptionsData) SetHeadingsOutlineLevels(value *int32)

func (*OutlineOptionsData) Validate ¶

func (obj *OutlineOptionsData) Validate() error

type PageNumber ¶

type PageNumber struct {
	// Class is used for insert page number request building.
	Alignment *string `json:"Alignment,omitempty"`

	// Class is used for insert page number request building.
	Format *string `json:"Format,omitempty"`

	// Class is used for insert page number request building.
	IsTop *bool `json:"IsTop,omitempty"`

	// Class is used for insert page number request building.
	PageStartingNumber *int32 `json:"PageStartingNumber,omitempty"`

	// Class is used for insert page number request building.
	SetPageNumberOnFirstPage *bool `json:"SetPageNumberOnFirstPage,omitempty"`
}

func (*PageNumber) CollectFilesContent ¶

func (obj *PageNumber) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PageNumber) Deserialize ¶

func (obj *PageNumber) Deserialize(json map[string]interface{})

func (*PageNumber) GetAlignment ¶

func (obj *PageNumber) GetAlignment() *string

func (*PageNumber) GetFormat ¶

func (obj *PageNumber) GetFormat() *string

func (*PageNumber) GetIsTop ¶

func (obj *PageNumber) GetIsTop() *bool

func (*PageNumber) GetPageStartingNumber ¶

func (obj *PageNumber) GetPageStartingNumber() *int32

func (*PageNumber) GetSetPageNumberOnFirstPage ¶

func (obj *PageNumber) GetSetPageNumberOnFirstPage() *bool

func (*PageNumber) Initialize ¶

func (obj *PageNumber) Initialize()

func (PageNumber) IsPageNumber ¶

func (PageNumber) IsPageNumber() bool

func (*PageNumber) SetAlignment ¶

func (obj *PageNumber) SetAlignment(value *string)

func (*PageNumber) SetFormat ¶

func (obj *PageNumber) SetFormat(value *string)

func (*PageNumber) SetIsTop ¶

func (obj *PageNumber) SetIsTop(value *bool)

func (*PageNumber) SetPageStartingNumber ¶

func (obj *PageNumber) SetPageStartingNumber(value *int32)

func (*PageNumber) SetSetPageNumberOnFirstPage ¶

func (obj *PageNumber) SetSetPageNumberOnFirstPage(value *bool)

func (*PageNumber) Validate ¶

func (obj *PageNumber) Validate() error

type PageSetup ¶

type PageSetup struct {
	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	Bidi *bool `json:"Bidi,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	BorderAlwaysInFront *bool `json:"BorderAlwaysInFront,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	BorderAppliesTo *string `json:"BorderAppliesTo,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	BorderDistanceFrom *string `json:"BorderDistanceFrom,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	BottomMargin *float64 `json:"BottomMargin,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	DifferentFirstPageHeaderFooter *bool `json:"DifferentFirstPageHeaderFooter,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	FirstPageTray *int32 `json:"FirstPageTray,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	FooterDistance *float64 `json:"FooterDistance,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	Gutter *float64 `json:"Gutter,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	HeaderDistance *float64 `json:"HeaderDistance,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	LeftMargin *float64 `json:"LeftMargin,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	LineNumberCountBy *int32 `json:"LineNumberCountBy,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	LineNumberDistanceFromText *float64 `json:"LineNumberDistanceFromText,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	LineNumberRestartMode *string `json:"LineNumberRestartMode,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	LineStartingNumber *int32 `json:"LineStartingNumber,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	Orientation *string `json:"Orientation,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	OtherPagesTray *int32 `json:"OtherPagesTray,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	PageHeight *float64 `json:"PageHeight,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	PageNumberStyle *string `json:"PageNumberStyle,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	PageStartingNumber *int32 `json:"PageStartingNumber,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	PageWidth *float64 `json:"PageWidth,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	PaperSize *string `json:"PaperSize,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	RestartPageNumbering *bool `json:"RestartPageNumbering,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	RightMargin *float64 `json:"RightMargin,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	RtlGutter *bool `json:"RtlGutter,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	SectionStart *string `json:"SectionStart,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	SuppressEndnotes *bool `json:"SuppressEndnotes,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	TopMargin *float64 `json:"TopMargin,omitempty"`

	// Represents the page setup properties of a section.
	// PageSetup object contains all the page setup attributes of a section (left margin, bottom margin, paper size, and so on) as properties.
	VerticalAlignment *string `json:"VerticalAlignment,omitempty"`
}

func (*PageSetup) CollectFilesContent ¶

func (obj *PageSetup) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PageSetup) Deserialize ¶

func (obj *PageSetup) Deserialize(json map[string]interface{})

func (*PageSetup) GetBidi ¶

func (obj *PageSetup) GetBidi() *bool

func (*PageSetup) GetBorderAlwaysInFront ¶

func (obj *PageSetup) GetBorderAlwaysInFront() *bool

func (*PageSetup) GetBorderAppliesTo ¶

func (obj *PageSetup) GetBorderAppliesTo() *string

func (*PageSetup) GetBorderDistanceFrom ¶

func (obj *PageSetup) GetBorderDistanceFrom() *string

func (*PageSetup) GetBottomMargin ¶

func (obj *PageSetup) GetBottomMargin() *float64

func (*PageSetup) GetDifferentFirstPageHeaderFooter ¶

func (obj *PageSetup) GetDifferentFirstPageHeaderFooter() *bool

func (*PageSetup) GetFirstPageTray ¶

func (obj *PageSetup) GetFirstPageTray() *int32

func (*PageSetup) GetFooterDistance ¶

func (obj *PageSetup) GetFooterDistance() *float64

func (*PageSetup) GetGutter ¶

func (obj *PageSetup) GetGutter() *float64

func (*PageSetup) GetHeaderDistance ¶

func (obj *PageSetup) GetHeaderDistance() *float64

func (*PageSetup) GetLeftMargin ¶

func (obj *PageSetup) GetLeftMargin() *float64

func (*PageSetup) GetLineNumberCountBy ¶

func (obj *PageSetup) GetLineNumberCountBy() *int32

func (*PageSetup) GetLineNumberDistanceFromText ¶

func (obj *PageSetup) GetLineNumberDistanceFromText() *float64

func (*PageSetup) GetLineNumberRestartMode ¶

func (obj *PageSetup) GetLineNumberRestartMode() *string

func (*PageSetup) GetLineStartingNumber ¶

func (obj *PageSetup) GetLineStartingNumber() *int32
func (obj *PageSetup) GetLink() IWordsApiLink

func (*PageSetup) GetOrientation ¶

func (obj *PageSetup) GetOrientation() *string

func (*PageSetup) GetOtherPagesTray ¶

func (obj *PageSetup) GetOtherPagesTray() *int32

func (*PageSetup) GetPageHeight ¶

func (obj *PageSetup) GetPageHeight() *float64

func (*PageSetup) GetPageNumberStyle ¶

func (obj *PageSetup) GetPageNumberStyle() *string

func (*PageSetup) GetPageStartingNumber ¶

func (obj *PageSetup) GetPageStartingNumber() *int32

func (*PageSetup) GetPageWidth ¶

func (obj *PageSetup) GetPageWidth() *float64

func (*PageSetup) GetPaperSize ¶

func (obj *PageSetup) GetPaperSize() *string

func (*PageSetup) GetRestartPageNumbering ¶

func (obj *PageSetup) GetRestartPageNumbering() *bool

func (*PageSetup) GetRightMargin ¶

func (obj *PageSetup) GetRightMargin() *float64

func (*PageSetup) GetRtlGutter ¶

func (obj *PageSetup) GetRtlGutter() *bool

func (*PageSetup) GetSectionStart ¶

func (obj *PageSetup) GetSectionStart() *string

func (*PageSetup) GetSuppressEndnotes ¶

func (obj *PageSetup) GetSuppressEndnotes() *bool

func (*PageSetup) GetTopMargin ¶

func (obj *PageSetup) GetTopMargin() *float64

func (*PageSetup) GetVerticalAlignment ¶

func (obj *PageSetup) GetVerticalAlignment() *string

func (*PageSetup) Initialize ¶

func (obj *PageSetup) Initialize()

func (PageSetup) IsLinkElement ¶

func (PageSetup) IsLinkElement() bool

func (PageSetup) IsPageSetup ¶

func (PageSetup) IsPageSetup() bool

func (*PageSetup) SetBidi ¶

func (obj *PageSetup) SetBidi(value *bool)

func (*PageSetup) SetBorderAlwaysInFront ¶

func (obj *PageSetup) SetBorderAlwaysInFront(value *bool)

func (*PageSetup) SetBorderAppliesTo ¶

func (obj *PageSetup) SetBorderAppliesTo(value *string)

func (*PageSetup) SetBorderDistanceFrom ¶

func (obj *PageSetup) SetBorderDistanceFrom(value *string)

func (*PageSetup) SetBottomMargin ¶

func (obj *PageSetup) SetBottomMargin(value *float64)

func (*PageSetup) SetDifferentFirstPageHeaderFooter ¶

func (obj *PageSetup) SetDifferentFirstPageHeaderFooter(value *bool)

func (*PageSetup) SetFirstPageTray ¶

func (obj *PageSetup) SetFirstPageTray(value *int32)

func (*PageSetup) SetFooterDistance ¶

func (obj *PageSetup) SetFooterDistance(value *float64)

func (*PageSetup) SetGutter ¶

func (obj *PageSetup) SetGutter(value *float64)

func (*PageSetup) SetHeaderDistance ¶

func (obj *PageSetup) SetHeaderDistance(value *float64)

func (*PageSetup) SetLeftMargin ¶

func (obj *PageSetup) SetLeftMargin(value *float64)

func (*PageSetup) SetLineNumberCountBy ¶

func (obj *PageSetup) SetLineNumberCountBy(value *int32)

func (*PageSetup) SetLineNumberDistanceFromText ¶

func (obj *PageSetup) SetLineNumberDistanceFromText(value *float64)

func (*PageSetup) SetLineNumberRestartMode ¶

func (obj *PageSetup) SetLineNumberRestartMode(value *string)

func (*PageSetup) SetLineStartingNumber ¶

func (obj *PageSetup) SetLineStartingNumber(value *int32)
func (obj *PageSetup) SetLink(value IWordsApiLink)

func (*PageSetup) SetOrientation ¶

func (obj *PageSetup) SetOrientation(value *string)

func (*PageSetup) SetOtherPagesTray ¶

func (obj *PageSetup) SetOtherPagesTray(value *int32)

func (*PageSetup) SetPageHeight ¶

func (obj *PageSetup) SetPageHeight(value *float64)

func (*PageSetup) SetPageNumberStyle ¶

func (obj *PageSetup) SetPageNumberStyle(value *string)

func (*PageSetup) SetPageStartingNumber ¶

func (obj *PageSetup) SetPageStartingNumber(value *int32)

func (*PageSetup) SetPageWidth ¶

func (obj *PageSetup) SetPageWidth(value *float64)

func (*PageSetup) SetPaperSize ¶

func (obj *PageSetup) SetPaperSize(value *string)

func (*PageSetup) SetRestartPageNumbering ¶

func (obj *PageSetup) SetRestartPageNumbering(value *bool)

func (*PageSetup) SetRightMargin ¶

func (obj *PageSetup) SetRightMargin(value *float64)

func (*PageSetup) SetRtlGutter ¶

func (obj *PageSetup) SetRtlGutter(value *bool)

func (*PageSetup) SetSectionStart ¶

func (obj *PageSetup) SetSectionStart(value *string)

func (*PageSetup) SetSuppressEndnotes ¶

func (obj *PageSetup) SetSuppressEndnotes(value *bool)

func (*PageSetup) SetTopMargin ¶

func (obj *PageSetup) SetTopMargin(value *float64)

func (*PageSetup) SetVerticalAlignment ¶

func (obj *PageSetup) SetVerticalAlignment(value *string)

func (*PageSetup) Validate ¶

func (obj *PageSetup) Validate() error

type PageStatData ¶

type PageStatData struct {
	// Container for the page's statistical data.
	FootnotesStatData IFootnotesStatData `json:"FootnotesStatData,omitempty"`

	// Container for the page's statistical data.
	ParagraphCount *int32 `json:"ParagraphCount,omitempty"`

	// Container for the page's statistical data.
	WordCount *int32 `json:"WordCount,omitempty"`

	// Container for the page's statistical data.
	PageNumber *int32 `json:"PageNumber,omitempty"`
}

func (*PageStatData) CollectFilesContent ¶

func (obj *PageStatData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PageStatData) Deserialize ¶

func (obj *PageStatData) Deserialize(json map[string]interface{})

func (*PageStatData) GetFootnotesStatData ¶

func (obj *PageStatData) GetFootnotesStatData() IFootnotesStatData

func (*PageStatData) GetPageNumber ¶

func (obj *PageStatData) GetPageNumber() *int32

func (*PageStatData) GetParagraphCount ¶

func (obj *PageStatData) GetParagraphCount() *int32

func (*PageStatData) GetWordCount ¶

func (obj *PageStatData) GetWordCount() *int32

func (*PageStatData) Initialize ¶

func (obj *PageStatData) Initialize()

func (PageStatData) IsPageStatData ¶

func (PageStatData) IsPageStatData() bool

func (*PageStatData) SetFootnotesStatData ¶

func (obj *PageStatData) SetFootnotesStatData(value IFootnotesStatData)

func (*PageStatData) SetPageNumber ¶

func (obj *PageStatData) SetPageNumber(value *int32)

func (*PageStatData) SetParagraphCount ¶

func (obj *PageStatData) SetParagraphCount(value *int32)

func (*PageStatData) SetWordCount ¶

func (obj *PageStatData) SetWordCount(value *int32)

func (*PageStatData) Validate ¶

func (obj *PageStatData) Validate() error

type Paragraph ¶

type Paragraph struct {
	// DTO container with a paragraph element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a paragraph element.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with a paragraph element.
	ChildNodes []INodeLink `json:"ChildNodes,omitempty"`
}

func (*Paragraph) CollectFilesContent ¶

func (obj *Paragraph) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Paragraph) Deserialize ¶

func (obj *Paragraph) Deserialize(json map[string]interface{})

func (*Paragraph) GetChildNodes ¶

func (obj *Paragraph) GetChildNodes() []INodeLink
func (obj *Paragraph) GetLink() IWordsApiLink

func (*Paragraph) GetNodeId ¶

func (obj *Paragraph) GetNodeId() *string

func (*Paragraph) Initialize ¶

func (obj *Paragraph) Initialize()

func (Paragraph) IsLinkElement ¶

func (Paragraph) IsLinkElement() bool
func (Paragraph) IsNodeLink() bool

func (Paragraph) IsParagraph ¶

func (Paragraph) IsParagraph() bool

func (*Paragraph) SetChildNodes ¶

func (obj *Paragraph) SetChildNodes(value []INodeLink)
func (obj *Paragraph) SetLink(value IWordsApiLink)

func (*Paragraph) SetNodeId ¶

func (obj *Paragraph) SetNodeId(value *string)

func (*Paragraph) Validate ¶

func (obj *Paragraph) Validate() error

type ParagraphFormat ¶

type ParagraphFormat struct {
	// Paragraph format element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Paragraph format element.
	AddSpaceBetweenFarEastAndAlpha *bool `json:"AddSpaceBetweenFarEastAndAlpha,omitempty"`

	// Paragraph format element.
	AddSpaceBetweenFarEastAndDigit *bool `json:"AddSpaceBetweenFarEastAndDigit,omitempty"`

	// Paragraph format element.
	Alignment *string `json:"Alignment,omitempty"`

	// Paragraph format element.
	Bidi *bool `json:"Bidi,omitempty"`

	// Paragraph format element.
	DropCapPosition *string `json:"DropCapPosition,omitempty"`

	// Paragraph format element.
	FirstLineIndent *float64 `json:"FirstLineIndent,omitempty"`

	// Paragraph format element.
	KeepTogether *bool `json:"KeepTogether,omitempty"`

	// Paragraph format element.
	KeepWithNext *bool `json:"KeepWithNext,omitempty"`

	// Paragraph format element.
	LeftIndent *float64 `json:"LeftIndent,omitempty"`

	// Paragraph format element.
	LineSpacing *float64 `json:"LineSpacing,omitempty"`

	// Paragraph format element.
	LineSpacingRule *string `json:"LineSpacingRule,omitempty"`

	// Paragraph format element.
	LinesToDrop *int32 `json:"LinesToDrop,omitempty"`

	// Paragraph format element.
	NoSpaceBetweenParagraphsOfSameStyle *bool `json:"NoSpaceBetweenParagraphsOfSameStyle,omitempty"`

	// Paragraph format element.
	OutlineLevel *string `json:"OutlineLevel,omitempty"`

	// Paragraph format element.
	PageBreakBefore *bool `json:"PageBreakBefore,omitempty"`

	// Paragraph format element.
	RightIndent *float64 `json:"RightIndent,omitempty"`

	// Paragraph format element.
	SpaceAfter *float64 `json:"SpaceAfter,omitempty"`

	// Paragraph format element.
	SpaceAfterAuto *bool `json:"SpaceAfterAuto,omitempty"`

	// Paragraph format element.
	SpaceBefore *float64 `json:"SpaceBefore,omitempty"`

	// Paragraph format element.
	SpaceBeforeAuto *bool `json:"SpaceBeforeAuto,omitempty"`

	// Paragraph format element.
	StyleIdentifier *string `json:"StyleIdentifier,omitempty"`

	// Paragraph format element.
	StyleName *string `json:"StyleName,omitempty"`

	// Paragraph format element.
	SuppressAutoHyphens *bool `json:"SuppressAutoHyphens,omitempty"`

	// Paragraph format element.
	SuppressLineNumbers *bool `json:"SuppressLineNumbers,omitempty"`

	// Paragraph format element.
	WidowControl *bool `json:"WidowControl,omitempty"`

	// Paragraph format element.
	Shading IShading `json:"Shading,omitempty"`

	// Paragraph format element.
	IsListItem *bool `json:"IsListItem,omitempty"`

	// Paragraph format element.
	IsHeading *bool `json:"IsHeading,omitempty"`
}

func (*ParagraphFormat) CollectFilesContent ¶

func (obj *ParagraphFormat) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ParagraphFormat) Deserialize ¶

func (obj *ParagraphFormat) Deserialize(json map[string]interface{})

func (*ParagraphFormat) GetAddSpaceBetweenFarEastAndAlpha ¶

func (obj *ParagraphFormat) GetAddSpaceBetweenFarEastAndAlpha() *bool

func (*ParagraphFormat) GetAddSpaceBetweenFarEastAndDigit ¶

func (obj *ParagraphFormat) GetAddSpaceBetweenFarEastAndDigit() *bool

func (*ParagraphFormat) GetAlignment ¶

func (obj *ParagraphFormat) GetAlignment() *string

func (*ParagraphFormat) GetBidi ¶

func (obj *ParagraphFormat) GetBidi() *bool

func (*ParagraphFormat) GetDropCapPosition ¶

func (obj *ParagraphFormat) GetDropCapPosition() *string

func (*ParagraphFormat) GetFirstLineIndent ¶

func (obj *ParagraphFormat) GetFirstLineIndent() *float64

func (*ParagraphFormat) GetIsHeading ¶

func (obj *ParagraphFormat) GetIsHeading() *bool

func (*ParagraphFormat) GetIsListItem ¶

func (obj *ParagraphFormat) GetIsListItem() *bool

func (*ParagraphFormat) GetKeepTogether ¶

func (obj *ParagraphFormat) GetKeepTogether() *bool

func (*ParagraphFormat) GetKeepWithNext ¶

func (obj *ParagraphFormat) GetKeepWithNext() *bool

func (*ParagraphFormat) GetLeftIndent ¶

func (obj *ParagraphFormat) GetLeftIndent() *float64

func (*ParagraphFormat) GetLineSpacing ¶

func (obj *ParagraphFormat) GetLineSpacing() *float64

func (*ParagraphFormat) GetLineSpacingRule ¶

func (obj *ParagraphFormat) GetLineSpacingRule() *string

func (*ParagraphFormat) GetLinesToDrop ¶

func (obj *ParagraphFormat) GetLinesToDrop() *int32
func (obj *ParagraphFormat) GetLink() IWordsApiLink

func (*ParagraphFormat) GetNoSpaceBetweenParagraphsOfSameStyle ¶

func (obj *ParagraphFormat) GetNoSpaceBetweenParagraphsOfSameStyle() *bool

func (*ParagraphFormat) GetOutlineLevel ¶

func (obj *ParagraphFormat) GetOutlineLevel() *string

func (*ParagraphFormat) GetPageBreakBefore ¶

func (obj *ParagraphFormat) GetPageBreakBefore() *bool

func (*ParagraphFormat) GetRightIndent ¶

func (obj *ParagraphFormat) GetRightIndent() *float64

func (*ParagraphFormat) GetShading ¶

func (obj *ParagraphFormat) GetShading() IShading

func (*ParagraphFormat) GetSpaceAfter ¶

func (obj *ParagraphFormat) GetSpaceAfter() *float64

func (*ParagraphFormat) GetSpaceAfterAuto ¶

func (obj *ParagraphFormat) GetSpaceAfterAuto() *bool

func (*ParagraphFormat) GetSpaceBefore ¶

func (obj *ParagraphFormat) GetSpaceBefore() *float64

func (*ParagraphFormat) GetSpaceBeforeAuto ¶

func (obj *ParagraphFormat) GetSpaceBeforeAuto() *bool

func (*ParagraphFormat) GetStyleIdentifier ¶

func (obj *ParagraphFormat) GetStyleIdentifier() *string

func (*ParagraphFormat) GetStyleName ¶

func (obj *ParagraphFormat) GetStyleName() *string

func (*ParagraphFormat) GetSuppressAutoHyphens ¶

func (obj *ParagraphFormat) GetSuppressAutoHyphens() *bool

func (*ParagraphFormat) GetSuppressLineNumbers ¶

func (obj *ParagraphFormat) GetSuppressLineNumbers() *bool

func (*ParagraphFormat) GetWidowControl ¶

func (obj *ParagraphFormat) GetWidowControl() *bool

func (*ParagraphFormat) Initialize ¶

func (obj *ParagraphFormat) Initialize()

func (ParagraphFormat) IsLinkElement ¶

func (ParagraphFormat) IsLinkElement() bool

func (ParagraphFormat) IsParagraphFormat ¶

func (ParagraphFormat) IsParagraphFormat() bool

func (ParagraphFormat) IsParagraphFormatBase ¶

func (ParagraphFormat) IsParagraphFormatBase() bool

func (*ParagraphFormat) SetAddSpaceBetweenFarEastAndAlpha ¶

func (obj *ParagraphFormat) SetAddSpaceBetweenFarEastAndAlpha(value *bool)

func (*ParagraphFormat) SetAddSpaceBetweenFarEastAndDigit ¶

func (obj *ParagraphFormat) SetAddSpaceBetweenFarEastAndDigit(value *bool)

func (*ParagraphFormat) SetAlignment ¶

func (obj *ParagraphFormat) SetAlignment(value *string)

func (*ParagraphFormat) SetBidi ¶

func (obj *ParagraphFormat) SetBidi(value *bool)

func (*ParagraphFormat) SetDropCapPosition ¶

func (obj *ParagraphFormat) SetDropCapPosition(value *string)

func (*ParagraphFormat) SetFirstLineIndent ¶

func (obj *ParagraphFormat) SetFirstLineIndent(value *float64)

func (*ParagraphFormat) SetIsHeading ¶

func (obj *ParagraphFormat) SetIsHeading(value *bool)

func (*ParagraphFormat) SetIsListItem ¶

func (obj *ParagraphFormat) SetIsListItem(value *bool)

func (*ParagraphFormat) SetKeepTogether ¶

func (obj *ParagraphFormat) SetKeepTogether(value *bool)

func (*ParagraphFormat) SetKeepWithNext ¶

func (obj *ParagraphFormat) SetKeepWithNext(value *bool)

func (*ParagraphFormat) SetLeftIndent ¶

func (obj *ParagraphFormat) SetLeftIndent(value *float64)

func (*ParagraphFormat) SetLineSpacing ¶

func (obj *ParagraphFormat) SetLineSpacing(value *float64)

func (*ParagraphFormat) SetLineSpacingRule ¶

func (obj *ParagraphFormat) SetLineSpacingRule(value *string)

func (*ParagraphFormat) SetLinesToDrop ¶

func (obj *ParagraphFormat) SetLinesToDrop(value *int32)
func (obj *ParagraphFormat) SetLink(value IWordsApiLink)

func (*ParagraphFormat) SetNoSpaceBetweenParagraphsOfSameStyle ¶

func (obj *ParagraphFormat) SetNoSpaceBetweenParagraphsOfSameStyle(value *bool)

func (*ParagraphFormat) SetOutlineLevel ¶

func (obj *ParagraphFormat) SetOutlineLevel(value *string)

func (*ParagraphFormat) SetPageBreakBefore ¶

func (obj *ParagraphFormat) SetPageBreakBefore(value *bool)

func (*ParagraphFormat) SetRightIndent ¶

func (obj *ParagraphFormat) SetRightIndent(value *float64)

func (*ParagraphFormat) SetShading ¶

func (obj *ParagraphFormat) SetShading(value IShading)

func (*ParagraphFormat) SetSpaceAfter ¶

func (obj *ParagraphFormat) SetSpaceAfter(value *float64)

func (*ParagraphFormat) SetSpaceAfterAuto ¶

func (obj *ParagraphFormat) SetSpaceAfterAuto(value *bool)

func (*ParagraphFormat) SetSpaceBefore ¶

func (obj *ParagraphFormat) SetSpaceBefore(value *float64)

func (*ParagraphFormat) SetSpaceBeforeAuto ¶

func (obj *ParagraphFormat) SetSpaceBeforeAuto(value *bool)

func (*ParagraphFormat) SetStyleIdentifier ¶

func (obj *ParagraphFormat) SetStyleIdentifier(value *string)

func (*ParagraphFormat) SetStyleName ¶

func (obj *ParagraphFormat) SetStyleName(value *string)

func (*ParagraphFormat) SetSuppressAutoHyphens ¶

func (obj *ParagraphFormat) SetSuppressAutoHyphens(value *bool)

func (*ParagraphFormat) SetSuppressLineNumbers ¶

func (obj *ParagraphFormat) SetSuppressLineNumbers(value *bool)

func (*ParagraphFormat) SetWidowControl ¶

func (obj *ParagraphFormat) SetWidowControl(value *bool)

func (*ParagraphFormat) Validate ¶

func (obj *ParagraphFormat) Validate() error

type ParagraphFormatResponse ¶

type ParagraphFormatResponse struct {
	// The REST response with the formatting properties of a paragraph.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/format" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with the formatting properties of a paragraph.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/format" REST API requests.
	ParagraphFormat IParagraphFormat `json:"ParagraphFormat,omitempty"`
}

func (*ParagraphFormatResponse) CollectFilesContent ¶

func (obj *ParagraphFormatResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ParagraphFormatResponse) Deserialize ¶

func (obj *ParagraphFormatResponse) Deserialize(json map[string]interface{})

func (*ParagraphFormatResponse) GetParagraphFormat ¶

func (obj *ParagraphFormatResponse) GetParagraphFormat() IParagraphFormat

func (*ParagraphFormatResponse) GetRequestId ¶

func (obj *ParagraphFormatResponse) GetRequestId() *string

func (*ParagraphFormatResponse) Initialize ¶

func (obj *ParagraphFormatResponse) Initialize()

func (ParagraphFormatResponse) IsParagraphFormatResponse ¶

func (ParagraphFormatResponse) IsParagraphFormatResponse() bool

func (ParagraphFormatResponse) IsWordsResponse ¶

func (ParagraphFormatResponse) IsWordsResponse() bool

func (*ParagraphFormatResponse) SetParagraphFormat ¶

func (obj *ParagraphFormatResponse) SetParagraphFormat(value IParagraphFormat)

func (*ParagraphFormatResponse) SetRequestId ¶

func (obj *ParagraphFormatResponse) SetRequestId(value *string)

func (*ParagraphFormatResponse) Validate ¶

func (obj *ParagraphFormatResponse) Validate() error

type ParagraphFormatUpdate ¶

type ParagraphFormatUpdate struct {
	// Paragraph format element update DTO.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Paragraph format element update DTO.
	AddSpaceBetweenFarEastAndAlpha *bool `json:"AddSpaceBetweenFarEastAndAlpha,omitempty"`

	// Paragraph format element update DTO.
	AddSpaceBetweenFarEastAndDigit *bool `json:"AddSpaceBetweenFarEastAndDigit,omitempty"`

	// Paragraph format element update DTO.
	Alignment *string `json:"Alignment,omitempty"`

	// Paragraph format element update DTO.
	Bidi *bool `json:"Bidi,omitempty"`

	// Paragraph format element update DTO.
	DropCapPosition *string `json:"DropCapPosition,omitempty"`

	// Paragraph format element update DTO.
	FirstLineIndent *float64 `json:"FirstLineIndent,omitempty"`

	// Paragraph format element update DTO.
	KeepTogether *bool `json:"KeepTogether,omitempty"`

	// Paragraph format element update DTO.
	KeepWithNext *bool `json:"KeepWithNext,omitempty"`

	// Paragraph format element update DTO.
	LeftIndent *float64 `json:"LeftIndent,omitempty"`

	// Paragraph format element update DTO.
	LineSpacing *float64 `json:"LineSpacing,omitempty"`

	// Paragraph format element update DTO.
	LineSpacingRule *string `json:"LineSpacingRule,omitempty"`

	// Paragraph format element update DTO.
	LinesToDrop *int32 `json:"LinesToDrop,omitempty"`

	// Paragraph format element update DTO.
	NoSpaceBetweenParagraphsOfSameStyle *bool `json:"NoSpaceBetweenParagraphsOfSameStyle,omitempty"`

	// Paragraph format element update DTO.
	OutlineLevel *string `json:"OutlineLevel,omitempty"`

	// Paragraph format element update DTO.
	PageBreakBefore *bool `json:"PageBreakBefore,omitempty"`

	// Paragraph format element update DTO.
	RightIndent *float64 `json:"RightIndent,omitempty"`

	// Paragraph format element update DTO.
	SpaceAfter *float64 `json:"SpaceAfter,omitempty"`

	// Paragraph format element update DTO.
	SpaceAfterAuto *bool `json:"SpaceAfterAuto,omitempty"`

	// Paragraph format element update DTO.
	SpaceBefore *float64 `json:"SpaceBefore,omitempty"`

	// Paragraph format element update DTO.
	SpaceBeforeAuto *bool `json:"SpaceBeforeAuto,omitempty"`

	// Paragraph format element update DTO.
	StyleIdentifier *string `json:"StyleIdentifier,omitempty"`

	// Paragraph format element update DTO.
	StyleName *string `json:"StyleName,omitempty"`

	// Paragraph format element update DTO.
	SuppressAutoHyphens *bool `json:"SuppressAutoHyphens,omitempty"`

	// Paragraph format element update DTO.
	SuppressLineNumbers *bool `json:"SuppressLineNumbers,omitempty"`

	// Paragraph format element update DTO.
	WidowControl *bool `json:"WidowControl,omitempty"`

	// Paragraph format element update DTO.
	Shading IShading `json:"Shading,omitempty"`
}

func (*ParagraphFormatUpdate) CollectFilesContent ¶

func (obj *ParagraphFormatUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ParagraphFormatUpdate) Deserialize ¶

func (obj *ParagraphFormatUpdate) Deserialize(json map[string]interface{})

func (*ParagraphFormatUpdate) GetAddSpaceBetweenFarEastAndAlpha ¶

func (obj *ParagraphFormatUpdate) GetAddSpaceBetweenFarEastAndAlpha() *bool

func (*ParagraphFormatUpdate) GetAddSpaceBetweenFarEastAndDigit ¶

func (obj *ParagraphFormatUpdate) GetAddSpaceBetweenFarEastAndDigit() *bool

func (*ParagraphFormatUpdate) GetAlignment ¶

func (obj *ParagraphFormatUpdate) GetAlignment() *string

func (*ParagraphFormatUpdate) GetBidi ¶

func (obj *ParagraphFormatUpdate) GetBidi() *bool

func (*ParagraphFormatUpdate) GetDropCapPosition ¶

func (obj *ParagraphFormatUpdate) GetDropCapPosition() *string

func (*ParagraphFormatUpdate) GetFirstLineIndent ¶

func (obj *ParagraphFormatUpdate) GetFirstLineIndent() *float64

func (*ParagraphFormatUpdate) GetKeepTogether ¶

func (obj *ParagraphFormatUpdate) GetKeepTogether() *bool

func (*ParagraphFormatUpdate) GetKeepWithNext ¶

func (obj *ParagraphFormatUpdate) GetKeepWithNext() *bool

func (*ParagraphFormatUpdate) GetLeftIndent ¶

func (obj *ParagraphFormatUpdate) GetLeftIndent() *float64

func (*ParagraphFormatUpdate) GetLineSpacing ¶

func (obj *ParagraphFormatUpdate) GetLineSpacing() *float64

func (*ParagraphFormatUpdate) GetLineSpacingRule ¶

func (obj *ParagraphFormatUpdate) GetLineSpacingRule() *string

func (*ParagraphFormatUpdate) GetLinesToDrop ¶

func (obj *ParagraphFormatUpdate) GetLinesToDrop() *int32
func (obj *ParagraphFormatUpdate) GetLink() IWordsApiLink

func (*ParagraphFormatUpdate) GetNoSpaceBetweenParagraphsOfSameStyle ¶

func (obj *ParagraphFormatUpdate) GetNoSpaceBetweenParagraphsOfSameStyle() *bool

func (*ParagraphFormatUpdate) GetOutlineLevel ¶

func (obj *ParagraphFormatUpdate) GetOutlineLevel() *string

func (*ParagraphFormatUpdate) GetPageBreakBefore ¶

func (obj *ParagraphFormatUpdate) GetPageBreakBefore() *bool

func (*ParagraphFormatUpdate) GetRightIndent ¶

func (obj *ParagraphFormatUpdate) GetRightIndent() *float64

func (*ParagraphFormatUpdate) GetShading ¶

func (obj *ParagraphFormatUpdate) GetShading() IShading

func (*ParagraphFormatUpdate) GetSpaceAfter ¶

func (obj *ParagraphFormatUpdate) GetSpaceAfter() *float64

func (*ParagraphFormatUpdate) GetSpaceAfterAuto ¶

func (obj *ParagraphFormatUpdate) GetSpaceAfterAuto() *bool

func (*ParagraphFormatUpdate) GetSpaceBefore ¶

func (obj *ParagraphFormatUpdate) GetSpaceBefore() *float64

func (*ParagraphFormatUpdate) GetSpaceBeforeAuto ¶

func (obj *ParagraphFormatUpdate) GetSpaceBeforeAuto() *bool

func (*ParagraphFormatUpdate) GetStyleIdentifier ¶

func (obj *ParagraphFormatUpdate) GetStyleIdentifier() *string

func (*ParagraphFormatUpdate) GetStyleName ¶

func (obj *ParagraphFormatUpdate) GetStyleName() *string

func (*ParagraphFormatUpdate) GetSuppressAutoHyphens ¶

func (obj *ParagraphFormatUpdate) GetSuppressAutoHyphens() *bool

func (*ParagraphFormatUpdate) GetSuppressLineNumbers ¶

func (obj *ParagraphFormatUpdate) GetSuppressLineNumbers() *bool

func (*ParagraphFormatUpdate) GetWidowControl ¶

func (obj *ParagraphFormatUpdate) GetWidowControl() *bool

func (*ParagraphFormatUpdate) Initialize ¶

func (obj *ParagraphFormatUpdate) Initialize()

func (ParagraphFormatUpdate) IsLinkElement ¶

func (ParagraphFormatUpdate) IsLinkElement() bool

func (ParagraphFormatUpdate) IsParagraphFormatBase ¶

func (ParagraphFormatUpdate) IsParagraphFormatBase() bool

func (ParagraphFormatUpdate) IsParagraphFormatUpdate ¶

func (ParagraphFormatUpdate) IsParagraphFormatUpdate() bool

func (*ParagraphFormatUpdate) SetAddSpaceBetweenFarEastAndAlpha ¶

func (obj *ParagraphFormatUpdate) SetAddSpaceBetweenFarEastAndAlpha(value *bool)

func (*ParagraphFormatUpdate) SetAddSpaceBetweenFarEastAndDigit ¶

func (obj *ParagraphFormatUpdate) SetAddSpaceBetweenFarEastAndDigit(value *bool)

func (*ParagraphFormatUpdate) SetAlignment ¶

func (obj *ParagraphFormatUpdate) SetAlignment(value *string)

func (*ParagraphFormatUpdate) SetBidi ¶

func (obj *ParagraphFormatUpdate) SetBidi(value *bool)

func (*ParagraphFormatUpdate) SetDropCapPosition ¶

func (obj *ParagraphFormatUpdate) SetDropCapPosition(value *string)

func (*ParagraphFormatUpdate) SetFirstLineIndent ¶

func (obj *ParagraphFormatUpdate) SetFirstLineIndent(value *float64)

func (*ParagraphFormatUpdate) SetKeepTogether ¶

func (obj *ParagraphFormatUpdate) SetKeepTogether(value *bool)

func (*ParagraphFormatUpdate) SetKeepWithNext ¶

func (obj *ParagraphFormatUpdate) SetKeepWithNext(value *bool)

func (*ParagraphFormatUpdate) SetLeftIndent ¶

func (obj *ParagraphFormatUpdate) SetLeftIndent(value *float64)

func (*ParagraphFormatUpdate) SetLineSpacing ¶

func (obj *ParagraphFormatUpdate) SetLineSpacing(value *float64)

func (*ParagraphFormatUpdate) SetLineSpacingRule ¶

func (obj *ParagraphFormatUpdate) SetLineSpacingRule(value *string)

func (*ParagraphFormatUpdate) SetLinesToDrop ¶

func (obj *ParagraphFormatUpdate) SetLinesToDrop(value *int32)
func (obj *ParagraphFormatUpdate) SetLink(value IWordsApiLink)

func (*ParagraphFormatUpdate) SetNoSpaceBetweenParagraphsOfSameStyle ¶

func (obj *ParagraphFormatUpdate) SetNoSpaceBetweenParagraphsOfSameStyle(value *bool)

func (*ParagraphFormatUpdate) SetOutlineLevel ¶

func (obj *ParagraphFormatUpdate) SetOutlineLevel(value *string)

func (*ParagraphFormatUpdate) SetPageBreakBefore ¶

func (obj *ParagraphFormatUpdate) SetPageBreakBefore(value *bool)

func (*ParagraphFormatUpdate) SetRightIndent ¶

func (obj *ParagraphFormatUpdate) SetRightIndent(value *float64)

func (*ParagraphFormatUpdate) SetShading ¶

func (obj *ParagraphFormatUpdate) SetShading(value IShading)

func (*ParagraphFormatUpdate) SetSpaceAfter ¶

func (obj *ParagraphFormatUpdate) SetSpaceAfter(value *float64)

func (*ParagraphFormatUpdate) SetSpaceAfterAuto ¶

func (obj *ParagraphFormatUpdate) SetSpaceAfterAuto(value *bool)

func (*ParagraphFormatUpdate) SetSpaceBefore ¶

func (obj *ParagraphFormatUpdate) SetSpaceBefore(value *float64)

func (*ParagraphFormatUpdate) SetSpaceBeforeAuto ¶

func (obj *ParagraphFormatUpdate) SetSpaceBeforeAuto(value *bool)

func (*ParagraphFormatUpdate) SetStyleIdentifier ¶

func (obj *ParagraphFormatUpdate) SetStyleIdentifier(value *string)

func (*ParagraphFormatUpdate) SetStyleName ¶

func (obj *ParagraphFormatUpdate) SetStyleName(value *string)

func (*ParagraphFormatUpdate) SetSuppressAutoHyphens ¶

func (obj *ParagraphFormatUpdate) SetSuppressAutoHyphens(value *bool)

func (*ParagraphFormatUpdate) SetSuppressLineNumbers ¶

func (obj *ParagraphFormatUpdate) SetSuppressLineNumbers(value *bool)

func (*ParagraphFormatUpdate) SetWidowControl ¶

func (obj *ParagraphFormatUpdate) SetWidowControl(value *bool)

func (*ParagraphFormatUpdate) Validate ¶

func (obj *ParagraphFormatUpdate) Validate() error

type ParagraphInsert ¶

type ParagraphInsert struct {
	// DTO container with a paragraph's text.
	Text *string `json:"Text,omitempty"`

	// DTO container with a paragraph's text.
	Position IPosition `json:"Position,omitempty"`
}

func (*ParagraphInsert) CollectFilesContent ¶

func (obj *ParagraphInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ParagraphInsert) Deserialize ¶

func (obj *ParagraphInsert) Deserialize(json map[string]interface{})

func (*ParagraphInsert) GetPosition ¶

func (obj *ParagraphInsert) GetPosition() IPosition

func (*ParagraphInsert) GetText ¶

func (obj *ParagraphInsert) GetText() *string

func (*ParagraphInsert) Initialize ¶

func (obj *ParagraphInsert) Initialize()

func (ParagraphInsert) IsParagraphInsert ¶

func (ParagraphInsert) IsParagraphInsert() bool

func (*ParagraphInsert) SetPosition ¶

func (obj *ParagraphInsert) SetPosition(value IPosition)

func (*ParagraphInsert) SetText ¶

func (obj *ParagraphInsert) SetText(value *string)

func (*ParagraphInsert) Validate ¶

func (obj *ParagraphInsert) Validate() error
type ParagraphLink struct {
	// Paragraph link element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Paragraph link element.
	NodeId *string `json:"NodeId,omitempty"`

	// Paragraph link element.
	Text *string `json:"Text,omitempty"`
}

func (*ParagraphLink) CollectFilesContent ¶

func (obj *ParagraphLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ParagraphLink) Deserialize ¶

func (obj *ParagraphLink) Deserialize(json map[string]interface{})
func (obj *ParagraphLink) GetLink() IWordsApiLink

func (*ParagraphLink) GetNodeId ¶

func (obj *ParagraphLink) GetNodeId() *string

func (*ParagraphLink) GetText ¶

func (obj *ParagraphLink) GetText() *string

func (*ParagraphLink) Initialize ¶

func (obj *ParagraphLink) Initialize()

func (ParagraphLink) IsLinkElement ¶

func (ParagraphLink) IsLinkElement() bool
func (ParagraphLink) IsNodeLink() bool
func (ParagraphLink) IsParagraphLink() bool
func (obj *ParagraphLink) SetLink(value IWordsApiLink)

func (*ParagraphLink) SetNodeId ¶

func (obj *ParagraphLink) SetNodeId(value *string)

func (*ParagraphLink) SetText ¶

func (obj *ParagraphLink) SetText(value *string)

func (*ParagraphLink) Validate ¶

func (obj *ParagraphLink) Validate() error

type ParagraphLinkCollection ¶

type ParagraphLinkCollection struct {
	// The collection of paragraph's links.
	Link IWordsApiLink `json:"Link,omitempty"`

	// The collection of paragraph's links.
	ParagraphLinkList []IParagraphLink `json:"ParagraphLinkList,omitempty"`
}

func (*ParagraphLinkCollection) CollectFilesContent ¶

func (obj *ParagraphLinkCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ParagraphLinkCollection) Deserialize ¶

func (obj *ParagraphLinkCollection) Deserialize(json map[string]interface{})
func (obj *ParagraphLinkCollection) GetLink() IWordsApiLink
func (obj *ParagraphLinkCollection) GetParagraphLinkList() []IParagraphLink

func (*ParagraphLinkCollection) Initialize ¶

func (obj *ParagraphLinkCollection) Initialize()

func (ParagraphLinkCollection) IsLinkElement ¶

func (ParagraphLinkCollection) IsLinkElement() bool

func (ParagraphLinkCollection) IsParagraphLinkCollection ¶

func (ParagraphLinkCollection) IsParagraphLinkCollection() bool
func (obj *ParagraphLinkCollection) SetLink(value IWordsApiLink)
func (obj *ParagraphLinkCollection) SetParagraphLinkList(value []IParagraphLink)

func (*ParagraphLinkCollection) Validate ¶

func (obj *ParagraphLinkCollection) Validate() error

type ParagraphLinkCollectionResponse ¶

type ParagraphLinkCollectionResponse struct {
	// The REST response with a collection of paragraphs.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of paragraphs.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs" REST API requests.
	Paragraphs IParagraphLinkCollection `json:"Paragraphs,omitempty"`
}

func (*ParagraphLinkCollectionResponse) CollectFilesContent ¶

func (obj *ParagraphLinkCollectionResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ParagraphLinkCollectionResponse) Deserialize ¶

func (obj *ParagraphLinkCollectionResponse) Deserialize(json map[string]interface{})

func (*ParagraphLinkCollectionResponse) GetParagraphs ¶

func (*ParagraphLinkCollectionResponse) GetRequestId ¶

func (obj *ParagraphLinkCollectionResponse) GetRequestId() *string

func (*ParagraphLinkCollectionResponse) Initialize ¶

func (obj *ParagraphLinkCollectionResponse) Initialize()

func (ParagraphLinkCollectionResponse) IsParagraphLinkCollectionResponse ¶

func (ParagraphLinkCollectionResponse) IsParagraphLinkCollectionResponse() bool

func (ParagraphLinkCollectionResponse) IsWordsResponse ¶

func (ParagraphLinkCollectionResponse) IsWordsResponse() bool

func (*ParagraphLinkCollectionResponse) SetParagraphs ¶

func (*ParagraphLinkCollectionResponse) SetRequestId ¶

func (obj *ParagraphLinkCollectionResponse) SetRequestId(value *string)

func (*ParagraphLinkCollectionResponse) Validate ¶

func (obj *ParagraphLinkCollectionResponse) Validate() error

type ParagraphListFormatResponse ¶

type ParagraphListFormatResponse struct {
	// The REST response with a list format for a paragraph.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/listFormat" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a list format for a paragraph.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/listFormat" REST API requests.
	ListFormat IListFormat `json:"ListFormat,omitempty"`
}

func (*ParagraphListFormatResponse) CollectFilesContent ¶

func (obj *ParagraphListFormatResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ParagraphListFormatResponse) Deserialize ¶

func (obj *ParagraphListFormatResponse) Deserialize(json map[string]interface{})

func (*ParagraphListFormatResponse) GetListFormat ¶

func (obj *ParagraphListFormatResponse) GetListFormat() IListFormat

func (*ParagraphListFormatResponse) GetRequestId ¶

func (obj *ParagraphListFormatResponse) GetRequestId() *string

func (*ParagraphListFormatResponse) Initialize ¶

func (obj *ParagraphListFormatResponse) Initialize()

func (ParagraphListFormatResponse) IsParagraphListFormatResponse ¶

func (ParagraphListFormatResponse) IsParagraphListFormatResponse() bool

func (ParagraphListFormatResponse) IsWordsResponse ¶

func (ParagraphListFormatResponse) IsWordsResponse() bool

func (*ParagraphListFormatResponse) SetListFormat ¶

func (obj *ParagraphListFormatResponse) SetListFormat(value IListFormat)

func (*ParagraphListFormatResponse) SetRequestId ¶

func (obj *ParagraphListFormatResponse) SetRequestId(value *string)

func (*ParagraphListFormatResponse) Validate ¶

func (obj *ParagraphListFormatResponse) Validate() error

type ParagraphResponse ¶

type ParagraphResponse struct {
	// The REST response with a paragraph.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a paragraph.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}" REST API requests.
	Paragraph IParagraph `json:"Paragraph,omitempty"`
}

func (*ParagraphResponse) CollectFilesContent ¶

func (obj *ParagraphResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ParagraphResponse) Deserialize ¶

func (obj *ParagraphResponse) Deserialize(json map[string]interface{})

func (*ParagraphResponse) GetParagraph ¶

func (obj *ParagraphResponse) GetParagraph() IParagraph

func (*ParagraphResponse) GetRequestId ¶

func (obj *ParagraphResponse) GetRequestId() *string

func (*ParagraphResponse) Initialize ¶

func (obj *ParagraphResponse) Initialize()

func (ParagraphResponse) IsParagraphResponse ¶

func (ParagraphResponse) IsParagraphResponse() bool

func (ParagraphResponse) IsWordsResponse ¶

func (ParagraphResponse) IsWordsResponse() bool

func (*ParagraphResponse) SetParagraph ¶

func (obj *ParagraphResponse) SetParagraph(value IParagraph)

func (*ParagraphResponse) SetRequestId ¶

func (obj *ParagraphResponse) SetRequestId(value *string)

func (*ParagraphResponse) Validate ¶

func (obj *ParagraphResponse) Validate() error

type PclSaveOptionsData ¶

type PclSaveOptionsData struct {
	// Container class for pcl save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for pcl save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for pcl save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for pcl save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for pcl save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for pcl save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for pcl save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for pcl save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for pcl save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for pcl save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for pcl save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for pcl save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for pcl save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for pcl save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for pcl save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for pcl save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for pcl save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for pcl save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for pcl save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for pcl save options.
	FalllbackFontName *string `json:"FalllbackFontName,omitempty"`

	// Container class for pcl save options.
	RasterizeTransformedElements *bool `json:"RasterizeTransformedElements,omitempty"`

	// Container class for pcl save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*PclSaveOptionsData) CollectFilesContent ¶

func (obj *PclSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PclSaveOptionsData) Deserialize ¶

func (obj *PclSaveOptionsData) Deserialize(json map[string]interface{})

func (*PclSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *PclSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*PclSaveOptionsData) GetColorMode ¶

func (obj *PclSaveOptionsData) GetColorMode() *string

func (*PclSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *PclSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*PclSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *PclSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*PclSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *PclSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*PclSaveOptionsData) GetDmlRenderingMode ¶

func (obj *PclSaveOptionsData) GetDmlRenderingMode() *string

func (*PclSaveOptionsData) GetFalllbackFontName ¶

func (obj *PclSaveOptionsData) GetFalllbackFontName() *string

func (*PclSaveOptionsData) GetFileName ¶

func (obj *PclSaveOptionsData) GetFileName() *string

func (*PclSaveOptionsData) GetImlRenderingMode ¶

func (obj *PclSaveOptionsData) GetImlRenderingMode() *string

func (*PclSaveOptionsData) GetJpegQuality ¶

func (obj *PclSaveOptionsData) GetJpegQuality() *int32

func (*PclSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *PclSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*PclSaveOptionsData) GetNumeralFormat ¶

func (obj *PclSaveOptionsData) GetNumeralFormat() *string

func (*PclSaveOptionsData) GetOptimizeOutput ¶

func (obj *PclSaveOptionsData) GetOptimizeOutput() *bool

func (*PclSaveOptionsData) GetPageCount ¶

func (obj *PclSaveOptionsData) GetPageCount() *int32

func (*PclSaveOptionsData) GetPageIndex ¶

func (obj *PclSaveOptionsData) GetPageIndex() *int32

func (*PclSaveOptionsData) GetRasterizeTransformedElements ¶

func (obj *PclSaveOptionsData) GetRasterizeTransformedElements() *bool

func (*PclSaveOptionsData) GetSaveFormat ¶

func (obj *PclSaveOptionsData) GetSaveFormat() *string

func (*PclSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *PclSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*PclSaveOptionsData) GetUpdateFields ¶

func (obj *PclSaveOptionsData) GetUpdateFields() *bool

func (*PclSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *PclSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*PclSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *PclSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*PclSaveOptionsData) GetZipOutput ¶

func (obj *PclSaveOptionsData) GetZipOutput() *bool

func (*PclSaveOptionsData) Initialize ¶

func (obj *PclSaveOptionsData) Initialize()

func (PclSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (PclSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (PclSaveOptionsData) IsPclSaveOptionsData ¶

func (PclSaveOptionsData) IsPclSaveOptionsData() bool

func (PclSaveOptionsData) IsSaveOptionsData ¶

func (PclSaveOptionsData) IsSaveOptionsData() bool

func (*PclSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *PclSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*PclSaveOptionsData) SetColorMode ¶

func (obj *PclSaveOptionsData) SetColorMode(value *string)

func (*PclSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *PclSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*PclSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *PclSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*PclSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *PclSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*PclSaveOptionsData) SetDmlRenderingMode ¶

func (obj *PclSaveOptionsData) SetDmlRenderingMode(value *string)

func (*PclSaveOptionsData) SetFalllbackFontName ¶

func (obj *PclSaveOptionsData) SetFalllbackFontName(value *string)

func (*PclSaveOptionsData) SetFileName ¶

func (obj *PclSaveOptionsData) SetFileName(value *string)

func (*PclSaveOptionsData) SetImlRenderingMode ¶

func (obj *PclSaveOptionsData) SetImlRenderingMode(value *string)

func (*PclSaveOptionsData) SetJpegQuality ¶

func (obj *PclSaveOptionsData) SetJpegQuality(value *int32)

func (*PclSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *PclSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*PclSaveOptionsData) SetNumeralFormat ¶

func (obj *PclSaveOptionsData) SetNumeralFormat(value *string)

func (*PclSaveOptionsData) SetOptimizeOutput ¶

func (obj *PclSaveOptionsData) SetOptimizeOutput(value *bool)

func (*PclSaveOptionsData) SetPageCount ¶

func (obj *PclSaveOptionsData) SetPageCount(value *int32)

func (*PclSaveOptionsData) SetPageIndex ¶

func (obj *PclSaveOptionsData) SetPageIndex(value *int32)

func (*PclSaveOptionsData) SetRasterizeTransformedElements ¶

func (obj *PclSaveOptionsData) SetRasterizeTransformedElements(value *bool)

func (*PclSaveOptionsData) SetSaveFormat ¶

func (obj *PclSaveOptionsData) SetSaveFormat(value *string)

func (*PclSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *PclSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*PclSaveOptionsData) SetUpdateFields ¶

func (obj *PclSaveOptionsData) SetUpdateFields(value *bool)

func (*PclSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *PclSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*PclSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *PclSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*PclSaveOptionsData) SetZipOutput ¶

func (obj *PclSaveOptionsData) SetZipOutput(value *bool)

func (*PclSaveOptionsData) Validate ¶

func (obj *PclSaveOptionsData) Validate() error

type PdfDigitalSignatureDetailsData ¶

type PdfDigitalSignatureDetailsData struct {
	// Container class for details of digital signature.
	CertificateFilename *string `json:"CertificateFilename,omitempty"`

	// Container class for details of digital signature.
	HashAlgorithm *string `json:"HashAlgorithm,omitempty"`

	// Container class for details of digital signature.
	Location *string `json:"Location,omitempty"`

	// Container class for details of digital signature.
	Reason *string `json:"Reason,omitempty"`

	// Container class for details of digital signature.
	SignatureDate *Time `json:"SignatureDate,omitempty"`
}

func (*PdfDigitalSignatureDetailsData) CollectFilesContent ¶

func (obj *PdfDigitalSignatureDetailsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PdfDigitalSignatureDetailsData) Deserialize ¶

func (obj *PdfDigitalSignatureDetailsData) Deserialize(json map[string]interface{})

func (*PdfDigitalSignatureDetailsData) GetCertificateFilename ¶

func (obj *PdfDigitalSignatureDetailsData) GetCertificateFilename() *string

func (*PdfDigitalSignatureDetailsData) GetHashAlgorithm ¶

func (obj *PdfDigitalSignatureDetailsData) GetHashAlgorithm() *string

func (*PdfDigitalSignatureDetailsData) GetLocation ¶

func (obj *PdfDigitalSignatureDetailsData) GetLocation() *string

func (*PdfDigitalSignatureDetailsData) GetReason ¶

func (obj *PdfDigitalSignatureDetailsData) GetReason() *string

func (*PdfDigitalSignatureDetailsData) GetSignatureDate ¶

func (obj *PdfDigitalSignatureDetailsData) GetSignatureDate() *Time

func (*PdfDigitalSignatureDetailsData) Initialize ¶

func (obj *PdfDigitalSignatureDetailsData) Initialize()

func (PdfDigitalSignatureDetailsData) IsPdfDigitalSignatureDetailsData ¶

func (PdfDigitalSignatureDetailsData) IsPdfDigitalSignatureDetailsData() bool

func (*PdfDigitalSignatureDetailsData) SetCertificateFilename ¶

func (obj *PdfDigitalSignatureDetailsData) SetCertificateFilename(value *string)

func (*PdfDigitalSignatureDetailsData) SetHashAlgorithm ¶

func (obj *PdfDigitalSignatureDetailsData) SetHashAlgorithm(value *string)

func (*PdfDigitalSignatureDetailsData) SetLocation ¶

func (obj *PdfDigitalSignatureDetailsData) SetLocation(value *string)

func (*PdfDigitalSignatureDetailsData) SetReason ¶

func (obj *PdfDigitalSignatureDetailsData) SetReason(value *string)

func (*PdfDigitalSignatureDetailsData) SetSignatureDate ¶

func (obj *PdfDigitalSignatureDetailsData) SetSignatureDate(value *Time)

func (*PdfDigitalSignatureDetailsData) Validate ¶

func (obj *PdfDigitalSignatureDetailsData) Validate() error

type PdfEncryptionDetailsData ¶

type PdfEncryptionDetailsData struct {
	// Container class for details of encryption.
	OwnerPassword *string `json:"OwnerPassword,omitempty"`

	// Container class for details of encryption.
	Permissions []string `json:"Permissions,omitempty"`

	// Container class for details of encryption.
	UserPassword *string `json:"UserPassword,omitempty"`
}

func (*PdfEncryptionDetailsData) CollectFilesContent ¶

func (obj *PdfEncryptionDetailsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PdfEncryptionDetailsData) Deserialize ¶

func (obj *PdfEncryptionDetailsData) Deserialize(json map[string]interface{})

func (*PdfEncryptionDetailsData) GetOwnerPassword ¶

func (obj *PdfEncryptionDetailsData) GetOwnerPassword() *string

func (*PdfEncryptionDetailsData) GetPermissions ¶

func (obj *PdfEncryptionDetailsData) GetPermissions() []string

func (*PdfEncryptionDetailsData) GetUserPassword ¶

func (obj *PdfEncryptionDetailsData) GetUserPassword() *string

func (*PdfEncryptionDetailsData) Initialize ¶

func (obj *PdfEncryptionDetailsData) Initialize()

func (PdfEncryptionDetailsData) IsPdfEncryptionDetailsData ¶

func (PdfEncryptionDetailsData) IsPdfEncryptionDetailsData() bool

func (*PdfEncryptionDetailsData) SetOwnerPassword ¶

func (obj *PdfEncryptionDetailsData) SetOwnerPassword(value *string)

func (*PdfEncryptionDetailsData) SetPermissions ¶

func (obj *PdfEncryptionDetailsData) SetPermissions(value []string)

func (*PdfEncryptionDetailsData) SetUserPassword ¶

func (obj *PdfEncryptionDetailsData) SetUserPassword(value *string)

func (*PdfEncryptionDetailsData) Validate ¶

func (obj *PdfEncryptionDetailsData) Validate() error

type PdfPermissions ¶

type PdfPermissions string

Specifies the operations that are allowed to a user on an encrypted PDF document.

const (
	DISALLOWALL                 PdfPermissions = "DisallowAll"
	PRINTING                    PdfPermissions = "Printing"
	MODIFYCONTENTS              PdfPermissions = "ModifyContents"
	CONTENTCOPY                 PdfPermissions = "ContentCopy"
	MODIFYANNOTATIONS           PdfPermissions = "ModifyAnnotations"
	FILLIN                      PdfPermissions = "FillIn"
	CONTENTCOPYFORACCESSIBILITY PdfPermissions = "ContentCopyForAccessibility"
	DOCUMENTASSEMBLY            PdfPermissions = "DocumentAssembly"
	HIGHRESOLUTIONPRINTING      PdfPermissions = "HighResolutionPrinting"
	ALLOWALL                    PdfPermissions = "AllowAll"
)

List of PdfPermissions

type PdfSaveOptionsData ¶

type PdfSaveOptionsData struct {
	// Container class for pdf save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for pdf save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for pdf save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for pdf save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for pdf save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for pdf save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for pdf save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for pdf save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for pdf save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for pdf save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for pdf save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for pdf save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for pdf save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for pdf save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for pdf save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for pdf save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for pdf save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for pdf save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for pdf save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for pdf save options.
	CacheBackgroundGraphics *bool `json:"CacheBackgroundGraphics,omitempty"`

	// Container class for pdf save options.
	Compliance *string `json:"Compliance,omitempty"`

	// Container class for pdf save options.
	CreateNoteHyperlinks *bool `json:"CreateNoteHyperlinks,omitempty"`

	// Container class for pdf save options.
	CustomPropertiesExport *string `json:"CustomPropertiesExport,omitempty"`

	// Container class for pdf save options.
	DigitalSignatureDetails IPdfDigitalSignatureDetailsData `json:"DigitalSignatureDetails,omitempty"`

	// Container class for pdf save options.
	DisplayDocTitle *bool `json:"DisplayDocTitle,omitempty"`

	// Container class for pdf save options.
	DownsampleOptions IDownsampleOptionsData `json:"DownsampleOptions,omitempty"`

	// Container class for pdf save options.
	EmbedAttachments *bool `json:"EmbedAttachments,omitempty"`

	// Container class for pdf save options.
	EmbedFullFonts *bool `json:"EmbedFullFonts,omitempty"`

	// Container class for pdf save options.
	EncryptionDetails IPdfEncryptionDetailsData `json:"EncryptionDetails,omitempty"`

	// Container class for pdf save options.
	ExportDocumentStructure *bool `json:"ExportDocumentStructure,omitempty"`

	// Container class for pdf save options.
	ExportLanguageToSpanTag *bool `json:"ExportLanguageToSpanTag,omitempty"`

	// Container class for pdf save options.
	FontEmbeddingMode *string `json:"FontEmbeddingMode,omitempty"`

	// Container class for pdf save options.
	HeaderFooterBookmarksExportMode *string `json:"HeaderFooterBookmarksExportMode,omitempty"`

	// Container class for pdf save options.
	ImageColorSpaceExportMode *string `json:"ImageColorSpaceExportMode,omitempty"`

	// Container class for pdf save options.
	ImageCompression *string `json:"ImageCompression,omitempty"`

	// Container class for pdf save options.
	InterpolateImages *bool `json:"InterpolateImages,omitempty"`

	// Container class for pdf save options.
	OpenHyperlinksInNewWindow *bool `json:"OpenHyperlinksInNewWindow,omitempty"`

	// Container class for pdf save options.
	OutlineOptions IOutlineOptionsData `json:"OutlineOptions,omitempty"`

	// Container class for pdf save options.
	PageMode *string `json:"PageMode,omitempty"`

	// Container class for pdf save options.
	PreblendImages *bool `json:"PreblendImages,omitempty"`

	// Container class for pdf save options.
	PreserveFormFields *bool `json:"PreserveFormFields,omitempty"`

	// Container class for pdf save options.
	TextCompression *string `json:"TextCompression,omitempty"`

	// Container class for pdf save options.
	UseBookFoldPrintingSettings *bool `json:"UseBookFoldPrintingSettings,omitempty"`

	// Container class for pdf save options.
	UseCoreFonts *bool `json:"UseCoreFonts,omitempty"`

	// Container class for pdf save options.
	ZoomBehavior *string `json:"ZoomBehavior,omitempty"`

	// Container class for pdf save options.
	ZoomFactor *int32 `json:"ZoomFactor,omitempty"`

	// Container class for pdf save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*PdfSaveOptionsData) CollectFilesContent ¶

func (obj *PdfSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PdfSaveOptionsData) Deserialize ¶

func (obj *PdfSaveOptionsData) Deserialize(json map[string]interface{})

func (*PdfSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *PdfSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*PdfSaveOptionsData) GetCacheBackgroundGraphics ¶

func (obj *PdfSaveOptionsData) GetCacheBackgroundGraphics() *bool

func (*PdfSaveOptionsData) GetColorMode ¶

func (obj *PdfSaveOptionsData) GetColorMode() *string

func (*PdfSaveOptionsData) GetCompliance ¶

func (obj *PdfSaveOptionsData) GetCompliance() *string
func (obj *PdfSaveOptionsData) GetCreateNoteHyperlinks() *bool

func (*PdfSaveOptionsData) GetCustomPropertiesExport ¶

func (obj *PdfSaveOptionsData) GetCustomPropertiesExport() *string

func (*PdfSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *PdfSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*PdfSaveOptionsData) GetDigitalSignatureDetails ¶

func (obj *PdfSaveOptionsData) GetDigitalSignatureDetails() IPdfDigitalSignatureDetailsData

func (*PdfSaveOptionsData) GetDisplayDocTitle ¶

func (obj *PdfSaveOptionsData) GetDisplayDocTitle() *bool

func (*PdfSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *PdfSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*PdfSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *PdfSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*PdfSaveOptionsData) GetDmlRenderingMode ¶

func (obj *PdfSaveOptionsData) GetDmlRenderingMode() *string

func (*PdfSaveOptionsData) GetDownsampleOptions ¶

func (obj *PdfSaveOptionsData) GetDownsampleOptions() IDownsampleOptionsData

func (*PdfSaveOptionsData) GetEmbedAttachments ¶

func (obj *PdfSaveOptionsData) GetEmbedAttachments() *bool

func (*PdfSaveOptionsData) GetEmbedFullFonts ¶

func (obj *PdfSaveOptionsData) GetEmbedFullFonts() *bool

func (*PdfSaveOptionsData) GetEncryptionDetails ¶

func (obj *PdfSaveOptionsData) GetEncryptionDetails() IPdfEncryptionDetailsData

func (*PdfSaveOptionsData) GetExportDocumentStructure ¶

func (obj *PdfSaveOptionsData) GetExportDocumentStructure() *bool

func (*PdfSaveOptionsData) GetExportLanguageToSpanTag ¶

func (obj *PdfSaveOptionsData) GetExportLanguageToSpanTag() *bool

func (*PdfSaveOptionsData) GetFileName ¶

func (obj *PdfSaveOptionsData) GetFileName() *string

func (*PdfSaveOptionsData) GetFontEmbeddingMode ¶

func (obj *PdfSaveOptionsData) GetFontEmbeddingMode() *string

func (*PdfSaveOptionsData) GetHeaderFooterBookmarksExportMode ¶

func (obj *PdfSaveOptionsData) GetHeaderFooterBookmarksExportMode() *string

func (*PdfSaveOptionsData) GetImageColorSpaceExportMode ¶

func (obj *PdfSaveOptionsData) GetImageColorSpaceExportMode() *string

func (*PdfSaveOptionsData) GetImageCompression ¶

func (obj *PdfSaveOptionsData) GetImageCompression() *string

func (*PdfSaveOptionsData) GetImlRenderingMode ¶

func (obj *PdfSaveOptionsData) GetImlRenderingMode() *string

func (*PdfSaveOptionsData) GetInterpolateImages ¶

func (obj *PdfSaveOptionsData) GetInterpolateImages() *bool

func (*PdfSaveOptionsData) GetJpegQuality ¶

func (obj *PdfSaveOptionsData) GetJpegQuality() *int32

func (*PdfSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *PdfSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*PdfSaveOptionsData) GetNumeralFormat ¶

func (obj *PdfSaveOptionsData) GetNumeralFormat() *string

func (*PdfSaveOptionsData) GetOpenHyperlinksInNewWindow ¶

func (obj *PdfSaveOptionsData) GetOpenHyperlinksInNewWindow() *bool

func (*PdfSaveOptionsData) GetOptimizeOutput ¶

func (obj *PdfSaveOptionsData) GetOptimizeOutput() *bool

func (*PdfSaveOptionsData) GetOutlineOptions ¶

func (obj *PdfSaveOptionsData) GetOutlineOptions() IOutlineOptionsData

func (*PdfSaveOptionsData) GetPageCount ¶

func (obj *PdfSaveOptionsData) GetPageCount() *int32

func (*PdfSaveOptionsData) GetPageIndex ¶

func (obj *PdfSaveOptionsData) GetPageIndex() *int32

func (*PdfSaveOptionsData) GetPageMode ¶

func (obj *PdfSaveOptionsData) GetPageMode() *string

func (*PdfSaveOptionsData) GetPreblendImages ¶

func (obj *PdfSaveOptionsData) GetPreblendImages() *bool

func (*PdfSaveOptionsData) GetPreserveFormFields ¶

func (obj *PdfSaveOptionsData) GetPreserveFormFields() *bool

func (*PdfSaveOptionsData) GetSaveFormat ¶

func (obj *PdfSaveOptionsData) GetSaveFormat() *string

func (*PdfSaveOptionsData) GetTextCompression ¶

func (obj *PdfSaveOptionsData) GetTextCompression() *string

func (*PdfSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *PdfSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*PdfSaveOptionsData) GetUpdateFields ¶

func (obj *PdfSaveOptionsData) GetUpdateFields() *bool

func (*PdfSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *PdfSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*PdfSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *PdfSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*PdfSaveOptionsData) GetUseBookFoldPrintingSettings ¶

func (obj *PdfSaveOptionsData) GetUseBookFoldPrintingSettings() *bool

func (*PdfSaveOptionsData) GetUseCoreFonts ¶

func (obj *PdfSaveOptionsData) GetUseCoreFonts() *bool

func (*PdfSaveOptionsData) GetZipOutput ¶

func (obj *PdfSaveOptionsData) GetZipOutput() *bool

func (*PdfSaveOptionsData) GetZoomBehavior ¶

func (obj *PdfSaveOptionsData) GetZoomBehavior() *string

func (*PdfSaveOptionsData) GetZoomFactor ¶

func (obj *PdfSaveOptionsData) GetZoomFactor() *int32

func (*PdfSaveOptionsData) Initialize ¶

func (obj *PdfSaveOptionsData) Initialize()

func (PdfSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (PdfSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (PdfSaveOptionsData) IsPdfSaveOptionsData ¶

func (PdfSaveOptionsData) IsPdfSaveOptionsData() bool

func (PdfSaveOptionsData) IsSaveOptionsData ¶

func (PdfSaveOptionsData) IsSaveOptionsData() bool

func (*PdfSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *PdfSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*PdfSaveOptionsData) SetCacheBackgroundGraphics ¶

func (obj *PdfSaveOptionsData) SetCacheBackgroundGraphics(value *bool)

func (*PdfSaveOptionsData) SetColorMode ¶

func (obj *PdfSaveOptionsData) SetColorMode(value *string)

func (*PdfSaveOptionsData) SetCompliance ¶

func (obj *PdfSaveOptionsData) SetCompliance(value *string)
func (obj *PdfSaveOptionsData) SetCreateNoteHyperlinks(value *bool)

func (*PdfSaveOptionsData) SetCustomPropertiesExport ¶

func (obj *PdfSaveOptionsData) SetCustomPropertiesExport(value *string)

func (*PdfSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *PdfSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*PdfSaveOptionsData) SetDigitalSignatureDetails ¶

func (obj *PdfSaveOptionsData) SetDigitalSignatureDetails(value IPdfDigitalSignatureDetailsData)

func (*PdfSaveOptionsData) SetDisplayDocTitle ¶

func (obj *PdfSaveOptionsData) SetDisplayDocTitle(value *bool)

func (*PdfSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *PdfSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*PdfSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *PdfSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*PdfSaveOptionsData) SetDmlRenderingMode ¶

func (obj *PdfSaveOptionsData) SetDmlRenderingMode(value *string)

func (*PdfSaveOptionsData) SetDownsampleOptions ¶

func (obj *PdfSaveOptionsData) SetDownsampleOptions(value IDownsampleOptionsData)

func (*PdfSaveOptionsData) SetEmbedAttachments ¶

func (obj *PdfSaveOptionsData) SetEmbedAttachments(value *bool)

func (*PdfSaveOptionsData) SetEmbedFullFonts ¶

func (obj *PdfSaveOptionsData) SetEmbedFullFonts(value *bool)

func (*PdfSaveOptionsData) SetEncryptionDetails ¶

func (obj *PdfSaveOptionsData) SetEncryptionDetails(value IPdfEncryptionDetailsData)

func (*PdfSaveOptionsData) SetExportDocumentStructure ¶

func (obj *PdfSaveOptionsData) SetExportDocumentStructure(value *bool)

func (*PdfSaveOptionsData) SetExportLanguageToSpanTag ¶

func (obj *PdfSaveOptionsData) SetExportLanguageToSpanTag(value *bool)

func (*PdfSaveOptionsData) SetFileName ¶

func (obj *PdfSaveOptionsData) SetFileName(value *string)

func (*PdfSaveOptionsData) SetFontEmbeddingMode ¶

func (obj *PdfSaveOptionsData) SetFontEmbeddingMode(value *string)

func (*PdfSaveOptionsData) SetHeaderFooterBookmarksExportMode ¶

func (obj *PdfSaveOptionsData) SetHeaderFooterBookmarksExportMode(value *string)

func (*PdfSaveOptionsData) SetImageColorSpaceExportMode ¶

func (obj *PdfSaveOptionsData) SetImageColorSpaceExportMode(value *string)

func (*PdfSaveOptionsData) SetImageCompression ¶

func (obj *PdfSaveOptionsData) SetImageCompression(value *string)

func (*PdfSaveOptionsData) SetImlRenderingMode ¶

func (obj *PdfSaveOptionsData) SetImlRenderingMode(value *string)

func (*PdfSaveOptionsData) SetInterpolateImages ¶

func (obj *PdfSaveOptionsData) SetInterpolateImages(value *bool)

func (*PdfSaveOptionsData) SetJpegQuality ¶

func (obj *PdfSaveOptionsData) SetJpegQuality(value *int32)

func (*PdfSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *PdfSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*PdfSaveOptionsData) SetNumeralFormat ¶

func (obj *PdfSaveOptionsData) SetNumeralFormat(value *string)

func (*PdfSaveOptionsData) SetOpenHyperlinksInNewWindow ¶

func (obj *PdfSaveOptionsData) SetOpenHyperlinksInNewWindow(value *bool)

func (*PdfSaveOptionsData) SetOptimizeOutput ¶

func (obj *PdfSaveOptionsData) SetOptimizeOutput(value *bool)

func (*PdfSaveOptionsData) SetOutlineOptions ¶

func (obj *PdfSaveOptionsData) SetOutlineOptions(value IOutlineOptionsData)

func (*PdfSaveOptionsData) SetPageCount ¶

func (obj *PdfSaveOptionsData) SetPageCount(value *int32)

func (*PdfSaveOptionsData) SetPageIndex ¶

func (obj *PdfSaveOptionsData) SetPageIndex(value *int32)

func (*PdfSaveOptionsData) SetPageMode ¶

func (obj *PdfSaveOptionsData) SetPageMode(value *string)

func (*PdfSaveOptionsData) SetPreblendImages ¶

func (obj *PdfSaveOptionsData) SetPreblendImages(value *bool)

func (*PdfSaveOptionsData) SetPreserveFormFields ¶

func (obj *PdfSaveOptionsData) SetPreserveFormFields(value *bool)

func (*PdfSaveOptionsData) SetSaveFormat ¶

func (obj *PdfSaveOptionsData) SetSaveFormat(value *string)

func (*PdfSaveOptionsData) SetTextCompression ¶

func (obj *PdfSaveOptionsData) SetTextCompression(value *string)

func (*PdfSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *PdfSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*PdfSaveOptionsData) SetUpdateFields ¶

func (obj *PdfSaveOptionsData) SetUpdateFields(value *bool)

func (*PdfSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *PdfSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*PdfSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *PdfSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*PdfSaveOptionsData) SetUseBookFoldPrintingSettings ¶

func (obj *PdfSaveOptionsData) SetUseBookFoldPrintingSettings(value *bool)

func (*PdfSaveOptionsData) SetUseCoreFonts ¶

func (obj *PdfSaveOptionsData) SetUseCoreFonts(value *bool)

func (*PdfSaveOptionsData) SetZipOutput ¶

func (obj *PdfSaveOptionsData) SetZipOutput(value *bool)

func (*PdfSaveOptionsData) SetZoomBehavior ¶

func (obj *PdfSaveOptionsData) SetZoomBehavior(value *string)

func (*PdfSaveOptionsData) SetZoomFactor ¶

func (obj *PdfSaveOptionsData) SetZoomFactor(value *int32)

func (*PdfSaveOptionsData) Validate ¶

func (obj *PdfSaveOptionsData) Validate() error

type PngSaveOptionsData ¶

type PngSaveOptionsData struct {
	// Container class for png save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for png save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for png save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for png save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for png save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for png save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for png save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for png save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for png save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for png save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for png save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for png save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for png save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for png save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for png save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for png save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for png save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for png save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for png save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for png save options.
	HorizontalResolution *float64 `json:"HorizontalResolution,omitempty"`

	// Container class for png save options.
	ImageBrightness *float64 `json:"ImageBrightness,omitempty"`

	// Container class for png save options.
	ImageColorMode *string `json:"ImageColorMode,omitempty"`

	// Container class for png save options.
	ImageContrast *float64 `json:"ImageContrast,omitempty"`

	// Container class for png save options.
	PaperColor *string `json:"PaperColor,omitempty"`

	// Container class for png save options.
	PixelFormat *string `json:"PixelFormat,omitempty"`

	// Container class for png save options.
	Resolution *float64 `json:"Resolution,omitempty"`

	// Container class for png save options.
	Scale *float64 `json:"Scale,omitempty"`

	// Container class for png save options.
	UseAntiAliasing *bool `json:"UseAntiAliasing,omitempty"`

	// Container class for png save options.
	UseHighQualityRendering *bool `json:"UseHighQualityRendering,omitempty"`

	// Container class for png save options.
	VerticalResolution *float64 `json:"VerticalResolution,omitempty"`

	// Container class for png save options.
	ImageHeight *int32 `json:"ImageHeight,omitempty"`

	// Container class for png save options.
	ImageWidth *int32 `json:"ImageWidth,omitempty"`

	// Container class for png save options.
	UseGdiEmfRenderer *bool `json:"UseGdiEmfRenderer,omitempty"`

	// Container class for png save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*PngSaveOptionsData) CollectFilesContent ¶

func (obj *PngSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PngSaveOptionsData) Deserialize ¶

func (obj *PngSaveOptionsData) Deserialize(json map[string]interface{})

func (*PngSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *PngSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*PngSaveOptionsData) GetColorMode ¶

func (obj *PngSaveOptionsData) GetColorMode() *string

func (*PngSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *PngSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*PngSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *PngSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*PngSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *PngSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*PngSaveOptionsData) GetDmlRenderingMode ¶

func (obj *PngSaveOptionsData) GetDmlRenderingMode() *string

func (*PngSaveOptionsData) GetFileName ¶

func (obj *PngSaveOptionsData) GetFileName() *string

func (*PngSaveOptionsData) GetHorizontalResolution ¶

func (obj *PngSaveOptionsData) GetHorizontalResolution() *float64

func (*PngSaveOptionsData) GetImageBrightness ¶

func (obj *PngSaveOptionsData) GetImageBrightness() *float64

func (*PngSaveOptionsData) GetImageColorMode ¶

func (obj *PngSaveOptionsData) GetImageColorMode() *string

func (*PngSaveOptionsData) GetImageContrast ¶

func (obj *PngSaveOptionsData) GetImageContrast() *float64

func (*PngSaveOptionsData) GetImageHeight ¶

func (obj *PngSaveOptionsData) GetImageHeight() *int32

func (*PngSaveOptionsData) GetImageWidth ¶

func (obj *PngSaveOptionsData) GetImageWidth() *int32

func (*PngSaveOptionsData) GetImlRenderingMode ¶

func (obj *PngSaveOptionsData) GetImlRenderingMode() *string

func (*PngSaveOptionsData) GetJpegQuality ¶

func (obj *PngSaveOptionsData) GetJpegQuality() *int32

func (*PngSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *PngSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*PngSaveOptionsData) GetNumeralFormat ¶

func (obj *PngSaveOptionsData) GetNumeralFormat() *string

func (*PngSaveOptionsData) GetOptimizeOutput ¶

func (obj *PngSaveOptionsData) GetOptimizeOutput() *bool

func (*PngSaveOptionsData) GetPageCount ¶

func (obj *PngSaveOptionsData) GetPageCount() *int32

func (*PngSaveOptionsData) GetPageIndex ¶

func (obj *PngSaveOptionsData) GetPageIndex() *int32

func (*PngSaveOptionsData) GetPaperColor ¶

func (obj *PngSaveOptionsData) GetPaperColor() *string

func (*PngSaveOptionsData) GetPixelFormat ¶

func (obj *PngSaveOptionsData) GetPixelFormat() *string

func (*PngSaveOptionsData) GetResolution ¶

func (obj *PngSaveOptionsData) GetResolution() *float64

func (*PngSaveOptionsData) GetSaveFormat ¶

func (obj *PngSaveOptionsData) GetSaveFormat() *string

func (*PngSaveOptionsData) GetScale ¶

func (obj *PngSaveOptionsData) GetScale() *float64

func (*PngSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *PngSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*PngSaveOptionsData) GetUpdateFields ¶

func (obj *PngSaveOptionsData) GetUpdateFields() *bool

func (*PngSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *PngSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*PngSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *PngSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*PngSaveOptionsData) GetUseAntiAliasing ¶

func (obj *PngSaveOptionsData) GetUseAntiAliasing() *bool

func (*PngSaveOptionsData) GetUseGdiEmfRenderer ¶

func (obj *PngSaveOptionsData) GetUseGdiEmfRenderer() *bool

func (*PngSaveOptionsData) GetUseHighQualityRendering ¶

func (obj *PngSaveOptionsData) GetUseHighQualityRendering() *bool

func (*PngSaveOptionsData) GetVerticalResolution ¶

func (obj *PngSaveOptionsData) GetVerticalResolution() *float64

func (*PngSaveOptionsData) GetZipOutput ¶

func (obj *PngSaveOptionsData) GetZipOutput() *bool

func (*PngSaveOptionsData) Initialize ¶

func (obj *PngSaveOptionsData) Initialize()

func (PngSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (PngSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (PngSaveOptionsData) IsImageSaveOptionsData ¶

func (PngSaveOptionsData) IsImageSaveOptionsData() bool

func (PngSaveOptionsData) IsPngSaveOptionsData ¶

func (PngSaveOptionsData) IsPngSaveOptionsData() bool

func (PngSaveOptionsData) IsSaveOptionsData ¶

func (PngSaveOptionsData) IsSaveOptionsData() bool

func (*PngSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *PngSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*PngSaveOptionsData) SetColorMode ¶

func (obj *PngSaveOptionsData) SetColorMode(value *string)

func (*PngSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *PngSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*PngSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *PngSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*PngSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *PngSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*PngSaveOptionsData) SetDmlRenderingMode ¶

func (obj *PngSaveOptionsData) SetDmlRenderingMode(value *string)

func (*PngSaveOptionsData) SetFileName ¶

func (obj *PngSaveOptionsData) SetFileName(value *string)

func (*PngSaveOptionsData) SetHorizontalResolution ¶

func (obj *PngSaveOptionsData) SetHorizontalResolution(value *float64)

func (*PngSaveOptionsData) SetImageBrightness ¶

func (obj *PngSaveOptionsData) SetImageBrightness(value *float64)

func (*PngSaveOptionsData) SetImageColorMode ¶

func (obj *PngSaveOptionsData) SetImageColorMode(value *string)

func (*PngSaveOptionsData) SetImageContrast ¶

func (obj *PngSaveOptionsData) SetImageContrast(value *float64)

func (*PngSaveOptionsData) SetImageHeight ¶

func (obj *PngSaveOptionsData) SetImageHeight(value *int32)

func (*PngSaveOptionsData) SetImageWidth ¶

func (obj *PngSaveOptionsData) SetImageWidth(value *int32)

func (*PngSaveOptionsData) SetImlRenderingMode ¶

func (obj *PngSaveOptionsData) SetImlRenderingMode(value *string)

func (*PngSaveOptionsData) SetJpegQuality ¶

func (obj *PngSaveOptionsData) SetJpegQuality(value *int32)

func (*PngSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *PngSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*PngSaveOptionsData) SetNumeralFormat ¶

func (obj *PngSaveOptionsData) SetNumeralFormat(value *string)

func (*PngSaveOptionsData) SetOptimizeOutput ¶

func (obj *PngSaveOptionsData) SetOptimizeOutput(value *bool)

func (*PngSaveOptionsData) SetPageCount ¶

func (obj *PngSaveOptionsData) SetPageCount(value *int32)

func (*PngSaveOptionsData) SetPageIndex ¶

func (obj *PngSaveOptionsData) SetPageIndex(value *int32)

func (*PngSaveOptionsData) SetPaperColor ¶

func (obj *PngSaveOptionsData) SetPaperColor(value *string)

func (*PngSaveOptionsData) SetPixelFormat ¶

func (obj *PngSaveOptionsData) SetPixelFormat(value *string)

func (*PngSaveOptionsData) SetResolution ¶

func (obj *PngSaveOptionsData) SetResolution(value *float64)

func (*PngSaveOptionsData) SetSaveFormat ¶

func (obj *PngSaveOptionsData) SetSaveFormat(value *string)

func (*PngSaveOptionsData) SetScale ¶

func (obj *PngSaveOptionsData) SetScale(value *float64)

func (*PngSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *PngSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*PngSaveOptionsData) SetUpdateFields ¶

func (obj *PngSaveOptionsData) SetUpdateFields(value *bool)

func (*PngSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *PngSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*PngSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *PngSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*PngSaveOptionsData) SetUseAntiAliasing ¶

func (obj *PngSaveOptionsData) SetUseAntiAliasing(value *bool)

func (*PngSaveOptionsData) SetUseGdiEmfRenderer ¶

func (obj *PngSaveOptionsData) SetUseGdiEmfRenderer(value *bool)

func (*PngSaveOptionsData) SetUseHighQualityRendering ¶

func (obj *PngSaveOptionsData) SetUseHighQualityRendering(value *bool)

func (*PngSaveOptionsData) SetVerticalResolution ¶

func (obj *PngSaveOptionsData) SetVerticalResolution(value *float64)

func (*PngSaveOptionsData) SetZipOutput ¶

func (obj *PngSaveOptionsData) SetZipOutput(value *bool)

func (*PngSaveOptionsData) Validate ¶

func (obj *PngSaveOptionsData) Validate() error

type PositionAfterNode ¶

type PositionAfterNode struct {
	// Describes the location of the node after specified node.
	NodeId *string `json:"NodeId,omitempty"`

	// Describes the location of the node after specified node.
	Type *string `json:"Type,omitempty"`
}

func (*PositionAfterNode) CollectFilesContent ¶

func (obj *PositionAfterNode) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PositionAfterNode) Deserialize ¶

func (obj *PositionAfterNode) Deserialize(json map[string]interface{})

func (*PositionAfterNode) GetNodeId ¶

func (obj *PositionAfterNode) GetNodeId() *string

func (*PositionAfterNode) GetType ¶

func (obj *PositionAfterNode) GetType() *string

func (*PositionAfterNode) Initialize ¶

func (obj *PositionAfterNode) Initialize()

func (PositionAfterNode) IsPosition ¶

func (PositionAfterNode) IsPosition() bool

func (PositionAfterNode) IsPositionAfterNode ¶

func (PositionAfterNode) IsPositionAfterNode() bool

func (*PositionAfterNode) SetNodeId ¶

func (obj *PositionAfterNode) SetNodeId(value *string)

func (*PositionAfterNode) SetType ¶

func (obj *PositionAfterNode) SetType(value *string)

func (*PositionAfterNode) Validate ¶

func (obj *PositionAfterNode) Validate() error

type PositionBeforeNode ¶

type PositionBeforeNode struct {
	// Describes the location of the node before specified node.
	NodeId *string `json:"NodeId,omitempty"`

	// Describes the location of the node before specified node.
	Type *string `json:"Type,omitempty"`
}

func (*PositionBeforeNode) CollectFilesContent ¶

func (obj *PositionBeforeNode) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PositionBeforeNode) Deserialize ¶

func (obj *PositionBeforeNode) Deserialize(json map[string]interface{})

func (*PositionBeforeNode) GetNodeId ¶

func (obj *PositionBeforeNode) GetNodeId() *string

func (*PositionBeforeNode) GetType ¶

func (obj *PositionBeforeNode) GetType() *string

func (*PositionBeforeNode) Initialize ¶

func (obj *PositionBeforeNode) Initialize()

func (PositionBeforeNode) IsPosition ¶

func (PositionBeforeNode) IsPosition() bool

func (PositionBeforeNode) IsPositionBeforeNode ¶

func (PositionBeforeNode) IsPositionBeforeNode() bool

func (*PositionBeforeNode) SetNodeId ¶

func (obj *PositionBeforeNode) SetNodeId(value *string)

func (*PositionBeforeNode) SetType ¶

func (obj *PositionBeforeNode) SetType(value *string)

func (*PositionBeforeNode) Validate ¶

func (obj *PositionBeforeNode) Validate() error

type PositionInsideNode ¶

type PositionInsideNode struct {
	// DTO container with a new position in the document tree.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with a new position in the document tree.
	Type *string `json:"Type,omitempty"`

	// DTO container with a new position in the document tree.
	Offset *int32 `json:"Offset,omitempty"`
}

func (*PositionInsideNode) CollectFilesContent ¶

func (obj *PositionInsideNode) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PositionInsideNode) Deserialize ¶

func (obj *PositionInsideNode) Deserialize(json map[string]interface{})

func (*PositionInsideNode) GetNodeId ¶

func (obj *PositionInsideNode) GetNodeId() *string

func (*PositionInsideNode) GetOffset ¶

func (obj *PositionInsideNode) GetOffset() *int32

func (*PositionInsideNode) GetType ¶

func (obj *PositionInsideNode) GetType() *string

func (*PositionInsideNode) Initialize ¶

func (obj *PositionInsideNode) Initialize()

func (PositionInsideNode) IsPosition ¶

func (PositionInsideNode) IsPosition() bool

func (PositionInsideNode) IsPositionInsideNode ¶

func (PositionInsideNode) IsPositionInsideNode() bool

func (*PositionInsideNode) SetNodeId ¶

func (obj *PositionInsideNode) SetNodeId(value *string)

func (*PositionInsideNode) SetOffset ¶

func (obj *PositionInsideNode) SetOffset(value *int32)

func (*PositionInsideNode) SetType ¶

func (obj *PositionInsideNode) SetType(value *string)

func (*PositionInsideNode) Validate ¶

func (obj *PositionInsideNode) Validate() error

type PreferredWidth ¶

type PreferredWidth struct {
	// DTO container with a preferred width value.
	Type *string `json:"Type,omitempty"`

	// DTO container with a preferred width value.
	Value *float64 `json:"Value,omitempty"`
}

func (*PreferredWidth) CollectFilesContent ¶

func (obj *PreferredWidth) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PreferredWidth) Deserialize ¶

func (obj *PreferredWidth) Deserialize(json map[string]interface{})

func (*PreferredWidth) GetType ¶

func (obj *PreferredWidth) GetType() *string

func (*PreferredWidth) GetValue ¶

func (obj *PreferredWidth) GetValue() *float64

func (*PreferredWidth) Initialize ¶

func (obj *PreferredWidth) Initialize()

func (PreferredWidth) IsPreferredWidth ¶

func (PreferredWidth) IsPreferredWidth() bool

func (*PreferredWidth) SetType ¶

func (obj *PreferredWidth) SetType(value *string)

func (*PreferredWidth) SetValue ¶

func (obj *PreferredWidth) SetValue(value *float64)

func (*PreferredWidth) Validate ¶

func (obj *PreferredWidth) Validate() error

type ProtectDocumentOnlineRequest ¶

type ProtectDocumentOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Use ProtectionRequestV2 model to provide protection options.
	ProtectionRequest IProtectionRequestBase
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

ProtectDocumentOnlineRequest contains request data for WordsApiService.ProtectDocumentOnline method.

func (*ProtectDocumentOnlineRequest) CreateRequestData ¶

func (data *ProtectDocumentOnlineRequest) CreateRequestData() (RequestData, error)

func (*ProtectDocumentOnlineRequest) CreateResponse ¶

func (data *ProtectDocumentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ProtectDocumentOnlineResponse ¶

type ProtectDocumentOnlineResponse struct {
	// The REST response with data on document's protection.
	Model IProtectionDataResponse

	// The document after modification.
	Document map[string]io.Reader
}

ProtectDocumentOnlineResponse struct Changes the document protection. The previous protection will be overwritten if it exist.

func (*ProtectDocumentOnlineResponse) GetDocument ¶

func (obj *ProtectDocumentOnlineResponse) GetDocument() map[string]io.Reader

func (*ProtectDocumentOnlineResponse) GetModel ¶

func (*ProtectDocumentOnlineResponse) SetDocument ¶

func (obj *ProtectDocumentOnlineResponse) SetDocument(value map[string]io.Reader)

func (*ProtectDocumentOnlineResponse) SetModel ¶

type ProtectDocumentRequest ¶

type ProtectDocumentRequest struct {
	// The filename of the input document.
	Name *string
	// Use ProtectionRequestV2 model to provide protection options.
	ProtectionRequest IProtectionRequestBase
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

ProtectDocumentRequest contains request data for WordsApiService.ProtectDocument method.

func (*ProtectDocumentRequest) CreateRequestData ¶

func (data *ProtectDocumentRequest) CreateRequestData() (RequestData, error)

func (*ProtectDocumentRequest) CreateResponse ¶

func (data *ProtectDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ProtectionData ¶

type ProtectionData struct {
	// Container for the data about protection of the document.
	ProtectionType *string `json:"ProtectionType,omitempty"`
}

func (*ProtectionData) CollectFilesContent ¶

func (obj *ProtectionData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ProtectionData) Deserialize ¶

func (obj *ProtectionData) Deserialize(json map[string]interface{})

func (*ProtectionData) GetProtectionType ¶

func (obj *ProtectionData) GetProtectionType() *string

func (*ProtectionData) Initialize ¶

func (obj *ProtectionData) Initialize()

func (ProtectionData) IsProtectionData ¶

func (ProtectionData) IsProtectionData() bool

func (*ProtectionData) SetProtectionType ¶

func (obj *ProtectionData) SetProtectionType(value *string)

func (*ProtectionData) Validate ¶

func (obj *ProtectionData) Validate() error

type ProtectionDataResponse ¶

type ProtectionDataResponse struct {
	// The REST response with data on document's protection.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with data on document's protection.
	DocumentLink IFileLink `json:"DocumentLink,omitempty"`

	// The REST response with data on document's protection.
	ProtectionData IProtectionData `json:"ProtectionData,omitempty"`
}

func (*ProtectionDataResponse) CollectFilesContent ¶

func (obj *ProtectionDataResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ProtectionDataResponse) Deserialize ¶

func (obj *ProtectionDataResponse) Deserialize(json map[string]interface{})
func (obj *ProtectionDataResponse) GetDocumentLink() IFileLink

func (*ProtectionDataResponse) GetProtectionData ¶

func (obj *ProtectionDataResponse) GetProtectionData() IProtectionData

func (*ProtectionDataResponse) GetRequestId ¶

func (obj *ProtectionDataResponse) GetRequestId() *string

func (*ProtectionDataResponse) Initialize ¶

func (obj *ProtectionDataResponse) Initialize()

func (ProtectionDataResponse) IsProtectionDataResponse ¶

func (ProtectionDataResponse) IsProtectionDataResponse() bool

func (ProtectionDataResponse) IsWordsResponse ¶

func (ProtectionDataResponse) IsWordsResponse() bool
func (obj *ProtectionDataResponse) SetDocumentLink(value IFileLink)

func (*ProtectionDataResponse) SetProtectionData ¶

func (obj *ProtectionDataResponse) SetProtectionData(value IProtectionData)

func (*ProtectionDataResponse) SetRequestId ¶

func (obj *ProtectionDataResponse) SetRequestId(value *string)

func (*ProtectionDataResponse) Validate ¶

func (obj *ProtectionDataResponse) Validate() error

type ProtectionRequest ¶

type ProtectionRequest struct {
	// Request on changing of protection.
	NewPassword *string `json:"NewPassword,omitempty"`

	// Request on changing of protection.
	Password *string `json:"Password,omitempty"`

	// Request on changing of protection.
	ProtectionType *string `json:"ProtectionType,omitempty"`
}

func (*ProtectionRequest) CollectFilesContent ¶

func (obj *ProtectionRequest) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ProtectionRequest) Deserialize ¶

func (obj *ProtectionRequest) Deserialize(json map[string]interface{})

func (*ProtectionRequest) GetNewPassword ¶

func (obj *ProtectionRequest) GetNewPassword() *string

func (*ProtectionRequest) GetPassword ¶

func (obj *ProtectionRequest) GetPassword() *string

func (*ProtectionRequest) GetProtectionType ¶

func (obj *ProtectionRequest) GetProtectionType() *string

func (*ProtectionRequest) Initialize ¶

func (obj *ProtectionRequest) Initialize()

func (ProtectionRequest) IsProtectionRequest ¶

func (ProtectionRequest) IsProtectionRequest() bool

func (ProtectionRequest) IsProtectionRequestBase ¶

func (ProtectionRequest) IsProtectionRequestBase() bool

func (*ProtectionRequest) SetNewPassword ¶

func (obj *ProtectionRequest) SetNewPassword(value *string)

func (*ProtectionRequest) SetPassword ¶

func (obj *ProtectionRequest) SetPassword(value *string)

func (*ProtectionRequest) SetProtectionType ¶

func (obj *ProtectionRequest) SetProtectionType(value *string)

func (*ProtectionRequest) Validate ¶

func (obj *ProtectionRequest) Validate() error

type ProtectionRequestV2 ¶

type ProtectionRequestV2 struct {
	// Request on changing of protection.
	ProtectionPassword *string `json:"ProtectionPassword,omitempty"`

	// Request on changing of protection.
	ProtectionType *string `json:"ProtectionType,omitempty"`
}

func (*ProtectionRequestV2) CollectFilesContent ¶

func (obj *ProtectionRequestV2) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ProtectionRequestV2) Deserialize ¶

func (obj *ProtectionRequestV2) Deserialize(json map[string]interface{})

func (*ProtectionRequestV2) GetProtectionPassword ¶

func (obj *ProtectionRequestV2) GetProtectionPassword() *string

func (*ProtectionRequestV2) GetProtectionType ¶

func (obj *ProtectionRequestV2) GetProtectionType() *string

func (*ProtectionRequestV2) Initialize ¶

func (obj *ProtectionRequestV2) Initialize()

func (ProtectionRequestV2) IsProtectionRequestBase ¶

func (ProtectionRequestV2) IsProtectionRequestBase() bool

func (ProtectionRequestV2) IsProtectionRequestV2 ¶

func (ProtectionRequestV2) IsProtectionRequestV2() bool

func (*ProtectionRequestV2) SetProtectionPassword ¶

func (obj *ProtectionRequestV2) SetProtectionPassword(value *string)

func (*ProtectionRequestV2) SetProtectionType ¶

func (obj *ProtectionRequestV2) SetProtectionType(value *string)

func (*ProtectionRequestV2) Validate ¶

func (obj *ProtectionRequestV2) Validate() error

type PsSaveOptionsData ¶

type PsSaveOptionsData struct {
	// Container class for ps save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for ps save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for ps save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for ps save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for ps save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for ps save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for ps save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for ps save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for ps save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for ps save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for ps save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for ps save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for ps save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for ps save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for ps save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for ps save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for ps save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for ps save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for ps save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for ps save options.
	UseBookFoldPrintingSettings *bool `json:"UseBookFoldPrintingSettings,omitempty"`

	// Container class for ps save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*PsSaveOptionsData) CollectFilesContent ¶

func (obj *PsSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PsSaveOptionsData) Deserialize ¶

func (obj *PsSaveOptionsData) Deserialize(json map[string]interface{})

func (*PsSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *PsSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*PsSaveOptionsData) GetColorMode ¶

func (obj *PsSaveOptionsData) GetColorMode() *string

func (*PsSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *PsSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*PsSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *PsSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*PsSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *PsSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*PsSaveOptionsData) GetDmlRenderingMode ¶

func (obj *PsSaveOptionsData) GetDmlRenderingMode() *string

func (*PsSaveOptionsData) GetFileName ¶

func (obj *PsSaveOptionsData) GetFileName() *string

func (*PsSaveOptionsData) GetImlRenderingMode ¶

func (obj *PsSaveOptionsData) GetImlRenderingMode() *string

func (*PsSaveOptionsData) GetJpegQuality ¶

func (obj *PsSaveOptionsData) GetJpegQuality() *int32

func (*PsSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *PsSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*PsSaveOptionsData) GetNumeralFormat ¶

func (obj *PsSaveOptionsData) GetNumeralFormat() *string

func (*PsSaveOptionsData) GetOptimizeOutput ¶

func (obj *PsSaveOptionsData) GetOptimizeOutput() *bool

func (*PsSaveOptionsData) GetPageCount ¶

func (obj *PsSaveOptionsData) GetPageCount() *int32

func (*PsSaveOptionsData) GetPageIndex ¶

func (obj *PsSaveOptionsData) GetPageIndex() *int32

func (*PsSaveOptionsData) GetSaveFormat ¶

func (obj *PsSaveOptionsData) GetSaveFormat() *string

func (*PsSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *PsSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*PsSaveOptionsData) GetUpdateFields ¶

func (obj *PsSaveOptionsData) GetUpdateFields() *bool

func (*PsSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *PsSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*PsSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *PsSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*PsSaveOptionsData) GetUseBookFoldPrintingSettings ¶

func (obj *PsSaveOptionsData) GetUseBookFoldPrintingSettings() *bool

func (*PsSaveOptionsData) GetZipOutput ¶

func (obj *PsSaveOptionsData) GetZipOutput() *bool

func (*PsSaveOptionsData) Initialize ¶

func (obj *PsSaveOptionsData) Initialize()

func (PsSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (PsSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (PsSaveOptionsData) IsPsSaveOptionsData ¶

func (PsSaveOptionsData) IsPsSaveOptionsData() bool

func (PsSaveOptionsData) IsSaveOptionsData ¶

func (PsSaveOptionsData) IsSaveOptionsData() bool

func (*PsSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *PsSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*PsSaveOptionsData) SetColorMode ¶

func (obj *PsSaveOptionsData) SetColorMode(value *string)

func (*PsSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *PsSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*PsSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *PsSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*PsSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *PsSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*PsSaveOptionsData) SetDmlRenderingMode ¶

func (obj *PsSaveOptionsData) SetDmlRenderingMode(value *string)

func (*PsSaveOptionsData) SetFileName ¶

func (obj *PsSaveOptionsData) SetFileName(value *string)

func (*PsSaveOptionsData) SetImlRenderingMode ¶

func (obj *PsSaveOptionsData) SetImlRenderingMode(value *string)

func (*PsSaveOptionsData) SetJpegQuality ¶

func (obj *PsSaveOptionsData) SetJpegQuality(value *int32)

func (*PsSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *PsSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*PsSaveOptionsData) SetNumeralFormat ¶

func (obj *PsSaveOptionsData) SetNumeralFormat(value *string)

func (*PsSaveOptionsData) SetOptimizeOutput ¶

func (obj *PsSaveOptionsData) SetOptimizeOutput(value *bool)

func (*PsSaveOptionsData) SetPageCount ¶

func (obj *PsSaveOptionsData) SetPageCount(value *int32)

func (*PsSaveOptionsData) SetPageIndex ¶

func (obj *PsSaveOptionsData) SetPageIndex(value *int32)

func (*PsSaveOptionsData) SetSaveFormat ¶

func (obj *PsSaveOptionsData) SetSaveFormat(value *string)

func (*PsSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *PsSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*PsSaveOptionsData) SetUpdateFields ¶

func (obj *PsSaveOptionsData) SetUpdateFields(value *bool)

func (*PsSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *PsSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*PsSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *PsSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*PsSaveOptionsData) SetUseBookFoldPrintingSettings ¶

func (obj *PsSaveOptionsData) SetUseBookFoldPrintingSettings(value *bool)

func (*PsSaveOptionsData) SetZipOutput ¶

func (obj *PsSaveOptionsData) SetZipOutput(value *bool)

func (*PsSaveOptionsData) Validate ¶

func (obj *PsSaveOptionsData) Validate() error

type PublicKeyResponse ¶

type PublicKeyResponse struct {
	// REST response for RSA public key info.
	RequestId *string `json:"RequestId,omitempty"`

	// REST response for RSA public key info.
	Exponent *string `json:"Exponent,omitempty"`

	// REST response for RSA public key info.
	Modulus *string `json:"Modulus,omitempty"`
}

func (*PublicKeyResponse) CollectFilesContent ¶

func (obj *PublicKeyResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*PublicKeyResponse) Deserialize ¶

func (obj *PublicKeyResponse) Deserialize(json map[string]interface{})

func (*PublicKeyResponse) GetExponent ¶

func (obj *PublicKeyResponse) GetExponent() *string

func (*PublicKeyResponse) GetModulus ¶

func (obj *PublicKeyResponse) GetModulus() *string

func (*PublicKeyResponse) GetRequestId ¶

func (obj *PublicKeyResponse) GetRequestId() *string

func (*PublicKeyResponse) Initialize ¶

func (obj *PublicKeyResponse) Initialize()

func (PublicKeyResponse) IsPublicKeyResponse ¶

func (PublicKeyResponse) IsPublicKeyResponse() bool

func (PublicKeyResponse) IsWordsResponse ¶

func (PublicKeyResponse) IsWordsResponse() bool

func (*PublicKeyResponse) SetExponent ¶

func (obj *PublicKeyResponse) SetExponent(value *string)

func (*PublicKeyResponse) SetModulus ¶

func (obj *PublicKeyResponse) SetModulus(value *string)

func (*PublicKeyResponse) SetRequestId ¶

func (obj *PublicKeyResponse) SetRequestId(value *string)

func (*PublicKeyResponse) Validate ¶

func (obj *PublicKeyResponse) Validate() error

type RangeDocument ¶

type RangeDocument struct {
	// DTO container with a Range element.
	DocumentName *string `json:"DocumentName,omitempty"`
}

func (*RangeDocument) CollectFilesContent ¶

func (obj *RangeDocument) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*RangeDocument) Deserialize ¶

func (obj *RangeDocument) Deserialize(json map[string]interface{})

func (*RangeDocument) GetDocumentName ¶

func (obj *RangeDocument) GetDocumentName() *string

func (*RangeDocument) Initialize ¶

func (obj *RangeDocument) Initialize()

func (RangeDocument) IsRangeDocument ¶

func (RangeDocument) IsRangeDocument() bool

func (*RangeDocument) SetDocumentName ¶

func (obj *RangeDocument) SetDocumentName(value *string)

func (*RangeDocument) Validate ¶

func (obj *RangeDocument) Validate() error

type RangeTextResponse ¶

type RangeTextResponse struct {
	// The REST response with a range's text.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/range/{0}/{1}/" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a range's text.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/range/{0}/{1}/" REST API requests.
	Text *string `json:"Text,omitempty"`
}

func (*RangeTextResponse) CollectFilesContent ¶

func (obj *RangeTextResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*RangeTextResponse) Deserialize ¶

func (obj *RangeTextResponse) Deserialize(json map[string]interface{})

func (*RangeTextResponse) GetRequestId ¶

func (obj *RangeTextResponse) GetRequestId() *string

func (*RangeTextResponse) GetText ¶

func (obj *RangeTextResponse) GetText() *string

func (*RangeTextResponse) Initialize ¶

func (obj *RangeTextResponse) Initialize()

func (RangeTextResponse) IsRangeTextResponse ¶

func (RangeTextResponse) IsRangeTextResponse() bool

func (RangeTextResponse) IsWordsResponse ¶

func (RangeTextResponse) IsWordsResponse() bool

func (*RangeTextResponse) SetRequestId ¶

func (obj *RangeTextResponse) SetRequestId(value *string)

func (*RangeTextResponse) SetText ¶

func (obj *RangeTextResponse) SetText(value *string)

func (*RangeTextResponse) Validate ¶

func (obj *RangeTextResponse) Validate() error

type RejectAllRevisionsOnlineRequest ¶

type RejectAllRevisionsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

RejectAllRevisionsOnlineRequest contains request data for WordsApiService.RejectAllRevisionsOnline method.

func (*RejectAllRevisionsOnlineRequest) CreateRequestData ¶

func (data *RejectAllRevisionsOnlineRequest) CreateRequestData() (RequestData, error)

func (*RejectAllRevisionsOnlineRequest) CreateResponse ¶

func (data *RejectAllRevisionsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RejectAllRevisionsOnlineResponse ¶

type RejectAllRevisionsOnlineResponse struct {
	// The REST response with a result of the modification operations for the revisions collection (now these are acceptAll and rejectAll).
	Model IRevisionsModificationResponse

	// The document after modification.
	Document map[string]io.Reader
}

RejectAllRevisionsOnlineResponse struct Rejects all revisions in the document.

func (*RejectAllRevisionsOnlineResponse) GetDocument ¶

func (obj *RejectAllRevisionsOnlineResponse) GetDocument() map[string]io.Reader

func (*RejectAllRevisionsOnlineResponse) GetModel ¶

func (*RejectAllRevisionsOnlineResponse) SetDocument ¶

func (obj *RejectAllRevisionsOnlineResponse) SetDocument(value map[string]io.Reader)

func (*RejectAllRevisionsOnlineResponse) SetModel ¶

type RejectAllRevisionsRequest ¶

type RejectAllRevisionsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

RejectAllRevisionsRequest contains request data for WordsApiService.RejectAllRevisions method.

func (*RejectAllRevisionsRequest) CreateRequestData ¶

func (data *RejectAllRevisionsRequest) CreateRequestData() (RequestData, error)

func (*RejectAllRevisionsRequest) CreateResponse ¶

func (data *RejectAllRevisionsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RemoveRangeOnlineRequest ¶

type RemoveRangeOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The range start identifier. Identifier examples: id0.0.0, page0.
	RangeStartIdentifier *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

RemoveRangeOnlineRequest contains request data for WordsApiService.RemoveRangeOnline method.

func (*RemoveRangeOnlineRequest) CreateRequestData ¶

func (data *RemoveRangeOnlineRequest) CreateRequestData() (RequestData, error)

func (*RemoveRangeOnlineRequest) CreateResponse ¶

func (data *RemoveRangeOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RemoveRangeOnlineResponse ¶

type RemoveRangeOnlineResponse struct {
	// The REST response with a document description.
	Model IDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

RemoveRangeOnlineResponse struct Removes a range from the document.

func (*RemoveRangeOnlineResponse) GetDocument ¶

func (obj *RemoveRangeOnlineResponse) GetDocument() map[string]io.Reader

func (*RemoveRangeOnlineResponse) GetModel ¶

func (*RemoveRangeOnlineResponse) SetDocument ¶

func (obj *RemoveRangeOnlineResponse) SetDocument(value map[string]io.Reader)

func (*RemoveRangeOnlineResponse) SetModel ¶

func (obj *RemoveRangeOnlineResponse) SetModel(value IDocumentResponse)

type RemoveRangeRequest ¶

type RemoveRangeRequest struct {
	// The filename of the input document.
	Name *string
	// The range start identifier. Identifier examples: id0.0.0, page0.
	RangeStartIdentifier *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

RemoveRangeRequest contains request data for WordsApiService.RemoveRange method.

func (*RemoveRangeRequest) CreateRequestData ¶

func (data *RemoveRangeRequest) CreateRequestData() (RequestData, error)

func (*RemoveRangeRequest) CreateResponse ¶

func (data *RemoveRangeRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RenderDrawingObjectOnlineRequest ¶

type RenderDrawingObjectOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The destination format.
	Format *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

RenderDrawingObjectOnlineRequest contains request data for WordsApiService.RenderDrawingObjectOnline method.

func (*RenderDrawingObjectOnlineRequest) CreateRequestData ¶

func (data *RenderDrawingObjectOnlineRequest) CreateRequestData() (RequestData, error)

func (*RenderDrawingObjectOnlineRequest) CreateResponse ¶

func (data *RenderDrawingObjectOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RenderDrawingObjectRequest ¶

type RenderDrawingObjectRequest struct {
	// The filename of the input document.
	Name *string
	// The destination format.
	Format *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

RenderDrawingObjectRequest contains request data for WordsApiService.RenderDrawingObject method.

func (*RenderDrawingObjectRequest) CreateRequestData ¶

func (data *RenderDrawingObjectRequest) CreateRequestData() (RequestData, error)

func (*RenderDrawingObjectRequest) CreateResponse ¶

func (data *RenderDrawingObjectRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RenderMathObjectOnlineRequest ¶

type RenderMathObjectOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The destination format.
	Format *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

RenderMathObjectOnlineRequest contains request data for WordsApiService.RenderMathObjectOnline method.

func (*RenderMathObjectOnlineRequest) CreateRequestData ¶

func (data *RenderMathObjectOnlineRequest) CreateRequestData() (RequestData, error)

func (*RenderMathObjectOnlineRequest) CreateResponse ¶

func (data *RenderMathObjectOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RenderMathObjectRequest ¶

type RenderMathObjectRequest struct {
	// The filename of the input document.
	Name *string
	// The destination format.
	Format *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

RenderMathObjectRequest contains request data for WordsApiService.RenderMathObject method.

func (*RenderMathObjectRequest) CreateRequestData ¶

func (data *RenderMathObjectRequest) CreateRequestData() (RequestData, error)

func (*RenderMathObjectRequest) CreateResponse ¶

func (data *RenderMathObjectRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RenderPageOnlineRequest ¶

type RenderPageOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the page.
	PageIndex *int32
	// The destination format.
	Format *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

RenderPageOnlineRequest contains request data for WordsApiService.RenderPageOnline method.

func (*RenderPageOnlineRequest) CreateRequestData ¶

func (data *RenderPageOnlineRequest) CreateRequestData() (RequestData, error)

func (*RenderPageOnlineRequest) CreateResponse ¶

func (data *RenderPageOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RenderPageRequest ¶

type RenderPageRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the page.
	PageIndex *int32
	// The destination format.
	Format *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

RenderPageRequest contains request data for WordsApiService.RenderPage method.

func (*RenderPageRequest) CreateRequestData ¶

func (data *RenderPageRequest) CreateRequestData() (RequestData, error)

func (*RenderPageRequest) CreateResponse ¶

func (data *RenderPageRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RenderParagraphOnlineRequest ¶

type RenderParagraphOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The destination format.
	Format *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

RenderParagraphOnlineRequest contains request data for WordsApiService.RenderParagraphOnline method.

func (*RenderParagraphOnlineRequest) CreateRequestData ¶

func (data *RenderParagraphOnlineRequest) CreateRequestData() (RequestData, error)

func (*RenderParagraphOnlineRequest) CreateResponse ¶

func (data *RenderParagraphOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RenderParagraphRequest ¶

type RenderParagraphRequest struct {
	// The filename of the input document.
	Name *string
	// The destination format.
	Format *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

RenderParagraphRequest contains request data for WordsApiService.RenderParagraph method.

func (*RenderParagraphRequest) CreateRequestData ¶

func (data *RenderParagraphRequest) CreateRequestData() (RequestData, error)

func (*RenderParagraphRequest) CreateResponse ¶

func (data *RenderParagraphRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RenderTableOnlineRequest ¶

type RenderTableOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The destination format.
	Format *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

RenderTableOnlineRequest contains request data for WordsApiService.RenderTableOnline method.

func (*RenderTableOnlineRequest) CreateRequestData ¶

func (data *RenderTableOnlineRequest) CreateRequestData() (RequestData, error)

func (*RenderTableOnlineRequest) CreateResponse ¶

func (data *RenderTableOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RenderTableRequest ¶

type RenderTableRequest struct {
	// The filename of the input document.
	Name *string
	// The destination format.
	Format *string
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

RenderTableRequest contains request data for WordsApiService.RenderTable method.

func (*RenderTableRequest) CreateRequestData ¶

func (data *RenderTableRequest) CreateRequestData() (RequestData, error)

func (*RenderTableRequest) CreateResponse ¶

func (data *RenderTableRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ReplaceRange ¶

type ReplaceRange struct {
	// DTO container with a range element.
	Text *string `json:"Text,omitempty"`

	// DTO container with a range element.
	TextType *string `json:"TextType,omitempty"`
}

func (*ReplaceRange) CollectFilesContent ¶

func (obj *ReplaceRange) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ReplaceRange) Deserialize ¶

func (obj *ReplaceRange) Deserialize(json map[string]interface{})

func (*ReplaceRange) GetText ¶

func (obj *ReplaceRange) GetText() *string

func (*ReplaceRange) GetTextType ¶

func (obj *ReplaceRange) GetTextType() *string

func (*ReplaceRange) Initialize ¶

func (obj *ReplaceRange) Initialize()

func (ReplaceRange) IsReplaceRange ¶

func (ReplaceRange) IsReplaceRange() bool

func (*ReplaceRange) SetText ¶

func (obj *ReplaceRange) SetText(value *string)

func (*ReplaceRange) SetTextType ¶

func (obj *ReplaceRange) SetTextType(value *string)

func (*ReplaceRange) Validate ¶

func (obj *ReplaceRange) Validate() error

type ReplaceTextOnlineRequest ¶

type ReplaceTextOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The replace operation settings.
	ReplaceText IReplaceTextParameters
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

ReplaceTextOnlineRequest contains request data for WordsApiService.ReplaceTextOnline method.

func (*ReplaceTextOnlineRequest) CreateRequestData ¶

func (data *ReplaceTextOnlineRequest) CreateRequestData() (RequestData, error)

func (*ReplaceTextOnlineRequest) CreateResponse ¶

func (data *ReplaceTextOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ReplaceTextOnlineResponse ¶

type ReplaceTextOnlineResponse struct {
	// The REST response with a number of occurrences of the captured text in the document.
	Model IReplaceTextResponse

	// The document after modification.
	Document map[string]io.Reader
}

ReplaceTextOnlineResponse struct Replaces text in the document.

func (*ReplaceTextOnlineResponse) GetDocument ¶

func (obj *ReplaceTextOnlineResponse) GetDocument() map[string]io.Reader

func (*ReplaceTextOnlineResponse) GetModel ¶

func (*ReplaceTextOnlineResponse) SetDocument ¶

func (obj *ReplaceTextOnlineResponse) SetDocument(value map[string]io.Reader)

func (*ReplaceTextOnlineResponse) SetModel ¶

func (obj *ReplaceTextOnlineResponse) SetModel(value IReplaceTextResponse)

type ReplaceTextParameters ¶

type ReplaceTextParameters struct {
	// Class for document replace text request building.
	IsMatchCase *bool `json:"IsMatchCase,omitempty"`

	// Class for document replace text request building.
	IsMatchWholeWord *bool `json:"IsMatchWholeWord,omitempty"`

	// Class for document replace text request building.
	IsOldValueRegex *bool `json:"IsOldValueRegex,omitempty"`

	// Class for document replace text request building.
	NewValue *string `json:"NewValue,omitempty"`

	// Class for document replace text request building.
	OldValue *string `json:"OldValue,omitempty"`
}

func (*ReplaceTextParameters) CollectFilesContent ¶

func (obj *ReplaceTextParameters) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ReplaceTextParameters) Deserialize ¶

func (obj *ReplaceTextParameters) Deserialize(json map[string]interface{})

func (*ReplaceTextParameters) GetIsMatchCase ¶

func (obj *ReplaceTextParameters) GetIsMatchCase() *bool

func (*ReplaceTextParameters) GetIsMatchWholeWord ¶

func (obj *ReplaceTextParameters) GetIsMatchWholeWord() *bool

func (*ReplaceTextParameters) GetIsOldValueRegex ¶

func (obj *ReplaceTextParameters) GetIsOldValueRegex() *bool

func (*ReplaceTextParameters) GetNewValue ¶

func (obj *ReplaceTextParameters) GetNewValue() *string

func (*ReplaceTextParameters) GetOldValue ¶

func (obj *ReplaceTextParameters) GetOldValue() *string

func (*ReplaceTextParameters) Initialize ¶

func (obj *ReplaceTextParameters) Initialize()

func (ReplaceTextParameters) IsReplaceTextParameters ¶

func (ReplaceTextParameters) IsReplaceTextParameters() bool

func (*ReplaceTextParameters) SetIsMatchCase ¶

func (obj *ReplaceTextParameters) SetIsMatchCase(value *bool)

func (*ReplaceTextParameters) SetIsMatchWholeWord ¶

func (obj *ReplaceTextParameters) SetIsMatchWholeWord(value *bool)

func (*ReplaceTextParameters) SetIsOldValueRegex ¶

func (obj *ReplaceTextParameters) SetIsOldValueRegex(value *bool)

func (*ReplaceTextParameters) SetNewValue ¶

func (obj *ReplaceTextParameters) SetNewValue(value *string)

func (*ReplaceTextParameters) SetOldValue ¶

func (obj *ReplaceTextParameters) SetOldValue(value *string)

func (*ReplaceTextParameters) Validate ¶

func (obj *ReplaceTextParameters) Validate() error

type ReplaceTextRequest ¶

type ReplaceTextRequest struct {
	// The filename of the input document.
	Name *string
	// The replace operation settings.
	ReplaceText IReplaceTextParameters
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

ReplaceTextRequest contains request data for WordsApiService.ReplaceText method.

func (*ReplaceTextRequest) CreateRequestData ¶

func (data *ReplaceTextRequest) CreateRequestData() (RequestData, error)

func (*ReplaceTextRequest) CreateResponse ¶

func (data *ReplaceTextRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ReplaceTextResponse ¶

type ReplaceTextResponse struct {
	// The REST response with a number of occurrences of the captured text in the document.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a number of occurrences of the captured text in the document.
	DocumentLink IFileLink `json:"DocumentLink,omitempty"`

	// The REST response with a number of occurrences of the captured text in the document.
	Matches *int32 `json:"Matches,omitempty"`
}

func (*ReplaceTextResponse) CollectFilesContent ¶

func (obj *ReplaceTextResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ReplaceTextResponse) Deserialize ¶

func (obj *ReplaceTextResponse) Deserialize(json map[string]interface{})
func (obj *ReplaceTextResponse) GetDocumentLink() IFileLink

func (*ReplaceTextResponse) GetMatches ¶

func (obj *ReplaceTextResponse) GetMatches() *int32

func (*ReplaceTextResponse) GetRequestId ¶

func (obj *ReplaceTextResponse) GetRequestId() *string

func (*ReplaceTextResponse) Initialize ¶

func (obj *ReplaceTextResponse) Initialize()

func (ReplaceTextResponse) IsReplaceTextResponse ¶

func (ReplaceTextResponse) IsReplaceTextResponse() bool

func (ReplaceTextResponse) IsWordsResponse ¶

func (ReplaceTextResponse) IsWordsResponse() bool
func (obj *ReplaceTextResponse) SetDocumentLink(value IFileLink)

func (*ReplaceTextResponse) SetMatches ¶

func (obj *ReplaceTextResponse) SetMatches(value *int32)

func (*ReplaceTextResponse) SetRequestId ¶

func (obj *ReplaceTextResponse) SetRequestId(value *string)

func (*ReplaceTextResponse) Validate ¶

func (obj *ReplaceTextResponse) Validate() error

type ReplaceWithTextOnlineRequest ¶

type ReplaceWithTextOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The range start identifier. Identifier examples: id0.0.0, page0.
	RangeStartIdentifier *string
	// Model with text for replacement.
	RangeText IReplaceRange
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

ReplaceWithTextOnlineRequest contains request data for WordsApiService.ReplaceWithTextOnline method.

func (*ReplaceWithTextOnlineRequest) CreateRequestData ¶

func (data *ReplaceWithTextOnlineRequest) CreateRequestData() (RequestData, error)

func (*ReplaceWithTextOnlineRequest) CreateResponse ¶

func (data *ReplaceWithTextOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ReplaceWithTextOnlineResponse ¶

type ReplaceWithTextOnlineResponse struct {
	// The REST response with a document description.
	Model IDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

ReplaceWithTextOnlineResponse struct Replaces a range with text in the document.

func (*ReplaceWithTextOnlineResponse) GetDocument ¶

func (obj *ReplaceWithTextOnlineResponse) GetDocument() map[string]io.Reader

func (*ReplaceWithTextOnlineResponse) GetModel ¶

func (*ReplaceWithTextOnlineResponse) SetDocument ¶

func (obj *ReplaceWithTextOnlineResponse) SetDocument(value map[string]io.Reader)

func (*ReplaceWithTextOnlineResponse) SetModel ¶

func (obj *ReplaceWithTextOnlineResponse) SetModel(value IDocumentResponse)

type ReplaceWithTextRequest ¶

type ReplaceWithTextRequest struct {
	// The filename of the input document.
	Name *string
	// The range start identifier. Identifier examples: id0.0.0, page0.
	RangeStartIdentifier *string
	// Model with text for replacement.
	RangeText IReplaceRange
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

ReplaceWithTextRequest contains request data for WordsApiService.ReplaceWithText method.

func (*ReplaceWithTextRequest) CreateRequestData ¶

func (data *ReplaceWithTextRequest) CreateRequestData() (RequestData, error)

func (*ReplaceWithTextRequest) CreateResponse ¶

func (data *ReplaceWithTextRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type ReportBuildOptions ¶

type ReportBuildOptions string

Specifies options controlling behavior of ReportingEngine while building a report.

const (
	NONE                          ReportBuildOptions = "None"
	ALLOWMISSINGMEMBERS           ReportBuildOptions = "AllowMissingMembers"
	REMOVEEMPTYPARAGRAPHS         ReportBuildOptions = "RemoveEmptyParagraphs"
	INLINEERRORMESSAGES           ReportBuildOptions = "InlineErrorMessages"
	USELEGACYHEADERFOOTERVISITING ReportBuildOptions = "UseLegacyHeaderFooterVisiting"
	RESPECTJPEGEXIFORIENTATION    ReportBuildOptions = "RespectJpegExifOrientation"
	UPDATEFIELDSSYNTAXAWARE       ReportBuildOptions = "UpdateFieldsSyntaxAware"
)

List of ReportBuildOptions

type ReportEngineSettings ¶

type ReportEngineSettings struct {
	// Report engine settings.
	CsvDataLoadOptions ICsvDataLoadOptions `json:"CsvDataLoadOptions,omitempty"`

	// Report engine settings.
	DataSourceName *string `json:"DataSourceName,omitempty"`

	// Report engine settings.
	DataSourceType *string `json:"DataSourceType,omitempty"`

	// Report engine settings.
	JsonDataLoadOptions IJsonDataLoadOptions `json:"JsonDataLoadOptions,omitempty"`

	// Report engine settings.
	ReportBuildOptions []string `json:"ReportBuildOptions,omitempty"`

	// Report engine settings.
	XmlDataLoadOptions IXmlDataLoadOptions `json:"XmlDataLoadOptions,omitempty"`
}

func (*ReportEngineSettings) CollectFilesContent ¶

func (obj *ReportEngineSettings) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*ReportEngineSettings) Deserialize ¶

func (obj *ReportEngineSettings) Deserialize(json map[string]interface{})

func (*ReportEngineSettings) GetCsvDataLoadOptions ¶

func (obj *ReportEngineSettings) GetCsvDataLoadOptions() ICsvDataLoadOptions

func (*ReportEngineSettings) GetDataSourceName ¶

func (obj *ReportEngineSettings) GetDataSourceName() *string

func (*ReportEngineSettings) GetDataSourceType ¶

func (obj *ReportEngineSettings) GetDataSourceType() *string

func (*ReportEngineSettings) GetJsonDataLoadOptions ¶

func (obj *ReportEngineSettings) GetJsonDataLoadOptions() IJsonDataLoadOptions

func (*ReportEngineSettings) GetReportBuildOptions ¶

func (obj *ReportEngineSettings) GetReportBuildOptions() []string

func (*ReportEngineSettings) GetXmlDataLoadOptions ¶

func (obj *ReportEngineSettings) GetXmlDataLoadOptions() IXmlDataLoadOptions

func (*ReportEngineSettings) Initialize ¶

func (obj *ReportEngineSettings) Initialize()

func (ReportEngineSettings) IsReportEngineSettings ¶

func (ReportEngineSettings) IsReportEngineSettings() bool

func (*ReportEngineSettings) SetCsvDataLoadOptions ¶

func (obj *ReportEngineSettings) SetCsvDataLoadOptions(value ICsvDataLoadOptions)

func (*ReportEngineSettings) SetDataSourceName ¶

func (obj *ReportEngineSettings) SetDataSourceName(value *string)

func (*ReportEngineSettings) SetDataSourceType ¶

func (obj *ReportEngineSettings) SetDataSourceType(value *string)

func (*ReportEngineSettings) SetJsonDataLoadOptions ¶

func (obj *ReportEngineSettings) SetJsonDataLoadOptions(value IJsonDataLoadOptions)

func (*ReportEngineSettings) SetReportBuildOptions ¶

func (obj *ReportEngineSettings) SetReportBuildOptions(value []string)

func (*ReportEngineSettings) SetXmlDataLoadOptions ¶

func (obj *ReportEngineSettings) SetXmlDataLoadOptions(value IXmlDataLoadOptions)

func (*ReportEngineSettings) Validate ¶

func (obj *ReportEngineSettings) Validate() error

type RequestData ¶

type RequestData struct {
	Path           string
	Method         string
	HeaderParams   map[string]string
	QueryParams    url.Values
	FormParams     []FormParamContainer
	FileReferences []FileReference
}

RequestData contains requst data

type RequestInterface ¶

type RequestInterface interface {
	CreateRequestData() (request RequestData, err error)
	CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)
}

RequestInterface ia implemented all Words API requests

type ResetCacheRequest ¶

type ResetCacheRequest struct {
}

ResetCacheRequest contains request data for WordsApiService.ResetCache method.

func (*ResetCacheRequest) CreateRequestData ¶

func (data *ResetCacheRequest) CreateRequestData() (RequestData, error)

func (*ResetCacheRequest) CreateResponse ¶

func (data *ResetCacheRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type RevisionsModificationResponse ¶

type RevisionsModificationResponse struct {
	// The REST response with a result of the modification operations for the revisions collection (now these are acceptAll and rejectAll).
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a result of the modification operations for the revisions collection (now these are acceptAll and rejectAll).
	Result IModificationOperationResult `json:"Result,omitempty"`
}

func (*RevisionsModificationResponse) CollectFilesContent ¶

func (obj *RevisionsModificationResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*RevisionsModificationResponse) Deserialize ¶

func (obj *RevisionsModificationResponse) Deserialize(json map[string]interface{})

func (*RevisionsModificationResponse) GetRequestId ¶

func (obj *RevisionsModificationResponse) GetRequestId() *string

func (*RevisionsModificationResponse) GetResult ¶

func (*RevisionsModificationResponse) Initialize ¶

func (obj *RevisionsModificationResponse) Initialize()

func (RevisionsModificationResponse) IsRevisionsModificationResponse ¶

func (RevisionsModificationResponse) IsRevisionsModificationResponse() bool

func (RevisionsModificationResponse) IsWordsResponse ¶

func (RevisionsModificationResponse) IsWordsResponse() bool

func (*RevisionsModificationResponse) SetRequestId ¶

func (obj *RevisionsModificationResponse) SetRequestId(value *string)

func (*RevisionsModificationResponse) SetResult ¶

func (*RevisionsModificationResponse) Validate ¶

func (obj *RevisionsModificationResponse) Validate() error

type RtfSaveOptionsData ¶

type RtfSaveOptionsData struct {
	// Container class for rtf save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for rtf save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for rtf save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for rtf save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for rtf save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for rtf save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for rtf save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for rtf save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for rtf save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for rtf save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for rtf save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for rtf save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for rtf save options.
	ExportCompactSize *bool `json:"ExportCompactSize,omitempty"`

	// Container class for rtf save options.
	ExportImagesForOldReaders *bool `json:"ExportImagesForOldReaders,omitempty"`

	// Container class for rtf save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for rtf save options.
	SaveImagesAsWmf *bool `json:"SaveImagesAsWmf,omitempty"`

	// Container class for rtf save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*RtfSaveOptionsData) CollectFilesContent ¶

func (obj *RtfSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*RtfSaveOptionsData) Deserialize ¶

func (obj *RtfSaveOptionsData) Deserialize(json map[string]interface{})

func (*RtfSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *RtfSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*RtfSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *RtfSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*RtfSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *RtfSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*RtfSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *RtfSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*RtfSaveOptionsData) GetDmlRenderingMode ¶

func (obj *RtfSaveOptionsData) GetDmlRenderingMode() *string

func (*RtfSaveOptionsData) GetExportCompactSize ¶

func (obj *RtfSaveOptionsData) GetExportCompactSize() *bool

func (*RtfSaveOptionsData) GetExportImagesForOldReaders ¶

func (obj *RtfSaveOptionsData) GetExportImagesForOldReaders() *bool

func (*RtfSaveOptionsData) GetFileName ¶

func (obj *RtfSaveOptionsData) GetFileName() *string

func (*RtfSaveOptionsData) GetImlRenderingMode ¶

func (obj *RtfSaveOptionsData) GetImlRenderingMode() *string

func (*RtfSaveOptionsData) GetPrettyFormat ¶

func (obj *RtfSaveOptionsData) GetPrettyFormat() *bool

func (*RtfSaveOptionsData) GetSaveFormat ¶

func (obj *RtfSaveOptionsData) GetSaveFormat() *string

func (*RtfSaveOptionsData) GetSaveImagesAsWmf ¶

func (obj *RtfSaveOptionsData) GetSaveImagesAsWmf() *bool

func (*RtfSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *RtfSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*RtfSaveOptionsData) GetUpdateFields ¶

func (obj *RtfSaveOptionsData) GetUpdateFields() *bool

func (*RtfSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *RtfSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*RtfSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *RtfSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*RtfSaveOptionsData) GetZipOutput ¶

func (obj *RtfSaveOptionsData) GetZipOutput() *bool

func (*RtfSaveOptionsData) Initialize ¶

func (obj *RtfSaveOptionsData) Initialize()

func (RtfSaveOptionsData) IsRtfSaveOptionsData ¶

func (RtfSaveOptionsData) IsRtfSaveOptionsData() bool

func (RtfSaveOptionsData) IsSaveOptionsData ¶

func (RtfSaveOptionsData) IsSaveOptionsData() bool

func (*RtfSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *RtfSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*RtfSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *RtfSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*RtfSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *RtfSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*RtfSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *RtfSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*RtfSaveOptionsData) SetDmlRenderingMode ¶

func (obj *RtfSaveOptionsData) SetDmlRenderingMode(value *string)

func (*RtfSaveOptionsData) SetExportCompactSize ¶

func (obj *RtfSaveOptionsData) SetExportCompactSize(value *bool)

func (*RtfSaveOptionsData) SetExportImagesForOldReaders ¶

func (obj *RtfSaveOptionsData) SetExportImagesForOldReaders(value *bool)

func (*RtfSaveOptionsData) SetFileName ¶

func (obj *RtfSaveOptionsData) SetFileName(value *string)

func (*RtfSaveOptionsData) SetImlRenderingMode ¶

func (obj *RtfSaveOptionsData) SetImlRenderingMode(value *string)

func (*RtfSaveOptionsData) SetPrettyFormat ¶

func (obj *RtfSaveOptionsData) SetPrettyFormat(value *bool)

func (*RtfSaveOptionsData) SetSaveFormat ¶

func (obj *RtfSaveOptionsData) SetSaveFormat(value *string)

func (*RtfSaveOptionsData) SetSaveImagesAsWmf ¶

func (obj *RtfSaveOptionsData) SetSaveImagesAsWmf(value *bool)

func (*RtfSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *RtfSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*RtfSaveOptionsData) SetUpdateFields ¶

func (obj *RtfSaveOptionsData) SetUpdateFields(value *bool)

func (*RtfSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *RtfSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*RtfSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *RtfSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*RtfSaveOptionsData) SetZipOutput ¶

func (obj *RtfSaveOptionsData) SetZipOutput(value *bool)

func (*RtfSaveOptionsData) Validate ¶

func (obj *RtfSaveOptionsData) Validate() error

type Run ¶

type Run struct {
	// Run element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Run element.
	NodeId *string `json:"NodeId,omitempty"`

	// Run element.
	Text *string `json:"Text,omitempty"`
}

func (*Run) CollectFilesContent ¶

func (obj *Run) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Run) Deserialize ¶

func (obj *Run) Deserialize(json map[string]interface{})
func (obj *Run) GetLink() IWordsApiLink

func (*Run) GetNodeId ¶

func (obj *Run) GetNodeId() *string

func (*Run) GetText ¶

func (obj *Run) GetText() *string

func (*Run) Initialize ¶

func (obj *Run) Initialize()

func (Run) IsLinkElement ¶

func (Run) IsLinkElement() bool
func (Run) IsNodeLink() bool

func (Run) IsRun ¶

func (Run) IsRun() bool
func (Run) IsRunLink() bool
func (obj *Run) SetLink(value IWordsApiLink)

func (*Run) SetNodeId ¶

func (obj *Run) SetNodeId(value *string)

func (*Run) SetText ¶

func (obj *Run) SetText(value *string)

func (*Run) Validate ¶

func (obj *Run) Validate() error

type RunInsert ¶

type RunInsert struct {
	// Run element for insert.
	Text *string `json:"Text,omitempty"`

	// Run element for insert.
	Position IPosition `json:"Position,omitempty"`
}

func (*RunInsert) CollectFilesContent ¶

func (obj *RunInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*RunInsert) Deserialize ¶

func (obj *RunInsert) Deserialize(json map[string]interface{})

func (*RunInsert) GetPosition ¶

func (obj *RunInsert) GetPosition() IPosition

func (*RunInsert) GetText ¶

func (obj *RunInsert) GetText() *string

func (*RunInsert) Initialize ¶

func (obj *RunInsert) Initialize()

func (RunInsert) IsRunBase ¶

func (RunInsert) IsRunBase() bool

func (RunInsert) IsRunInsert ¶

func (RunInsert) IsRunInsert() bool

func (*RunInsert) SetPosition ¶

func (obj *RunInsert) SetPosition(value IPosition)

func (*RunInsert) SetText ¶

func (obj *RunInsert) SetText(value *string)

func (*RunInsert) Validate ¶

func (obj *RunInsert) Validate() error
type RunLink struct {
	// Run link element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Run link element.
	NodeId *string `json:"NodeId,omitempty"`

	// Run link element.
	Text *string `json:"Text,omitempty"`
}

func (*RunLink) CollectFilesContent ¶

func (obj *RunLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*RunLink) Deserialize ¶

func (obj *RunLink) Deserialize(json map[string]interface{})
func (obj *RunLink) GetLink() IWordsApiLink

func (*RunLink) GetNodeId ¶

func (obj *RunLink) GetNodeId() *string

func (*RunLink) GetText ¶

func (obj *RunLink) GetText() *string

func (*RunLink) Initialize ¶

func (obj *RunLink) Initialize()

func (RunLink) IsLinkElement ¶

func (RunLink) IsLinkElement() bool
func (RunLink) IsNodeLink() bool
func (RunLink) IsRunLink() bool
func (obj *RunLink) SetLink(value IWordsApiLink)

func (*RunLink) SetNodeId ¶

func (obj *RunLink) SetNodeId(value *string)

func (*RunLink) SetText ¶

func (obj *RunLink) SetText(value *string)

func (*RunLink) Validate ¶

func (obj *RunLink) Validate() error

type RunResponse ¶

type RunResponse struct {
	// The REST response with a Run element.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/runs/{1}" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a Run element.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/runs/{1}" REST API requests.
	Run IRun `json:"Run,omitempty"`
}

func (*RunResponse) CollectFilesContent ¶

func (obj *RunResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*RunResponse) Deserialize ¶

func (obj *RunResponse) Deserialize(json map[string]interface{})

func (*RunResponse) GetRequestId ¶

func (obj *RunResponse) GetRequestId() *string

func (*RunResponse) GetRun ¶

func (obj *RunResponse) GetRun() IRun

func (*RunResponse) Initialize ¶

func (obj *RunResponse) Initialize()

func (RunResponse) IsRunResponse ¶

func (RunResponse) IsRunResponse() bool

func (RunResponse) IsWordsResponse ¶

func (RunResponse) IsWordsResponse() bool

func (*RunResponse) SetRequestId ¶

func (obj *RunResponse) SetRequestId(value *string)

func (*RunResponse) SetRun ¶

func (obj *RunResponse) SetRun(value IRun)

func (*RunResponse) Validate ¶

func (obj *RunResponse) Validate() error

type RunUpdate ¶

type RunUpdate struct {
	// Run element for insert.
	Text *string `json:"Text,omitempty"`
}

func (*RunUpdate) CollectFilesContent ¶

func (obj *RunUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*RunUpdate) Deserialize ¶

func (obj *RunUpdate) Deserialize(json map[string]interface{})

func (*RunUpdate) GetText ¶

func (obj *RunUpdate) GetText() *string

func (*RunUpdate) Initialize ¶

func (obj *RunUpdate) Initialize()

func (RunUpdate) IsRunBase ¶

func (RunUpdate) IsRunBase() bool

func (RunUpdate) IsRunUpdate ¶

func (RunUpdate) IsRunUpdate() bool

func (*RunUpdate) SetText ¶

func (obj *RunUpdate) SetText(value *string)

func (*RunUpdate) Validate ¶

func (obj *RunUpdate) Validate() error

type Runs ¶

type Runs struct {
	// DTO container with a collection of runs.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a collection of runs.
	List []IRun `json:"List,omitempty"`
}

func (*Runs) CollectFilesContent ¶

func (obj *Runs) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Runs) Deserialize ¶

func (obj *Runs) Deserialize(json map[string]interface{})
func (obj *Runs) GetLink() IWordsApiLink

func (*Runs) GetList ¶

func (obj *Runs) GetList() []IRun

func (*Runs) Initialize ¶

func (obj *Runs) Initialize()

func (Runs) IsLinkElement ¶

func (Runs) IsLinkElement() bool

func (Runs) IsRuns ¶

func (Runs) IsRuns() bool
func (obj *Runs) SetLink(value IWordsApiLink)

func (*Runs) SetList ¶

func (obj *Runs) SetList(value []IRun)

func (*Runs) Validate ¶

func (obj *Runs) Validate() error

type RunsResponse ¶

type RunsResponse struct {
	// The REST response with a collection of Run elements.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/{paragraphPath}/runs" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of Run elements.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/{paragraphPath}/runs" REST API requests.
	Runs IRuns `json:"Runs,omitempty"`
}

func (*RunsResponse) CollectFilesContent ¶

func (obj *RunsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*RunsResponse) Deserialize ¶

func (obj *RunsResponse) Deserialize(json map[string]interface{})

func (*RunsResponse) GetRequestId ¶

func (obj *RunsResponse) GetRequestId() *string

func (*RunsResponse) GetRuns ¶

func (obj *RunsResponse) GetRuns() IRuns

func (*RunsResponse) Initialize ¶

func (obj *RunsResponse) Initialize()

func (RunsResponse) IsRunsResponse ¶

func (RunsResponse) IsRunsResponse() bool

func (RunsResponse) IsWordsResponse ¶

func (RunsResponse) IsWordsResponse() bool

func (*RunsResponse) SetRequestId ¶

func (obj *RunsResponse) SetRequestId(value *string)

func (*RunsResponse) SetRuns ¶

func (obj *RunsResponse) SetRuns(value IRuns)

func (*RunsResponse) Validate ¶

func (obj *RunsResponse) Validate() error

type SaveAsOnlineRequest ¶

type SaveAsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Save options.
	SaveOptionsData ISaveOptionsData
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

SaveAsOnlineRequest contains request data for WordsApiService.SaveAsOnline method.

func (*SaveAsOnlineRequest) CreateRequestData ¶

func (data *SaveAsOnlineRequest) CreateRequestData() (RequestData, error)

func (*SaveAsOnlineRequest) CreateResponse ¶

func (data *SaveAsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type SaveAsOnlineResponse ¶

type SaveAsOnlineResponse struct {
	// The REST response with a save result.
	Model ISaveResponse

	// The document after modification.
	Document map[string]io.Reader
}

SaveAsOnlineResponse struct Converts a document in cloud storage to the specified format.

func (*SaveAsOnlineResponse) GetDocument ¶

func (obj *SaveAsOnlineResponse) GetDocument() map[string]io.Reader

func (*SaveAsOnlineResponse) GetModel ¶

func (obj *SaveAsOnlineResponse) GetModel() ISaveResponse

func (*SaveAsOnlineResponse) SetDocument ¶

func (obj *SaveAsOnlineResponse) SetDocument(value map[string]io.Reader)

func (*SaveAsOnlineResponse) SetModel ¶

func (obj *SaveAsOnlineResponse) SetModel(value ISaveResponse)

type SaveAsRangeOnlineRequest ¶

type SaveAsRangeOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The range start identifier. Identifier examples: id0.0.0, page0.
	RangeStartIdentifier *string
	// Parameters of a new document.
	DocumentParameters IRangeDocument
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

SaveAsRangeOnlineRequest contains request data for WordsApiService.SaveAsRangeOnline method.

func (*SaveAsRangeOnlineRequest) CreateRequestData ¶

func (data *SaveAsRangeOnlineRequest) CreateRequestData() (RequestData, error)

func (*SaveAsRangeOnlineRequest) CreateResponse ¶

func (data *SaveAsRangeOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type SaveAsRangeOnlineResponse ¶

type SaveAsRangeOnlineResponse struct {
	// The REST response with a document description.
	Model IDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

SaveAsRangeOnlineResponse struct Saves a range as a new document.

func (*SaveAsRangeOnlineResponse) GetDocument ¶

func (obj *SaveAsRangeOnlineResponse) GetDocument() map[string]io.Reader

func (*SaveAsRangeOnlineResponse) GetModel ¶

func (*SaveAsRangeOnlineResponse) SetDocument ¶

func (obj *SaveAsRangeOnlineResponse) SetDocument(value map[string]io.Reader)

func (*SaveAsRangeOnlineResponse) SetModel ¶

func (obj *SaveAsRangeOnlineResponse) SetModel(value IDocumentResponse)

type SaveAsRangeRequest ¶

type SaveAsRangeRequest struct {
	// The filename of the input document.
	Name *string
	// The range start identifier. Identifier examples: id0.0.0, page0.
	RangeStartIdentifier *string
	// Parameters of a new document.
	DocumentParameters IRangeDocument
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "rangeEndIdentifier" value: (*string) The range end identifier. Identifier examples: id1.0.0, id0.0.0:end, page1, page1:end, document:end.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

SaveAsRangeRequest contains request data for WordsApiService.SaveAsRange method.

func (*SaveAsRangeRequest) CreateRequestData ¶

func (data *SaveAsRangeRequest) CreateRequestData() (RequestData, error)

func (*SaveAsRangeRequest) CreateResponse ¶

func (data *SaveAsRangeRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type SaveAsRequest ¶

type SaveAsRequest struct {
	// The filename of the input document.
	Name *string
	// Save options.
	SaveOptionsData ISaveOptionsData
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

SaveAsRequest contains request data for WordsApiService.SaveAs method.

func (*SaveAsRequest) CreateRequestData ¶

func (data *SaveAsRequest) CreateRequestData() (RequestData, error)

func (*SaveAsRequest) CreateResponse ¶

func (data *SaveAsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type SaveAsTiffOnlineRequest ¶

type SaveAsTiffOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Tiff save options.
	SaveOptions ITiffSaveOptionsData
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "useAntiAliasing" value: (*bool) The flag indicating whether to use antialiasing.
	   key: "useHighQualityRendering" value: (*bool) The flag indicating whether to use high quality.
	   key: "imageBrightness" value: (*float64) The level of brightness for the generated images.
	   key: "imageColorMode" value: (*string) The color mode for the generated images.
	   key: "imageContrast" value: (*float64) The contrast for the generated images.
	   key: "numeralFormat" value: (*string) The images numeral format.
	   key: "pageCount" value: (*int32) The number of pages to render.
	   key: "pageIndex" value: (*int32) The index of the page to start rendering.
	   key: "paperColor" value: (*string) The background image color.
	   key: "pixelFormat" value: (*string) The pixel format of the generated images.
	   key: "resolution" value: (*float64) The resolution of the generated images.
	   key: "scale" value: (*float64) The zoom factor for the generated images.
	   key: "tiffCompression" value: (*string) The compression tipe.
	   key: "dmlRenderingMode" value: (*string) The optional dml rendering mode. The default value is Fallback.
	   key: "dmlEffectsRenderingMode" value: (*string) The optional dml effects rendering mode. The default value is Simplified.
	   key: "tiffBinarizationMethod" value: (*string) The optional TIFF binarization method. Possible values are: FloydSteinbergDithering, Threshold.
	   key: "zipOutput" value: (*bool) The flag indicating whether to ZIP the output.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

SaveAsTiffOnlineRequest contains request data for WordsApiService.SaveAsTiffOnline method.

func (*SaveAsTiffOnlineRequest) CreateRequestData ¶

func (data *SaveAsTiffOnlineRequest) CreateRequestData() (RequestData, error)

func (*SaveAsTiffOnlineRequest) CreateResponse ¶

func (data *SaveAsTiffOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type SaveAsTiffOnlineResponse ¶

type SaveAsTiffOnlineResponse struct {
	// The REST response with a save result.
	Model ISaveResponse

	// The document after modification.
	Document map[string]io.Reader
}

SaveAsTiffOnlineResponse struct Converts a document in cloud storage to TIFF format using detailed conversion settings.

func (*SaveAsTiffOnlineResponse) GetDocument ¶

func (obj *SaveAsTiffOnlineResponse) GetDocument() map[string]io.Reader

func (*SaveAsTiffOnlineResponse) GetModel ¶

func (obj *SaveAsTiffOnlineResponse) GetModel() ISaveResponse

func (*SaveAsTiffOnlineResponse) SetDocument ¶

func (obj *SaveAsTiffOnlineResponse) SetDocument(value map[string]io.Reader)

func (*SaveAsTiffOnlineResponse) SetModel ¶

func (obj *SaveAsTiffOnlineResponse) SetModel(value ISaveResponse)

type SaveAsTiffRequest ¶

type SaveAsTiffRequest struct {
	// The filename of the input document.
	Name *string
	// Tiff save options.
	SaveOptions ITiffSaveOptionsData
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "useAntiAliasing" value: (*bool) The flag indicating whether to use antialiasing.
	   key: "useHighQualityRendering" value: (*bool) The flag indicating whether to use high quality.
	   key: "imageBrightness" value: (*float64) The level of brightness for the generated images.
	   key: "imageColorMode" value: (*string) The color mode for the generated images.
	   key: "imageContrast" value: (*float64) The contrast for the generated images.
	   key: "numeralFormat" value: (*string) The images numeral format.
	   key: "pageCount" value: (*int32) The number of pages to render.
	   key: "pageIndex" value: (*int32) The index of the page to start rendering.
	   key: "paperColor" value: (*string) The background image color.
	   key: "pixelFormat" value: (*string) The pixel format of the generated images.
	   key: "resolution" value: (*float64) The resolution of the generated images.
	   key: "scale" value: (*float64) The zoom factor for the generated images.
	   key: "tiffCompression" value: (*string) The compression tipe.
	   key: "dmlRenderingMode" value: (*string) The optional dml rendering mode. The default value is Fallback.
	   key: "dmlEffectsRenderingMode" value: (*string) The optional dml effects rendering mode. The default value is Simplified.
	   key: "tiffBinarizationMethod" value: (*string) The optional TIFF binarization method. Possible values are: FloydSteinbergDithering, Threshold.
	   key: "zipOutput" value: (*bool) The flag indicating whether to ZIP the output.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

SaveAsTiffRequest contains request data for WordsApiService.SaveAsTiff method.

func (*SaveAsTiffRequest) CreateRequestData ¶

func (data *SaveAsTiffRequest) CreateRequestData() (RequestData, error)

func (*SaveAsTiffRequest) CreateResponse ¶

func (data *SaveAsTiffRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type SaveResponse ¶

type SaveResponse struct {
	// The REST response with a save result.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a save result.
	SaveResult ISaveResult `json:"SaveResult,omitempty"`
}

func (*SaveResponse) CollectFilesContent ¶

func (obj *SaveResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SaveResponse) Deserialize ¶

func (obj *SaveResponse) Deserialize(json map[string]interface{})

func (*SaveResponse) GetRequestId ¶

func (obj *SaveResponse) GetRequestId() *string

func (*SaveResponse) GetSaveResult ¶

func (obj *SaveResponse) GetSaveResult() ISaveResult

func (*SaveResponse) Initialize ¶

func (obj *SaveResponse) Initialize()

func (SaveResponse) IsSaveResponse ¶

func (SaveResponse) IsSaveResponse() bool

func (SaveResponse) IsWordsResponse ¶

func (SaveResponse) IsWordsResponse() bool

func (*SaveResponse) SetRequestId ¶

func (obj *SaveResponse) SetRequestId(value *string)

func (*SaveResponse) SetSaveResult ¶

func (obj *SaveResponse) SetSaveResult(value ISaveResult)

func (*SaveResponse) Validate ¶

func (obj *SaveResponse) Validate() error

type SaveResult ¶

type SaveResult struct {
	// Result of saving.
	DestDocument IFileLink `json:"DestDocument,omitempty"`

	// Result of saving.
	SourceDocument IFileLink `json:"SourceDocument,omitempty"`

	// Result of saving.
	AdditionalItems []IFileLink `json:"AdditionalItems,omitempty"`
}

func (*SaveResult) CollectFilesContent ¶

func (obj *SaveResult) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SaveResult) Deserialize ¶

func (obj *SaveResult) Deserialize(json map[string]interface{})

func (*SaveResult) GetAdditionalItems ¶

func (obj *SaveResult) GetAdditionalItems() []IFileLink

func (*SaveResult) GetDestDocument ¶

func (obj *SaveResult) GetDestDocument() IFileLink

func (*SaveResult) GetSourceDocument ¶

func (obj *SaveResult) GetSourceDocument() IFileLink

func (*SaveResult) Initialize ¶

func (obj *SaveResult) Initialize()

func (SaveResult) IsSaveResult ¶

func (SaveResult) IsSaveResult() bool

func (*SaveResult) SetAdditionalItems ¶

func (obj *SaveResult) SetAdditionalItems(value []IFileLink)

func (*SaveResult) SetDestDocument ¶

func (obj *SaveResult) SetDestDocument(value IFileLink)

func (*SaveResult) SetSourceDocument ¶

func (obj *SaveResult) SetSourceDocument(value IFileLink)

func (*SaveResult) Validate ¶

func (obj *SaveResult) Validate() error

type SearchOnlineRequest ¶

type SearchOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The regular expression used to find matches.
	Pattern *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

SearchOnlineRequest contains request data for WordsApiService.SearchOnline method.

func (*SearchOnlineRequest) CreateRequestData ¶

func (data *SearchOnlineRequest) CreateRequestData() (RequestData, error)

func (*SearchOnlineRequest) CreateResponse ¶

func (data *SearchOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type SearchRequest ¶

type SearchRequest struct {
	// The filename of the input document.
	Name *string
	// The regular expression used to find matches.
	Pattern *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. */
	Optionals map[string]interface{}
}

SearchRequest contains request data for WordsApiService.Search method.

func (*SearchRequest) CreateRequestData ¶

func (data *SearchRequest) CreateRequestData() (RequestData, error)

func (*SearchRequest) CreateResponse ¶

func (data *SearchRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type SearchResponse ¶

type SearchResponse struct {
	// The REST response with a regular expression pattern and a collection of search results.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/search" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a regular expression pattern and a collection of search results.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/search" REST API requests.
	SearchingPattern *string `json:"SearchingPattern,omitempty"`

	// The REST response with a regular expression pattern and a collection of search results.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/search" REST API requests.
	SearchResults ISearchResultsCollection `json:"SearchResults,omitempty"`
}

func (*SearchResponse) CollectFilesContent ¶

func (obj *SearchResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SearchResponse) Deserialize ¶

func (obj *SearchResponse) Deserialize(json map[string]interface{})

func (*SearchResponse) GetRequestId ¶

func (obj *SearchResponse) GetRequestId() *string

func (*SearchResponse) GetSearchResults ¶

func (obj *SearchResponse) GetSearchResults() ISearchResultsCollection

func (*SearchResponse) GetSearchingPattern ¶

func (obj *SearchResponse) GetSearchingPattern() *string

func (*SearchResponse) Initialize ¶

func (obj *SearchResponse) Initialize()

func (SearchResponse) IsSearchResponse ¶

func (SearchResponse) IsSearchResponse() bool

func (SearchResponse) IsWordsResponse ¶

func (SearchResponse) IsWordsResponse() bool

func (*SearchResponse) SetRequestId ¶

func (obj *SearchResponse) SetRequestId(value *string)

func (*SearchResponse) SetSearchResults ¶

func (obj *SearchResponse) SetSearchResults(value ISearchResultsCollection)

func (*SearchResponse) SetSearchingPattern ¶

func (obj *SearchResponse) SetSearchingPattern(value *string)

func (*SearchResponse) Validate ¶

func (obj *SearchResponse) Validate() error

type SearchResult ¶

type SearchResult struct {
	// Result of search operation.
	RangeStart IDocumentPosition `json:"RangeStart,omitempty"`

	// Result of search operation.
	RangeEnd IDocumentPosition `json:"RangeEnd,omitempty"`
}

func (*SearchResult) CollectFilesContent ¶

func (obj *SearchResult) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SearchResult) Deserialize ¶

func (obj *SearchResult) Deserialize(json map[string]interface{})

func (*SearchResult) GetRangeEnd ¶

func (obj *SearchResult) GetRangeEnd() IDocumentPosition

func (*SearchResult) GetRangeStart ¶

func (obj *SearchResult) GetRangeStart() IDocumentPosition

func (*SearchResult) Initialize ¶

func (obj *SearchResult) Initialize()

func (SearchResult) IsSearchResult ¶

func (SearchResult) IsSearchResult() bool

func (*SearchResult) SetRangeEnd ¶

func (obj *SearchResult) SetRangeEnd(value IDocumentPosition)

func (*SearchResult) SetRangeStart ¶

func (obj *SearchResult) SetRangeStart(value IDocumentPosition)

func (*SearchResult) Validate ¶

func (obj *SearchResult) Validate() error

type SearchResultsCollection ¶

type SearchResultsCollection struct {
	// The collection of search results.
	Link IWordsApiLink `json:"Link,omitempty"`

	// The collection of search results.
	ResultsList []ISearchResult `json:"ResultsList,omitempty"`
}

func (*SearchResultsCollection) CollectFilesContent ¶

func (obj *SearchResultsCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SearchResultsCollection) Deserialize ¶

func (obj *SearchResultsCollection) Deserialize(json map[string]interface{})
func (obj *SearchResultsCollection) GetLink() IWordsApiLink

func (*SearchResultsCollection) GetResultsList ¶

func (obj *SearchResultsCollection) GetResultsList() []ISearchResult

func (*SearchResultsCollection) Initialize ¶

func (obj *SearchResultsCollection) Initialize()

func (SearchResultsCollection) IsLinkElement ¶

func (SearchResultsCollection) IsLinkElement() bool

func (SearchResultsCollection) IsSearchResultsCollection ¶

func (SearchResultsCollection) IsSearchResultsCollection() bool
func (obj *SearchResultsCollection) SetLink(value IWordsApiLink)

func (*SearchResultsCollection) SetResultsList ¶

func (obj *SearchResultsCollection) SetResultsList(value []ISearchResult)

func (*SearchResultsCollection) Validate ¶

func (obj *SearchResultsCollection) Validate() error

type Section ¶

type Section struct {
	// DTO container with a section element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a section element.
	ChildNodes []INodeLink `json:"ChildNodes,omitempty"`

	// DTO container with a section element.
	Paragraphs ILinkElement `json:"Paragraphs,omitempty"`

	// DTO container with a section element.
	PageSetup ILinkElement `json:"PageSetup,omitempty"`

	// DTO container with a section element.
	HeaderFooters ILinkElement `json:"HeaderFooters,omitempty"`

	// DTO container with a section element.
	Tables ILinkElement `json:"Tables,omitempty"`
}

func (*Section) CollectFilesContent ¶

func (obj *Section) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Section) Deserialize ¶

func (obj *Section) Deserialize(json map[string]interface{})

func (*Section) GetChildNodes ¶

func (obj *Section) GetChildNodes() []INodeLink

func (*Section) GetHeaderFooters ¶

func (obj *Section) GetHeaderFooters() ILinkElement
func (obj *Section) GetLink() IWordsApiLink

func (*Section) GetPageSetup ¶

func (obj *Section) GetPageSetup() ILinkElement

func (*Section) GetParagraphs ¶

func (obj *Section) GetParagraphs() ILinkElement

func (*Section) GetTables ¶

func (obj *Section) GetTables() ILinkElement

func (*Section) Initialize ¶

func (obj *Section) Initialize()

func (Section) IsLinkElement ¶

func (Section) IsLinkElement() bool

func (Section) IsSection ¶

func (Section) IsSection() bool

func (*Section) SetChildNodes ¶

func (obj *Section) SetChildNodes(value []INodeLink)

func (*Section) SetHeaderFooters ¶

func (obj *Section) SetHeaderFooters(value ILinkElement)
func (obj *Section) SetLink(value IWordsApiLink)

func (*Section) SetPageSetup ¶

func (obj *Section) SetPageSetup(value ILinkElement)

func (*Section) SetParagraphs ¶

func (obj *Section) SetParagraphs(value ILinkElement)

func (*Section) SetTables ¶

func (obj *Section) SetTables(value ILinkElement)

func (*Section) Validate ¶

func (obj *Section) Validate() error
type SectionLink struct {
	// Section link element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Section link element.
	NodeId *string `json:"NodeId,omitempty"`
}

func (*SectionLink) CollectFilesContent ¶

func (obj *SectionLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SectionLink) Deserialize ¶

func (obj *SectionLink) Deserialize(json map[string]interface{})
func (obj *SectionLink) GetLink() IWordsApiLink

func (*SectionLink) GetNodeId ¶

func (obj *SectionLink) GetNodeId() *string

func (*SectionLink) Initialize ¶

func (obj *SectionLink) Initialize()

func (SectionLink) IsLinkElement ¶

func (SectionLink) IsLinkElement() bool
func (SectionLink) IsNodeLink() bool
func (SectionLink) IsSectionLink() bool
func (obj *SectionLink) SetLink(value IWordsApiLink)

func (*SectionLink) SetNodeId ¶

func (obj *SectionLink) SetNodeId(value *string)

func (*SectionLink) Validate ¶

func (obj *SectionLink) Validate() error

type SectionLinkCollection ¶

type SectionLinkCollection struct {
	// The collection of section's links.
	Link IWordsApiLink `json:"Link,omitempty"`

	// The collection of section's links.
	SectionLinkList []ISectionLink `json:"SectionLinkList,omitempty"`
}

func (*SectionLinkCollection) CollectFilesContent ¶

func (obj *SectionLinkCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SectionLinkCollection) Deserialize ¶

func (obj *SectionLinkCollection) Deserialize(json map[string]interface{})
func (obj *SectionLinkCollection) GetLink() IWordsApiLink
func (obj *SectionLinkCollection) GetSectionLinkList() []ISectionLink

func (*SectionLinkCollection) Initialize ¶

func (obj *SectionLinkCollection) Initialize()

func (SectionLinkCollection) IsLinkElement ¶

func (SectionLinkCollection) IsLinkElement() bool

func (SectionLinkCollection) IsSectionLinkCollection ¶

func (SectionLinkCollection) IsSectionLinkCollection() bool
func (obj *SectionLinkCollection) SetLink(value IWordsApiLink)
func (obj *SectionLinkCollection) SetSectionLinkList(value []ISectionLink)

func (*SectionLinkCollection) Validate ¶

func (obj *SectionLinkCollection) Validate() error

type SectionLinkCollectionResponse ¶

type SectionLinkCollectionResponse struct {
	// The REST response with a collection of sections.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/sections" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of sections.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/sections" REST API requests.
	Sections ISectionLinkCollection `json:"Sections,omitempty"`
}

func (*SectionLinkCollectionResponse) CollectFilesContent ¶

func (obj *SectionLinkCollectionResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SectionLinkCollectionResponse) Deserialize ¶

func (obj *SectionLinkCollectionResponse) Deserialize(json map[string]interface{})

func (*SectionLinkCollectionResponse) GetRequestId ¶

func (obj *SectionLinkCollectionResponse) GetRequestId() *string

func (*SectionLinkCollectionResponse) GetSections ¶

func (*SectionLinkCollectionResponse) Initialize ¶

func (obj *SectionLinkCollectionResponse) Initialize()

func (SectionLinkCollectionResponse) IsSectionLinkCollectionResponse ¶

func (SectionLinkCollectionResponse) IsSectionLinkCollectionResponse() bool

func (SectionLinkCollectionResponse) IsWordsResponse ¶

func (SectionLinkCollectionResponse) IsWordsResponse() bool

func (*SectionLinkCollectionResponse) SetRequestId ¶

func (obj *SectionLinkCollectionResponse) SetRequestId(value *string)

func (*SectionLinkCollectionResponse) SetSections ¶

func (obj *SectionLinkCollectionResponse) SetSections(value ISectionLinkCollection)

func (*SectionLinkCollectionResponse) Validate ¶

func (obj *SectionLinkCollectionResponse) Validate() error

type SectionPageSetupResponse ¶

type SectionPageSetupResponse struct {
	// The REST response with a page setup of a section.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/sections/{0}/PageSetup" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a page setup of a section.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/sections/{0}/PageSetup" REST API requests.
	PageSetup IPageSetup `json:"PageSetup,omitempty"`
}

func (*SectionPageSetupResponse) CollectFilesContent ¶

func (obj *SectionPageSetupResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SectionPageSetupResponse) Deserialize ¶

func (obj *SectionPageSetupResponse) Deserialize(json map[string]interface{})

func (*SectionPageSetupResponse) GetPageSetup ¶

func (obj *SectionPageSetupResponse) GetPageSetup() IPageSetup

func (*SectionPageSetupResponse) GetRequestId ¶

func (obj *SectionPageSetupResponse) GetRequestId() *string

func (*SectionPageSetupResponse) Initialize ¶

func (obj *SectionPageSetupResponse) Initialize()

func (SectionPageSetupResponse) IsSectionPageSetupResponse ¶

func (SectionPageSetupResponse) IsSectionPageSetupResponse() bool

func (SectionPageSetupResponse) IsWordsResponse ¶

func (SectionPageSetupResponse) IsWordsResponse() bool

func (*SectionPageSetupResponse) SetPageSetup ¶

func (obj *SectionPageSetupResponse) SetPageSetup(value IPageSetup)

func (*SectionPageSetupResponse) SetRequestId ¶

func (obj *SectionPageSetupResponse) SetRequestId(value *string)

func (*SectionPageSetupResponse) Validate ¶

func (obj *SectionPageSetupResponse) Validate() error

type SectionResponse ¶

type SectionResponse struct {
	// The REST response with a section.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/sections/{0}" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a section.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/sections/{0}" REST API requests.
	Section ISection `json:"Section,omitempty"`
}

func (*SectionResponse) CollectFilesContent ¶

func (obj *SectionResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SectionResponse) Deserialize ¶

func (obj *SectionResponse) Deserialize(json map[string]interface{})

func (*SectionResponse) GetRequestId ¶

func (obj *SectionResponse) GetRequestId() *string

func (*SectionResponse) GetSection ¶

func (obj *SectionResponse) GetSection() ISection

func (*SectionResponse) Initialize ¶

func (obj *SectionResponse) Initialize()

func (SectionResponse) IsSectionResponse ¶

func (SectionResponse) IsSectionResponse() bool

func (SectionResponse) IsWordsResponse ¶

func (SectionResponse) IsWordsResponse() bool

func (*SectionResponse) SetRequestId ¶

func (obj *SectionResponse) SetRequestId(value *string)

func (*SectionResponse) SetSection ¶

func (obj *SectionResponse) SetSection(value ISection)

func (*SectionResponse) Validate ¶

func (obj *SectionResponse) Validate() error

type Shading ¶

type Shading struct {
	// DTO container with a paragraph format shading element.
	BackgroundPatternColor IXmlColor `json:"BackgroundPatternColor,omitempty"`

	// DTO container with a paragraph format shading element.
	ForegroundPatternColor IXmlColor `json:"ForegroundPatternColor,omitempty"`

	// DTO container with a paragraph format shading element.
	Texture *string `json:"Texture,omitempty"`
}

func (*Shading) CollectFilesContent ¶

func (obj *Shading) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Shading) Deserialize ¶

func (obj *Shading) Deserialize(json map[string]interface{})

func (*Shading) GetBackgroundPatternColor ¶

func (obj *Shading) GetBackgroundPatternColor() IXmlColor

func (*Shading) GetForegroundPatternColor ¶

func (obj *Shading) GetForegroundPatternColor() IXmlColor

func (*Shading) GetTexture ¶

func (obj *Shading) GetTexture() *string

func (*Shading) Initialize ¶

func (obj *Shading) Initialize()

func (Shading) IsShading ¶

func (Shading) IsShading() bool

func (*Shading) SetBackgroundPatternColor ¶

func (obj *Shading) SetBackgroundPatternColor(value IXmlColor)

func (*Shading) SetForegroundPatternColor ¶

func (obj *Shading) SetForegroundPatternColor(value IXmlColor)

func (*Shading) SetTexture ¶

func (obj *Shading) SetTexture(value *string)

func (*Shading) Validate ¶

func (obj *Shading) Validate() error

type SplitDocumentOnlineRequest ¶

type SplitDocumentOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The format to split.
	Format *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "from" value: (*int32) The start page.
	   key: "to" value: (*int32) The end page.
	   key: "zipOutput" value: (*bool) The flag indicating whether to ZIP the output.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

SplitDocumentOnlineRequest contains request data for WordsApiService.SplitDocumentOnline method.

func (*SplitDocumentOnlineRequest) CreateRequestData ¶

func (data *SplitDocumentOnlineRequest) CreateRequestData() (RequestData, error)

func (*SplitDocumentOnlineRequest) CreateResponse ¶

func (data *SplitDocumentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type SplitDocumentOnlineResponse ¶

type SplitDocumentOnlineResponse struct {
	// The REST response with a result of document splitting.
	// This response should be returned by the service when handling: POST /{name}/split.
	Model ISplitDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

SplitDocumentOnlineResponse struct Splits a document into parts and saves them in the specified format.

func (*SplitDocumentOnlineResponse) GetDocument ¶

func (obj *SplitDocumentOnlineResponse) GetDocument() map[string]io.Reader

func (*SplitDocumentOnlineResponse) GetModel ¶

func (*SplitDocumentOnlineResponse) SetDocument ¶

func (obj *SplitDocumentOnlineResponse) SetDocument(value map[string]io.Reader)

func (*SplitDocumentOnlineResponse) SetModel ¶

type SplitDocumentRequest ¶

type SplitDocumentRequest struct {
	// The filename of the input document.
	Name *string
	// The format to split.
	Format *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "from" value: (*int32) The start page.
	   key: "to" value: (*int32) The end page.
	   key: "zipOutput" value: (*bool) The flag indicating whether to ZIP the output.
	   key: "fontsLocation" value: (*string) Folder in filestorage with custom fonts. */
	Optionals map[string]interface{}
}

SplitDocumentRequest contains request data for WordsApiService.SplitDocument method.

func (*SplitDocumentRequest) CreateRequestData ¶

func (data *SplitDocumentRequest) CreateRequestData() (RequestData, error)

func (*SplitDocumentRequest) CreateResponse ¶

func (data *SplitDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type SplitDocumentResponse ¶

type SplitDocumentResponse struct {
	// The REST response with a result of document splitting.
	// This response should be returned by the service when handling: POST /{name}/split.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a result of document splitting.
	// This response should be returned by the service when handling: POST /{name}/split.
	SplitResult ISplitDocumentResult `json:"SplitResult,omitempty"`
}

func (*SplitDocumentResponse) CollectFilesContent ¶

func (obj *SplitDocumentResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SplitDocumentResponse) Deserialize ¶

func (obj *SplitDocumentResponse) Deserialize(json map[string]interface{})

func (*SplitDocumentResponse) GetRequestId ¶

func (obj *SplitDocumentResponse) GetRequestId() *string

func (*SplitDocumentResponse) GetSplitResult ¶

func (obj *SplitDocumentResponse) GetSplitResult() ISplitDocumentResult

func (*SplitDocumentResponse) Initialize ¶

func (obj *SplitDocumentResponse) Initialize()

func (SplitDocumentResponse) IsSplitDocumentResponse ¶

func (SplitDocumentResponse) IsSplitDocumentResponse() bool

func (SplitDocumentResponse) IsWordsResponse ¶

func (SplitDocumentResponse) IsWordsResponse() bool

func (*SplitDocumentResponse) SetRequestId ¶

func (obj *SplitDocumentResponse) SetRequestId(value *string)

func (*SplitDocumentResponse) SetSplitResult ¶

func (obj *SplitDocumentResponse) SetSplitResult(value ISplitDocumentResult)

func (*SplitDocumentResponse) Validate ¶

func (obj *SplitDocumentResponse) Validate() error

type SplitDocumentResult ¶

type SplitDocumentResult struct {
	// Result of splitting document.
	SourceDocument IFileLink `json:"SourceDocument,omitempty"`

	// Result of splitting document.
	ZippedPages IFileLink `json:"ZippedPages,omitempty"`

	// Result of splitting document.
	Pages []IFileLink `json:"Pages,omitempty"`
}

func (*SplitDocumentResult) CollectFilesContent ¶

func (obj *SplitDocumentResult) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SplitDocumentResult) Deserialize ¶

func (obj *SplitDocumentResult) Deserialize(json map[string]interface{})

func (*SplitDocumentResult) GetPages ¶

func (obj *SplitDocumentResult) GetPages() []IFileLink

func (*SplitDocumentResult) GetSourceDocument ¶

func (obj *SplitDocumentResult) GetSourceDocument() IFileLink

func (*SplitDocumentResult) GetZippedPages ¶

func (obj *SplitDocumentResult) GetZippedPages() IFileLink

func (*SplitDocumentResult) Initialize ¶

func (obj *SplitDocumentResult) Initialize()

func (SplitDocumentResult) IsSplitDocumentResult ¶

func (SplitDocumentResult) IsSplitDocumentResult() bool

func (*SplitDocumentResult) SetPages ¶

func (obj *SplitDocumentResult) SetPages(value []IFileLink)

func (*SplitDocumentResult) SetSourceDocument ¶

func (obj *SplitDocumentResult) SetSourceDocument(value IFileLink)

func (*SplitDocumentResult) SetZippedPages ¶

func (obj *SplitDocumentResult) SetZippedPages(value IFileLink)

func (*SplitDocumentResult) Validate ¶

func (obj *SplitDocumentResult) Validate() error

type StatDataResponse ¶

type StatDataResponse struct {
	// The REST response with document's statistical data.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with document's statistical data.
	DocumentLink IFileLink `json:"DocumentLink,omitempty"`

	// The REST response with document's statistical data.
	StatData IDocumentStatData `json:"StatData,omitempty"`
}

func (*StatDataResponse) CollectFilesContent ¶

func (obj *StatDataResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StatDataResponse) Deserialize ¶

func (obj *StatDataResponse) Deserialize(json map[string]interface{})
func (obj *StatDataResponse) GetDocumentLink() IFileLink

func (*StatDataResponse) GetRequestId ¶

func (obj *StatDataResponse) GetRequestId() *string

func (*StatDataResponse) GetStatData ¶

func (obj *StatDataResponse) GetStatData() IDocumentStatData

func (*StatDataResponse) Initialize ¶

func (obj *StatDataResponse) Initialize()

func (StatDataResponse) IsStatDataResponse ¶

func (StatDataResponse) IsStatDataResponse() bool

func (StatDataResponse) IsWordsResponse ¶

func (StatDataResponse) IsWordsResponse() bool
func (obj *StatDataResponse) SetDocumentLink(value IFileLink)

func (*StatDataResponse) SetRequestId ¶

func (obj *StatDataResponse) SetRequestId(value *string)

func (*StatDataResponse) SetStatData ¶

func (obj *StatDataResponse) SetStatData(value IDocumentStatData)

func (*StatDataResponse) Validate ¶

func (obj *StatDataResponse) Validate() error

type StorageFile ¶

type StorageFile struct {
	// File or folder information.
	IsFolder *bool `json:"IsFolder,omitempty"`

	// File or folder information.
	ModifiedDate *Time `json:"ModifiedDate,omitempty"`

	// File or folder information.
	Name *string `json:"Name,omitempty"`

	// File or folder information.
	Path *string `json:"Path,omitempty"`

	// File or folder information.
	Size *int32 `json:"Size,omitempty"`
}

func (*StorageFile) CollectFilesContent ¶

func (obj *StorageFile) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StorageFile) Deserialize ¶

func (obj *StorageFile) Deserialize(json map[string]interface{})

func (*StorageFile) GetIsFolder ¶

func (obj *StorageFile) GetIsFolder() *bool

func (*StorageFile) GetModifiedDate ¶

func (obj *StorageFile) GetModifiedDate() *Time

func (*StorageFile) GetName ¶

func (obj *StorageFile) GetName() *string

func (*StorageFile) GetPath ¶

func (obj *StorageFile) GetPath() *string

func (*StorageFile) GetSize ¶

func (obj *StorageFile) GetSize() *int32

func (*StorageFile) Initialize ¶

func (obj *StorageFile) Initialize()

func (StorageFile) IsStorageFile ¶

func (StorageFile) IsStorageFile() bool

func (*StorageFile) SetIsFolder ¶

func (obj *StorageFile) SetIsFolder(value *bool)

func (*StorageFile) SetModifiedDate ¶

func (obj *StorageFile) SetModifiedDate(value *Time)

func (*StorageFile) SetName ¶

func (obj *StorageFile) SetName(value *string)

func (*StorageFile) SetPath ¶

func (obj *StorageFile) SetPath(value *string)

func (*StorageFile) SetSize ¶

func (obj *StorageFile) SetSize(value *int32)

func (*StorageFile) Validate ¶

func (obj *StorageFile) Validate() error

type StoryChildNodes ¶

type StoryChildNodes struct {
	// Child nodes of Story or InlineStory.
	ChildNodes []INodeLink `json:"ChildNodes,omitempty"`
}

func (*StoryChildNodes) CollectFilesContent ¶

func (obj *StoryChildNodes) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StoryChildNodes) Deserialize ¶

func (obj *StoryChildNodes) Deserialize(json map[string]interface{})

func (*StoryChildNodes) GetChildNodes ¶

func (obj *StoryChildNodes) GetChildNodes() []INodeLink

func (*StoryChildNodes) Initialize ¶

func (obj *StoryChildNodes) Initialize()

func (StoryChildNodes) IsStoryChildNodes ¶

func (StoryChildNodes) IsStoryChildNodes() bool

func (*StoryChildNodes) SetChildNodes ¶

func (obj *StoryChildNodes) SetChildNodes(value []INodeLink)

func (*StoryChildNodes) Validate ¶

func (obj *StoryChildNodes) Validate() error

type StructuredDocumentTag ¶

type StructuredDocumentTag struct {
	// DTO container with a StructuredDocumentTag.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a StructuredDocumentTag.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with a StructuredDocumentTag.
	ListItems []IStructuredDocumentTagListItem `json:"ListItems,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Checked *bool `json:"Checked,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Appearance *string `json:"Appearance,omitempty"`

	// DTO container with a StructuredDocumentTag.
	DateDisplayLocale *int32 `json:"DateDisplayLocale,omitempty"`

	// DTO container with a StructuredDocumentTag.
	DateDisplayFormat *string `json:"DateDisplayFormat,omitempty"`

	// DTO container with a StructuredDocumentTag.
	FullDate *Time `json:"FullDate,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Title *string `json:"Title,omitempty"`

	// DTO container with a StructuredDocumentTag.
	DateStorageFormat *string `json:"DateStorageFormat,omitempty"`

	// DTO container with a StructuredDocumentTag.
	BuildingBlockGallery *string `json:"BuildingBlockGallery,omitempty"`

	// DTO container with a StructuredDocumentTag.
	BuildingBlockCategory *string `json:"BuildingBlockCategory,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Multiline *bool `json:"Multiline,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Color IXmlColor `json:"Color,omitempty"`

	// DTO container with a StructuredDocumentTag.
	StyleName *string `json:"StyleName,omitempty"`

	// DTO container with a StructuredDocumentTag.
	CalendarType *string `json:"CalendarType,omitempty"`

	// DTO container with a StructuredDocumentTag.
	IsTemporary *bool `json:"IsTemporary,omitempty"`

	// DTO container with a StructuredDocumentTag.
	PlaceholderName *string `json:"PlaceholderName,omitempty"`

	// DTO container with a StructuredDocumentTag.
	LockContentControl *bool `json:"LockContentControl,omitempty"`

	// DTO container with a StructuredDocumentTag.
	LockContents *bool `json:"LockContents,omitempty"`

	// DTO container with a StructuredDocumentTag.
	IsShowingPlaceholderText *bool `json:"IsShowingPlaceholderText,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Tag *string `json:"Tag,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Id *int32 `json:"Id,omitempty"`

	// DTO container with a StructuredDocumentTag.
	WordOpenXML *string `json:"WordOpenXML,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Level *string `json:"Level,omitempty"`

	// DTO container with a StructuredDocumentTag.
	SdtType *string `json:"SdtType,omitempty"`
}

func (*StructuredDocumentTag) CollectFilesContent ¶

func (obj *StructuredDocumentTag) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StructuredDocumentTag) Deserialize ¶

func (obj *StructuredDocumentTag) Deserialize(json map[string]interface{})

func (*StructuredDocumentTag) GetAppearance ¶

func (obj *StructuredDocumentTag) GetAppearance() *string

func (*StructuredDocumentTag) GetBuildingBlockCategory ¶

func (obj *StructuredDocumentTag) GetBuildingBlockCategory() *string

func (*StructuredDocumentTag) GetBuildingBlockGallery ¶

func (obj *StructuredDocumentTag) GetBuildingBlockGallery() *string

func (*StructuredDocumentTag) GetCalendarType ¶

func (obj *StructuredDocumentTag) GetCalendarType() *string

func (*StructuredDocumentTag) GetChecked ¶

func (obj *StructuredDocumentTag) GetChecked() *bool

func (*StructuredDocumentTag) GetColor ¶

func (obj *StructuredDocumentTag) GetColor() IXmlColor

func (*StructuredDocumentTag) GetDateDisplayFormat ¶

func (obj *StructuredDocumentTag) GetDateDisplayFormat() *string

func (*StructuredDocumentTag) GetDateDisplayLocale ¶

func (obj *StructuredDocumentTag) GetDateDisplayLocale() *int32

func (*StructuredDocumentTag) GetDateStorageFormat ¶

func (obj *StructuredDocumentTag) GetDateStorageFormat() *string

func (*StructuredDocumentTag) GetFullDate ¶

func (obj *StructuredDocumentTag) GetFullDate() *Time

func (*StructuredDocumentTag) GetId ¶

func (obj *StructuredDocumentTag) GetId() *int32

func (*StructuredDocumentTag) GetIsShowingPlaceholderText ¶

func (obj *StructuredDocumentTag) GetIsShowingPlaceholderText() *bool

func (*StructuredDocumentTag) GetIsTemporary ¶

func (obj *StructuredDocumentTag) GetIsTemporary() *bool

func (*StructuredDocumentTag) GetLevel ¶

func (obj *StructuredDocumentTag) GetLevel() *string
func (obj *StructuredDocumentTag) GetLink() IWordsApiLink

func (*StructuredDocumentTag) GetListItems ¶

func (*StructuredDocumentTag) GetLockContentControl ¶

func (obj *StructuredDocumentTag) GetLockContentControl() *bool

func (*StructuredDocumentTag) GetLockContents ¶

func (obj *StructuredDocumentTag) GetLockContents() *bool

func (*StructuredDocumentTag) GetMultiline ¶

func (obj *StructuredDocumentTag) GetMultiline() *bool

func (*StructuredDocumentTag) GetNodeId ¶

func (obj *StructuredDocumentTag) GetNodeId() *string

func (*StructuredDocumentTag) GetPlaceholderName ¶

func (obj *StructuredDocumentTag) GetPlaceholderName() *string

func (*StructuredDocumentTag) GetSdtType ¶

func (obj *StructuredDocumentTag) GetSdtType() *string

func (*StructuredDocumentTag) GetStyleName ¶

func (obj *StructuredDocumentTag) GetStyleName() *string

func (*StructuredDocumentTag) GetTag ¶

func (obj *StructuredDocumentTag) GetTag() *string

func (*StructuredDocumentTag) GetTitle ¶

func (obj *StructuredDocumentTag) GetTitle() *string

func (*StructuredDocumentTag) GetWordOpenXML ¶

func (obj *StructuredDocumentTag) GetWordOpenXML() *string

func (*StructuredDocumentTag) Initialize ¶

func (obj *StructuredDocumentTag) Initialize()

func (StructuredDocumentTag) IsLinkElement ¶

func (StructuredDocumentTag) IsLinkElement() bool
func (StructuredDocumentTag) IsNodeLink() bool

func (StructuredDocumentTag) IsStructuredDocumentTag ¶

func (StructuredDocumentTag) IsStructuredDocumentTag() bool

func (StructuredDocumentTag) IsStructuredDocumentTagBase ¶

func (StructuredDocumentTag) IsStructuredDocumentTagBase() bool

func (*StructuredDocumentTag) SetAppearance ¶

func (obj *StructuredDocumentTag) SetAppearance(value *string)

func (*StructuredDocumentTag) SetBuildingBlockCategory ¶

func (obj *StructuredDocumentTag) SetBuildingBlockCategory(value *string)

func (*StructuredDocumentTag) SetBuildingBlockGallery ¶

func (obj *StructuredDocumentTag) SetBuildingBlockGallery(value *string)

func (*StructuredDocumentTag) SetCalendarType ¶

func (obj *StructuredDocumentTag) SetCalendarType(value *string)

func (*StructuredDocumentTag) SetChecked ¶

func (obj *StructuredDocumentTag) SetChecked(value *bool)

func (*StructuredDocumentTag) SetColor ¶

func (obj *StructuredDocumentTag) SetColor(value IXmlColor)

func (*StructuredDocumentTag) SetDateDisplayFormat ¶

func (obj *StructuredDocumentTag) SetDateDisplayFormat(value *string)

func (*StructuredDocumentTag) SetDateDisplayLocale ¶

func (obj *StructuredDocumentTag) SetDateDisplayLocale(value *int32)

func (*StructuredDocumentTag) SetDateStorageFormat ¶

func (obj *StructuredDocumentTag) SetDateStorageFormat(value *string)

func (*StructuredDocumentTag) SetFullDate ¶

func (obj *StructuredDocumentTag) SetFullDate(value *Time)

func (*StructuredDocumentTag) SetId ¶

func (obj *StructuredDocumentTag) SetId(value *int32)

func (*StructuredDocumentTag) SetIsShowingPlaceholderText ¶

func (obj *StructuredDocumentTag) SetIsShowingPlaceholderText(value *bool)

func (*StructuredDocumentTag) SetIsTemporary ¶

func (obj *StructuredDocumentTag) SetIsTemporary(value *bool)

func (*StructuredDocumentTag) SetLevel ¶

func (obj *StructuredDocumentTag) SetLevel(value *string)
func (obj *StructuredDocumentTag) SetLink(value IWordsApiLink)

func (*StructuredDocumentTag) SetListItems ¶

func (obj *StructuredDocumentTag) SetListItems(value []IStructuredDocumentTagListItem)

func (*StructuredDocumentTag) SetLockContentControl ¶

func (obj *StructuredDocumentTag) SetLockContentControl(value *bool)

func (*StructuredDocumentTag) SetLockContents ¶

func (obj *StructuredDocumentTag) SetLockContents(value *bool)

func (*StructuredDocumentTag) SetMultiline ¶

func (obj *StructuredDocumentTag) SetMultiline(value *bool)

func (*StructuredDocumentTag) SetNodeId ¶

func (obj *StructuredDocumentTag) SetNodeId(value *string)

func (*StructuredDocumentTag) SetPlaceholderName ¶

func (obj *StructuredDocumentTag) SetPlaceholderName(value *string)

func (*StructuredDocumentTag) SetSdtType ¶

func (obj *StructuredDocumentTag) SetSdtType(value *string)

func (*StructuredDocumentTag) SetStyleName ¶

func (obj *StructuredDocumentTag) SetStyleName(value *string)

func (*StructuredDocumentTag) SetTag ¶

func (obj *StructuredDocumentTag) SetTag(value *string)

func (*StructuredDocumentTag) SetTitle ¶

func (obj *StructuredDocumentTag) SetTitle(value *string)

func (*StructuredDocumentTag) SetWordOpenXML ¶

func (obj *StructuredDocumentTag) SetWordOpenXML(value *string)

func (*StructuredDocumentTag) Validate ¶

func (obj *StructuredDocumentTag) Validate() error

type StructuredDocumentTagCollection ¶

type StructuredDocumentTagCollection struct {
	// DTO container with a collection of StructuredDocumentTags links.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a collection of StructuredDocumentTags links.
	List []IStructuredDocumentTag `json:"List,omitempty"`
}

func (*StructuredDocumentTagCollection) CollectFilesContent ¶

func (obj *StructuredDocumentTagCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StructuredDocumentTagCollection) Deserialize ¶

func (obj *StructuredDocumentTagCollection) Deserialize(json map[string]interface{})

func (*StructuredDocumentTagCollection) GetList ¶

func (*StructuredDocumentTagCollection) Initialize ¶

func (obj *StructuredDocumentTagCollection) Initialize()

func (StructuredDocumentTagCollection) IsLinkElement ¶

func (StructuredDocumentTagCollection) IsLinkElement() bool

func (StructuredDocumentTagCollection) IsStructuredDocumentTagCollection ¶

func (StructuredDocumentTagCollection) IsStructuredDocumentTagCollection() bool
func (obj *StructuredDocumentTagCollection) SetLink(value IWordsApiLink)

func (*StructuredDocumentTagCollection) SetList ¶

func (*StructuredDocumentTagCollection) Validate ¶

func (obj *StructuredDocumentTagCollection) Validate() error

type StructuredDocumentTagInsert ¶

type StructuredDocumentTagInsert struct {
	// DTO container with a StructuredDocumentTag.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a StructuredDocumentTag.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with a StructuredDocumentTag.
	ListItems []IStructuredDocumentTagListItem `json:"ListItems,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Checked *bool `json:"Checked,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Appearance *string `json:"Appearance,omitempty"`

	// DTO container with a StructuredDocumentTag.
	DateDisplayLocale *int32 `json:"DateDisplayLocale,omitempty"`

	// DTO container with a StructuredDocumentTag.
	DateDisplayFormat *string `json:"DateDisplayFormat,omitempty"`

	// DTO container with a StructuredDocumentTag.
	FullDate *Time `json:"FullDate,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Title *string `json:"Title,omitempty"`

	// DTO container with a StructuredDocumentTag.
	DateStorageFormat *string `json:"DateStorageFormat,omitempty"`

	// DTO container with a StructuredDocumentTag.
	BuildingBlockGallery *string `json:"BuildingBlockGallery,omitempty"`

	// DTO container with a StructuredDocumentTag.
	BuildingBlockCategory *string `json:"BuildingBlockCategory,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Multiline *bool `json:"Multiline,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Color IXmlColor `json:"Color,omitempty"`

	// DTO container with a StructuredDocumentTag.
	StyleName *string `json:"StyleName,omitempty"`

	// DTO container with a StructuredDocumentTag.
	CalendarType *string `json:"CalendarType,omitempty"`

	// DTO container with a StructuredDocumentTag.
	IsTemporary *bool `json:"IsTemporary,omitempty"`

	// DTO container with a StructuredDocumentTag.
	PlaceholderName *string `json:"PlaceholderName,omitempty"`

	// DTO container with a StructuredDocumentTag.
	LockContentControl *bool `json:"LockContentControl,omitempty"`

	// DTO container with a StructuredDocumentTag.
	LockContents *bool `json:"LockContents,omitempty"`

	// DTO container with a StructuredDocumentTag.
	IsShowingPlaceholderText *bool `json:"IsShowingPlaceholderText,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Tag *string `json:"Tag,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Id *int32 `json:"Id,omitempty"`

	// DTO container with a StructuredDocumentTag.
	WordOpenXML *string `json:"WordOpenXML,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Level *string `json:"Level,omitempty"`

	// DTO container with a StructuredDocumentTag.
	SdtType *string `json:"SdtType,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Position IPosition `json:"Position,omitempty"`
}

func (*StructuredDocumentTagInsert) CollectFilesContent ¶

func (obj *StructuredDocumentTagInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StructuredDocumentTagInsert) Deserialize ¶

func (obj *StructuredDocumentTagInsert) Deserialize(json map[string]interface{})

func (*StructuredDocumentTagInsert) GetAppearance ¶

func (obj *StructuredDocumentTagInsert) GetAppearance() *string

func (*StructuredDocumentTagInsert) GetBuildingBlockCategory ¶

func (obj *StructuredDocumentTagInsert) GetBuildingBlockCategory() *string

func (*StructuredDocumentTagInsert) GetBuildingBlockGallery ¶

func (obj *StructuredDocumentTagInsert) GetBuildingBlockGallery() *string

func (*StructuredDocumentTagInsert) GetCalendarType ¶

func (obj *StructuredDocumentTagInsert) GetCalendarType() *string

func (*StructuredDocumentTagInsert) GetChecked ¶

func (obj *StructuredDocumentTagInsert) GetChecked() *bool

func (*StructuredDocumentTagInsert) GetColor ¶

func (obj *StructuredDocumentTagInsert) GetColor() IXmlColor

func (*StructuredDocumentTagInsert) GetDateDisplayFormat ¶

func (obj *StructuredDocumentTagInsert) GetDateDisplayFormat() *string

func (*StructuredDocumentTagInsert) GetDateDisplayLocale ¶

func (obj *StructuredDocumentTagInsert) GetDateDisplayLocale() *int32

func (*StructuredDocumentTagInsert) GetDateStorageFormat ¶

func (obj *StructuredDocumentTagInsert) GetDateStorageFormat() *string

func (*StructuredDocumentTagInsert) GetFullDate ¶

func (obj *StructuredDocumentTagInsert) GetFullDate() *Time

func (*StructuredDocumentTagInsert) GetId ¶

func (obj *StructuredDocumentTagInsert) GetId() *int32

func (*StructuredDocumentTagInsert) GetIsShowingPlaceholderText ¶

func (obj *StructuredDocumentTagInsert) GetIsShowingPlaceholderText() *bool

func (*StructuredDocumentTagInsert) GetIsTemporary ¶

func (obj *StructuredDocumentTagInsert) GetIsTemporary() *bool

func (*StructuredDocumentTagInsert) GetLevel ¶

func (obj *StructuredDocumentTagInsert) GetLevel() *string

func (*StructuredDocumentTagInsert) GetListItems ¶

func (*StructuredDocumentTagInsert) GetLockContentControl ¶

func (obj *StructuredDocumentTagInsert) GetLockContentControl() *bool

func (*StructuredDocumentTagInsert) GetLockContents ¶

func (obj *StructuredDocumentTagInsert) GetLockContents() *bool

func (*StructuredDocumentTagInsert) GetMultiline ¶

func (obj *StructuredDocumentTagInsert) GetMultiline() *bool

func (*StructuredDocumentTagInsert) GetNodeId ¶

func (obj *StructuredDocumentTagInsert) GetNodeId() *string

func (*StructuredDocumentTagInsert) GetPlaceholderName ¶

func (obj *StructuredDocumentTagInsert) GetPlaceholderName() *string

func (*StructuredDocumentTagInsert) GetPosition ¶

func (obj *StructuredDocumentTagInsert) GetPosition() IPosition

func (*StructuredDocumentTagInsert) GetSdtType ¶

func (obj *StructuredDocumentTagInsert) GetSdtType() *string

func (*StructuredDocumentTagInsert) GetStyleName ¶

func (obj *StructuredDocumentTagInsert) GetStyleName() *string

func (*StructuredDocumentTagInsert) GetTag ¶

func (obj *StructuredDocumentTagInsert) GetTag() *string

func (*StructuredDocumentTagInsert) GetTitle ¶

func (obj *StructuredDocumentTagInsert) GetTitle() *string

func (*StructuredDocumentTagInsert) GetWordOpenXML ¶

func (obj *StructuredDocumentTagInsert) GetWordOpenXML() *string

func (*StructuredDocumentTagInsert) Initialize ¶

func (obj *StructuredDocumentTagInsert) Initialize()

func (StructuredDocumentTagInsert) IsLinkElement ¶

func (StructuredDocumentTagInsert) IsLinkElement() bool
func (StructuredDocumentTagInsert) IsNodeLink() bool

func (StructuredDocumentTagInsert) IsStructuredDocumentTagBase ¶

func (StructuredDocumentTagInsert) IsStructuredDocumentTagBase() bool

func (StructuredDocumentTagInsert) IsStructuredDocumentTagInsert ¶

func (StructuredDocumentTagInsert) IsStructuredDocumentTagInsert() bool

func (*StructuredDocumentTagInsert) SetAppearance ¶

func (obj *StructuredDocumentTagInsert) SetAppearance(value *string)

func (*StructuredDocumentTagInsert) SetBuildingBlockCategory ¶

func (obj *StructuredDocumentTagInsert) SetBuildingBlockCategory(value *string)

func (*StructuredDocumentTagInsert) SetBuildingBlockGallery ¶

func (obj *StructuredDocumentTagInsert) SetBuildingBlockGallery(value *string)

func (*StructuredDocumentTagInsert) SetCalendarType ¶

func (obj *StructuredDocumentTagInsert) SetCalendarType(value *string)

func (*StructuredDocumentTagInsert) SetChecked ¶

func (obj *StructuredDocumentTagInsert) SetChecked(value *bool)

func (*StructuredDocumentTagInsert) SetColor ¶

func (obj *StructuredDocumentTagInsert) SetColor(value IXmlColor)

func (*StructuredDocumentTagInsert) SetDateDisplayFormat ¶

func (obj *StructuredDocumentTagInsert) SetDateDisplayFormat(value *string)

func (*StructuredDocumentTagInsert) SetDateDisplayLocale ¶

func (obj *StructuredDocumentTagInsert) SetDateDisplayLocale(value *int32)

func (*StructuredDocumentTagInsert) SetDateStorageFormat ¶

func (obj *StructuredDocumentTagInsert) SetDateStorageFormat(value *string)

func (*StructuredDocumentTagInsert) SetFullDate ¶

func (obj *StructuredDocumentTagInsert) SetFullDate(value *Time)

func (*StructuredDocumentTagInsert) SetId ¶

func (obj *StructuredDocumentTagInsert) SetId(value *int32)

func (*StructuredDocumentTagInsert) SetIsShowingPlaceholderText ¶

func (obj *StructuredDocumentTagInsert) SetIsShowingPlaceholderText(value *bool)

func (*StructuredDocumentTagInsert) SetIsTemporary ¶

func (obj *StructuredDocumentTagInsert) SetIsTemporary(value *bool)

func (*StructuredDocumentTagInsert) SetLevel ¶

func (obj *StructuredDocumentTagInsert) SetLevel(value *string)
func (obj *StructuredDocumentTagInsert) SetLink(value IWordsApiLink)

func (*StructuredDocumentTagInsert) SetListItems ¶

func (*StructuredDocumentTagInsert) SetLockContentControl ¶

func (obj *StructuredDocumentTagInsert) SetLockContentControl(value *bool)

func (*StructuredDocumentTagInsert) SetLockContents ¶

func (obj *StructuredDocumentTagInsert) SetLockContents(value *bool)

func (*StructuredDocumentTagInsert) SetMultiline ¶

func (obj *StructuredDocumentTagInsert) SetMultiline(value *bool)

func (*StructuredDocumentTagInsert) SetNodeId ¶

func (obj *StructuredDocumentTagInsert) SetNodeId(value *string)

func (*StructuredDocumentTagInsert) SetPlaceholderName ¶

func (obj *StructuredDocumentTagInsert) SetPlaceholderName(value *string)

func (*StructuredDocumentTagInsert) SetPosition ¶

func (obj *StructuredDocumentTagInsert) SetPosition(value IPosition)

func (*StructuredDocumentTagInsert) SetSdtType ¶

func (obj *StructuredDocumentTagInsert) SetSdtType(value *string)

func (*StructuredDocumentTagInsert) SetStyleName ¶

func (obj *StructuredDocumentTagInsert) SetStyleName(value *string)

func (*StructuredDocumentTagInsert) SetTag ¶

func (obj *StructuredDocumentTagInsert) SetTag(value *string)

func (*StructuredDocumentTagInsert) SetTitle ¶

func (obj *StructuredDocumentTagInsert) SetTitle(value *string)

func (*StructuredDocumentTagInsert) SetWordOpenXML ¶

func (obj *StructuredDocumentTagInsert) SetWordOpenXML(value *string)

func (*StructuredDocumentTagInsert) Validate ¶

func (obj *StructuredDocumentTagInsert) Validate() error

type StructuredDocumentTagListItem ¶

type StructuredDocumentTagListItem struct {
	// DTO container with a SdtListItem for StructuredDocumentTag.
	DisplayText *string `json:"DisplayText,omitempty"`

	// DTO container with a SdtListItem for StructuredDocumentTag.
	Value *string `json:"Value,omitempty"`
}

func (*StructuredDocumentTagListItem) CollectFilesContent ¶

func (obj *StructuredDocumentTagListItem) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StructuredDocumentTagListItem) Deserialize ¶

func (obj *StructuredDocumentTagListItem) Deserialize(json map[string]interface{})

func (*StructuredDocumentTagListItem) GetDisplayText ¶

func (obj *StructuredDocumentTagListItem) GetDisplayText() *string

func (*StructuredDocumentTagListItem) GetValue ¶

func (obj *StructuredDocumentTagListItem) GetValue() *string

func (*StructuredDocumentTagListItem) Initialize ¶

func (obj *StructuredDocumentTagListItem) Initialize()

func (StructuredDocumentTagListItem) IsStructuredDocumentTagListItem ¶

func (StructuredDocumentTagListItem) IsStructuredDocumentTagListItem() bool

func (*StructuredDocumentTagListItem) SetDisplayText ¶

func (obj *StructuredDocumentTagListItem) SetDisplayText(value *string)

func (*StructuredDocumentTagListItem) SetValue ¶

func (obj *StructuredDocumentTagListItem) SetValue(value *string)

func (*StructuredDocumentTagListItem) Validate ¶

func (obj *StructuredDocumentTagListItem) Validate() error

type StructuredDocumentTagResponse ¶

type StructuredDocumentTagResponse struct {
	// The REST response with a StructuredDocumentTag.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a StructuredDocumentTag.
	StructuredDocumentTag IStructuredDocumentTag `json:"StructuredDocumentTag,omitempty"`
}

func (*StructuredDocumentTagResponse) CollectFilesContent ¶

func (obj *StructuredDocumentTagResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StructuredDocumentTagResponse) Deserialize ¶

func (obj *StructuredDocumentTagResponse) Deserialize(json map[string]interface{})

func (*StructuredDocumentTagResponse) GetRequestId ¶

func (obj *StructuredDocumentTagResponse) GetRequestId() *string

func (*StructuredDocumentTagResponse) GetStructuredDocumentTag ¶

func (obj *StructuredDocumentTagResponse) GetStructuredDocumentTag() IStructuredDocumentTag

func (*StructuredDocumentTagResponse) Initialize ¶

func (obj *StructuredDocumentTagResponse) Initialize()

func (StructuredDocumentTagResponse) IsStructuredDocumentTagResponse ¶

func (StructuredDocumentTagResponse) IsStructuredDocumentTagResponse() bool

func (StructuredDocumentTagResponse) IsWordsResponse ¶

func (StructuredDocumentTagResponse) IsWordsResponse() bool

func (*StructuredDocumentTagResponse) SetRequestId ¶

func (obj *StructuredDocumentTagResponse) SetRequestId(value *string)

func (*StructuredDocumentTagResponse) SetStructuredDocumentTag ¶

func (obj *StructuredDocumentTagResponse) SetStructuredDocumentTag(value IStructuredDocumentTag)

func (*StructuredDocumentTagResponse) Validate ¶

func (obj *StructuredDocumentTagResponse) Validate() error

type StructuredDocumentTagUpdate ¶

type StructuredDocumentTagUpdate struct {
	// DTO container with a StructuredDocumentTag.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a StructuredDocumentTag.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with a StructuredDocumentTag.
	ListItems []IStructuredDocumentTagListItem `json:"ListItems,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Checked *bool `json:"Checked,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Appearance *string `json:"Appearance,omitempty"`

	// DTO container with a StructuredDocumentTag.
	DateDisplayLocale *int32 `json:"DateDisplayLocale,omitempty"`

	// DTO container with a StructuredDocumentTag.
	DateDisplayFormat *string `json:"DateDisplayFormat,omitempty"`

	// DTO container with a StructuredDocumentTag.
	FullDate *Time `json:"FullDate,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Title *string `json:"Title,omitempty"`

	// DTO container with a StructuredDocumentTag.
	DateStorageFormat *string `json:"DateStorageFormat,omitempty"`

	// DTO container with a StructuredDocumentTag.
	BuildingBlockGallery *string `json:"BuildingBlockGallery,omitempty"`

	// DTO container with a StructuredDocumentTag.
	BuildingBlockCategory *string `json:"BuildingBlockCategory,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Multiline *bool `json:"Multiline,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Color IXmlColor `json:"Color,omitempty"`

	// DTO container with a StructuredDocumentTag.
	StyleName *string `json:"StyleName,omitempty"`

	// DTO container with a StructuredDocumentTag.
	CalendarType *string `json:"CalendarType,omitempty"`

	// DTO container with a StructuredDocumentTag.
	IsTemporary *bool `json:"IsTemporary,omitempty"`

	// DTO container with a StructuredDocumentTag.
	PlaceholderName *string `json:"PlaceholderName,omitempty"`

	// DTO container with a StructuredDocumentTag.
	LockContentControl *bool `json:"LockContentControl,omitempty"`

	// DTO container with a StructuredDocumentTag.
	LockContents *bool `json:"LockContents,omitempty"`

	// DTO container with a StructuredDocumentTag.
	IsShowingPlaceholderText *bool `json:"IsShowingPlaceholderText,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Tag *string `json:"Tag,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Id *int32 `json:"Id,omitempty"`

	// DTO container with a StructuredDocumentTag.
	WordOpenXML *string `json:"WordOpenXML,omitempty"`

	// DTO container with a StructuredDocumentTag.
	Level *string `json:"Level,omitempty"`

	// DTO container with a StructuredDocumentTag.
	SdtType *string `json:"SdtType,omitempty"`
}

func (*StructuredDocumentTagUpdate) CollectFilesContent ¶

func (obj *StructuredDocumentTagUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StructuredDocumentTagUpdate) Deserialize ¶

func (obj *StructuredDocumentTagUpdate) Deserialize(json map[string]interface{})

func (*StructuredDocumentTagUpdate) GetAppearance ¶

func (obj *StructuredDocumentTagUpdate) GetAppearance() *string

func (*StructuredDocumentTagUpdate) GetBuildingBlockCategory ¶

func (obj *StructuredDocumentTagUpdate) GetBuildingBlockCategory() *string

func (*StructuredDocumentTagUpdate) GetBuildingBlockGallery ¶

func (obj *StructuredDocumentTagUpdate) GetBuildingBlockGallery() *string

func (*StructuredDocumentTagUpdate) GetCalendarType ¶

func (obj *StructuredDocumentTagUpdate) GetCalendarType() *string

func (*StructuredDocumentTagUpdate) GetChecked ¶

func (obj *StructuredDocumentTagUpdate) GetChecked() *bool

func (*StructuredDocumentTagUpdate) GetColor ¶

func (obj *StructuredDocumentTagUpdate) GetColor() IXmlColor

func (*StructuredDocumentTagUpdate) GetDateDisplayFormat ¶

func (obj *StructuredDocumentTagUpdate) GetDateDisplayFormat() *string

func (*StructuredDocumentTagUpdate) GetDateDisplayLocale ¶

func (obj *StructuredDocumentTagUpdate) GetDateDisplayLocale() *int32

func (*StructuredDocumentTagUpdate) GetDateStorageFormat ¶

func (obj *StructuredDocumentTagUpdate) GetDateStorageFormat() *string

func (*StructuredDocumentTagUpdate) GetFullDate ¶

func (obj *StructuredDocumentTagUpdate) GetFullDate() *Time

func (*StructuredDocumentTagUpdate) GetId ¶

func (obj *StructuredDocumentTagUpdate) GetId() *int32

func (*StructuredDocumentTagUpdate) GetIsShowingPlaceholderText ¶

func (obj *StructuredDocumentTagUpdate) GetIsShowingPlaceholderText() *bool

func (*StructuredDocumentTagUpdate) GetIsTemporary ¶

func (obj *StructuredDocumentTagUpdate) GetIsTemporary() *bool

func (*StructuredDocumentTagUpdate) GetLevel ¶

func (obj *StructuredDocumentTagUpdate) GetLevel() *string

func (*StructuredDocumentTagUpdate) GetListItems ¶

func (*StructuredDocumentTagUpdate) GetLockContentControl ¶

func (obj *StructuredDocumentTagUpdate) GetLockContentControl() *bool

func (*StructuredDocumentTagUpdate) GetLockContents ¶

func (obj *StructuredDocumentTagUpdate) GetLockContents() *bool

func (*StructuredDocumentTagUpdate) GetMultiline ¶

func (obj *StructuredDocumentTagUpdate) GetMultiline() *bool

func (*StructuredDocumentTagUpdate) GetNodeId ¶

func (obj *StructuredDocumentTagUpdate) GetNodeId() *string

func (*StructuredDocumentTagUpdate) GetPlaceholderName ¶

func (obj *StructuredDocumentTagUpdate) GetPlaceholderName() *string

func (*StructuredDocumentTagUpdate) GetSdtType ¶

func (obj *StructuredDocumentTagUpdate) GetSdtType() *string

func (*StructuredDocumentTagUpdate) GetStyleName ¶

func (obj *StructuredDocumentTagUpdate) GetStyleName() *string

func (*StructuredDocumentTagUpdate) GetTag ¶

func (obj *StructuredDocumentTagUpdate) GetTag() *string

func (*StructuredDocumentTagUpdate) GetTitle ¶

func (obj *StructuredDocumentTagUpdate) GetTitle() *string

func (*StructuredDocumentTagUpdate) GetWordOpenXML ¶

func (obj *StructuredDocumentTagUpdate) GetWordOpenXML() *string

func (*StructuredDocumentTagUpdate) Initialize ¶

func (obj *StructuredDocumentTagUpdate) Initialize()

func (StructuredDocumentTagUpdate) IsLinkElement ¶

func (StructuredDocumentTagUpdate) IsLinkElement() bool
func (StructuredDocumentTagUpdate) IsNodeLink() bool

func (StructuredDocumentTagUpdate) IsStructuredDocumentTag ¶

func (StructuredDocumentTagUpdate) IsStructuredDocumentTag() bool

func (StructuredDocumentTagUpdate) IsStructuredDocumentTagBase ¶

func (StructuredDocumentTagUpdate) IsStructuredDocumentTagBase() bool

func (StructuredDocumentTagUpdate) IsStructuredDocumentTagUpdate ¶

func (StructuredDocumentTagUpdate) IsStructuredDocumentTagUpdate() bool

func (*StructuredDocumentTagUpdate) SetAppearance ¶

func (obj *StructuredDocumentTagUpdate) SetAppearance(value *string)

func (*StructuredDocumentTagUpdate) SetBuildingBlockCategory ¶

func (obj *StructuredDocumentTagUpdate) SetBuildingBlockCategory(value *string)

func (*StructuredDocumentTagUpdate) SetBuildingBlockGallery ¶

func (obj *StructuredDocumentTagUpdate) SetBuildingBlockGallery(value *string)

func (*StructuredDocumentTagUpdate) SetCalendarType ¶

func (obj *StructuredDocumentTagUpdate) SetCalendarType(value *string)

func (*StructuredDocumentTagUpdate) SetChecked ¶

func (obj *StructuredDocumentTagUpdate) SetChecked(value *bool)

func (*StructuredDocumentTagUpdate) SetColor ¶

func (obj *StructuredDocumentTagUpdate) SetColor(value IXmlColor)

func (*StructuredDocumentTagUpdate) SetDateDisplayFormat ¶

func (obj *StructuredDocumentTagUpdate) SetDateDisplayFormat(value *string)

func (*StructuredDocumentTagUpdate) SetDateDisplayLocale ¶

func (obj *StructuredDocumentTagUpdate) SetDateDisplayLocale(value *int32)

func (*StructuredDocumentTagUpdate) SetDateStorageFormat ¶

func (obj *StructuredDocumentTagUpdate) SetDateStorageFormat(value *string)

func (*StructuredDocumentTagUpdate) SetFullDate ¶

func (obj *StructuredDocumentTagUpdate) SetFullDate(value *Time)

func (*StructuredDocumentTagUpdate) SetId ¶

func (obj *StructuredDocumentTagUpdate) SetId(value *int32)

func (*StructuredDocumentTagUpdate) SetIsShowingPlaceholderText ¶

func (obj *StructuredDocumentTagUpdate) SetIsShowingPlaceholderText(value *bool)

func (*StructuredDocumentTagUpdate) SetIsTemporary ¶

func (obj *StructuredDocumentTagUpdate) SetIsTemporary(value *bool)

func (*StructuredDocumentTagUpdate) SetLevel ¶

func (obj *StructuredDocumentTagUpdate) SetLevel(value *string)
func (obj *StructuredDocumentTagUpdate) SetLink(value IWordsApiLink)

func (*StructuredDocumentTagUpdate) SetListItems ¶

func (*StructuredDocumentTagUpdate) SetLockContentControl ¶

func (obj *StructuredDocumentTagUpdate) SetLockContentControl(value *bool)

func (*StructuredDocumentTagUpdate) SetLockContents ¶

func (obj *StructuredDocumentTagUpdate) SetLockContents(value *bool)

func (*StructuredDocumentTagUpdate) SetMultiline ¶

func (obj *StructuredDocumentTagUpdate) SetMultiline(value *bool)

func (*StructuredDocumentTagUpdate) SetNodeId ¶

func (obj *StructuredDocumentTagUpdate) SetNodeId(value *string)

func (*StructuredDocumentTagUpdate) SetPlaceholderName ¶

func (obj *StructuredDocumentTagUpdate) SetPlaceholderName(value *string)

func (*StructuredDocumentTagUpdate) SetSdtType ¶

func (obj *StructuredDocumentTagUpdate) SetSdtType(value *string)

func (*StructuredDocumentTagUpdate) SetStyleName ¶

func (obj *StructuredDocumentTagUpdate) SetStyleName(value *string)

func (*StructuredDocumentTagUpdate) SetTag ¶

func (obj *StructuredDocumentTagUpdate) SetTag(value *string)

func (*StructuredDocumentTagUpdate) SetTitle ¶

func (obj *StructuredDocumentTagUpdate) SetTitle(value *string)

func (*StructuredDocumentTagUpdate) SetWordOpenXML ¶

func (obj *StructuredDocumentTagUpdate) SetWordOpenXML(value *string)

func (*StructuredDocumentTagUpdate) Validate ¶

func (obj *StructuredDocumentTagUpdate) Validate() error

type StructuredDocumentTagsResponse ¶

type StructuredDocumentTagsResponse struct {
	// The REST response with a collection of StructuredDocumentTags.
	// This response should be returned by the service when handling: GET /structuredDocumentTags.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of StructuredDocumentTags.
	// This response should be returned by the service when handling: GET /structuredDocumentTags.
	StructuredDocumentTags IStructuredDocumentTagCollection `json:"StructuredDocumentTags,omitempty"`
}

func (*StructuredDocumentTagsResponse) CollectFilesContent ¶

func (obj *StructuredDocumentTagsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StructuredDocumentTagsResponse) Deserialize ¶

func (obj *StructuredDocumentTagsResponse) Deserialize(json map[string]interface{})

func (*StructuredDocumentTagsResponse) GetRequestId ¶

func (obj *StructuredDocumentTagsResponse) GetRequestId() *string

func (*StructuredDocumentTagsResponse) GetStructuredDocumentTags ¶

func (obj *StructuredDocumentTagsResponse) GetStructuredDocumentTags() IStructuredDocumentTagCollection

func (*StructuredDocumentTagsResponse) Initialize ¶

func (obj *StructuredDocumentTagsResponse) Initialize()

func (StructuredDocumentTagsResponse) IsStructuredDocumentTagsResponse ¶

func (StructuredDocumentTagsResponse) IsStructuredDocumentTagsResponse() bool

func (StructuredDocumentTagsResponse) IsWordsResponse ¶

func (StructuredDocumentTagsResponse) IsWordsResponse() bool

func (*StructuredDocumentTagsResponse) SetRequestId ¶

func (obj *StructuredDocumentTagsResponse) SetRequestId(value *string)

func (*StructuredDocumentTagsResponse) SetStructuredDocumentTags ¶

func (obj *StructuredDocumentTagsResponse) SetStructuredDocumentTags(value IStructuredDocumentTagCollection)

func (*StructuredDocumentTagsResponse) Validate ¶

func (obj *StructuredDocumentTagsResponse) Validate() error

type Style ¶

type Style struct {
	// DTO container with a single document style.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a single document style.
	Font IFont `json:"Font,omitempty"`

	// DTO container with a single document style.
	BuiltIn *bool `json:"BuiltIn,omitempty"`

	// DTO container with a single document style.
	NextParagraphStyleName *string `json:"NextParagraphStyleName,omitempty"`

	// DTO container with a single document style.
	BaseStyleName *string `json:"BaseStyleName,omitempty"`

	// DTO container with a single document style.
	IsQuickStyle *bool `json:"IsQuickStyle,omitempty"`

	// DTO container with a single document style.
	LinkedStyleName *string `json:"LinkedStyleName,omitempty"`

	// DTO container with a single document style.
	Type *string `json:"Type,omitempty"`

	// DTO container with a single document style.
	IsHeading *bool `json:"IsHeading,omitempty"`

	// DTO container with a single document style.
	Aliases []string `json:"Aliases,omitempty"`

	// DTO container with a single document style.
	StyleIdentifier *string `json:"StyleIdentifier,omitempty"`

	// DTO container with a single document style.
	Name *string `json:"Name,omitempty"`
}

func (*Style) CollectFilesContent ¶

func (obj *Style) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Style) Deserialize ¶

func (obj *Style) Deserialize(json map[string]interface{})

func (*Style) GetAliases ¶

func (obj *Style) GetAliases() []string

func (*Style) GetBaseStyleName ¶

func (obj *Style) GetBaseStyleName() *string

func (*Style) GetBuiltIn ¶

func (obj *Style) GetBuiltIn() *bool

func (*Style) GetFont ¶

func (obj *Style) GetFont() IFont

func (*Style) GetIsHeading ¶

func (obj *Style) GetIsHeading() *bool

func (*Style) GetIsQuickStyle ¶

func (obj *Style) GetIsQuickStyle() *bool
func (obj *Style) GetLink() IWordsApiLink

func (*Style) GetLinkedStyleName ¶

func (obj *Style) GetLinkedStyleName() *string

func (*Style) GetName ¶

func (obj *Style) GetName() *string

func (*Style) GetNextParagraphStyleName ¶

func (obj *Style) GetNextParagraphStyleName() *string

func (*Style) GetStyleIdentifier ¶

func (obj *Style) GetStyleIdentifier() *string

func (*Style) GetType ¶

func (obj *Style) GetType() *string

func (*Style) Initialize ¶

func (obj *Style) Initialize()

func (Style) IsLinkElement ¶

func (Style) IsLinkElement() bool

func (Style) IsStyle ¶

func (Style) IsStyle() bool

func (*Style) SetAliases ¶

func (obj *Style) SetAliases(value []string)

func (*Style) SetBaseStyleName ¶

func (obj *Style) SetBaseStyleName(value *string)

func (*Style) SetBuiltIn ¶

func (obj *Style) SetBuiltIn(value *bool)

func (*Style) SetFont ¶

func (obj *Style) SetFont(value IFont)

func (*Style) SetIsHeading ¶

func (obj *Style) SetIsHeading(value *bool)

func (*Style) SetIsQuickStyle ¶

func (obj *Style) SetIsQuickStyle(value *bool)
func (obj *Style) SetLink(value IWordsApiLink)

func (*Style) SetLinkedStyleName ¶

func (obj *Style) SetLinkedStyleName(value *string)

func (*Style) SetName ¶

func (obj *Style) SetName(value *string)

func (*Style) SetNextParagraphStyleName ¶

func (obj *Style) SetNextParagraphStyleName(value *string)

func (*Style) SetStyleIdentifier ¶

func (obj *Style) SetStyleIdentifier(value *string)

func (*Style) SetType ¶

func (obj *Style) SetType(value *string)

func (*Style) Validate ¶

func (obj *Style) Validate() error

type StyleApply ¶

type StyleApply struct {
	// Represents a single document style to insert.
	StyleName *string `json:"StyleName,omitempty"`
}

func (*StyleApply) CollectFilesContent ¶

func (obj *StyleApply) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StyleApply) Deserialize ¶

func (obj *StyleApply) Deserialize(json map[string]interface{})

func (*StyleApply) GetStyleName ¶

func (obj *StyleApply) GetStyleName() *string

func (*StyleApply) Initialize ¶

func (obj *StyleApply) Initialize()

func (StyleApply) IsStyleApply ¶

func (StyleApply) IsStyleApply() bool

func (*StyleApply) SetStyleName ¶

func (obj *StyleApply) SetStyleName(value *string)

func (*StyleApply) Validate ¶

func (obj *StyleApply) Validate() error

type StyleCopy ¶

type StyleCopy struct {
	// Represents a single document style to insert.
	StyleName *string `json:"StyleName,omitempty"`
}

func (*StyleCopy) CollectFilesContent ¶

func (obj *StyleCopy) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StyleCopy) Deserialize ¶

func (obj *StyleCopy) Deserialize(json map[string]interface{})

func (*StyleCopy) GetStyleName ¶

func (obj *StyleCopy) GetStyleName() *string

func (*StyleCopy) Initialize ¶

func (obj *StyleCopy) Initialize()

func (StyleCopy) IsStyleCopy ¶

func (StyleCopy) IsStyleCopy() bool

func (*StyleCopy) SetStyleName ¶

func (obj *StyleCopy) SetStyleName(value *string)

func (*StyleCopy) Validate ¶

func (obj *StyleCopy) Validate() error

type StyleInsert ¶

type StyleInsert struct {
	// Represents a single document style to insert.
	StyleName *string `json:"StyleName,omitempty"`

	// Represents a single document style to insert.
	StyleType *string `json:"StyleType,omitempty"`
}

func (*StyleInsert) CollectFilesContent ¶

func (obj *StyleInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StyleInsert) Deserialize ¶

func (obj *StyleInsert) Deserialize(json map[string]interface{})

func (*StyleInsert) GetStyleName ¶

func (obj *StyleInsert) GetStyleName() *string

func (*StyleInsert) GetStyleType ¶

func (obj *StyleInsert) GetStyleType() *string

func (*StyleInsert) Initialize ¶

func (obj *StyleInsert) Initialize()

func (StyleInsert) IsStyleInsert ¶

func (StyleInsert) IsStyleInsert() bool

func (*StyleInsert) SetStyleName ¶

func (obj *StyleInsert) SetStyleName(value *string)

func (*StyleInsert) SetStyleType ¶

func (obj *StyleInsert) SetStyleType(value *string)

func (*StyleInsert) Validate ¶

func (obj *StyleInsert) Validate() error

type StyleResponse ¶

type StyleResponse struct {
	// The REST response with a style.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/styles/{0}" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a style.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/styles/{0}" REST API requests.
	Style IStyle `json:"Style,omitempty"`
}

func (*StyleResponse) CollectFilesContent ¶

func (obj *StyleResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StyleResponse) Deserialize ¶

func (obj *StyleResponse) Deserialize(json map[string]interface{})

func (*StyleResponse) GetRequestId ¶

func (obj *StyleResponse) GetRequestId() *string

func (*StyleResponse) GetStyle ¶

func (obj *StyleResponse) GetStyle() IStyle

func (*StyleResponse) Initialize ¶

func (obj *StyleResponse) Initialize()

func (StyleResponse) IsStyleResponse ¶

func (StyleResponse) IsStyleResponse() bool

func (StyleResponse) IsWordsResponse ¶

func (StyleResponse) IsWordsResponse() bool

func (*StyleResponse) SetRequestId ¶

func (obj *StyleResponse) SetRequestId(value *string)

func (*StyleResponse) SetStyle ¶

func (obj *StyleResponse) SetStyle(value IStyle)

func (*StyleResponse) Validate ¶

func (obj *StyleResponse) Validate() error

type StyleUpdate ¶

type StyleUpdate struct {
	// Represents a single document style properties to update.
	NextParagraphStyleName *string `json:"NextParagraphStyleName,omitempty"`

	// Represents a single document style properties to update.
	BaseStyleName *string `json:"BaseStyleName,omitempty"`

	// Represents a single document style properties to update.
	IsQuickStyle *bool `json:"IsQuickStyle,omitempty"`

	// Represents a single document style properties to update.
	Name *string `json:"Name,omitempty"`
}

func (*StyleUpdate) CollectFilesContent ¶

func (obj *StyleUpdate) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StyleUpdate) Deserialize ¶

func (obj *StyleUpdate) Deserialize(json map[string]interface{})

func (*StyleUpdate) GetBaseStyleName ¶

func (obj *StyleUpdate) GetBaseStyleName() *string

func (*StyleUpdate) GetIsQuickStyle ¶

func (obj *StyleUpdate) GetIsQuickStyle() *bool

func (*StyleUpdate) GetName ¶

func (obj *StyleUpdate) GetName() *string

func (*StyleUpdate) GetNextParagraphStyleName ¶

func (obj *StyleUpdate) GetNextParagraphStyleName() *string

func (*StyleUpdate) Initialize ¶

func (obj *StyleUpdate) Initialize()

func (StyleUpdate) IsStyleUpdate ¶

func (StyleUpdate) IsStyleUpdate() bool

func (*StyleUpdate) SetBaseStyleName ¶

func (obj *StyleUpdate) SetBaseStyleName(value *string)

func (*StyleUpdate) SetIsQuickStyle ¶

func (obj *StyleUpdate) SetIsQuickStyle(value *bool)

func (*StyleUpdate) SetName ¶

func (obj *StyleUpdate) SetName(value *string)

func (*StyleUpdate) SetNextParagraphStyleName ¶

func (obj *StyleUpdate) SetNextParagraphStyleName(value *string)

func (*StyleUpdate) Validate ¶

func (obj *StyleUpdate) Validate() error

type StylesResponse ¶

type StylesResponse struct {
	// The REST response with an array of styles.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/styles" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with an array of styles.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/styles" REST API requests.
	Styles []IStyle `json:"Styles,omitempty"`
}

func (*StylesResponse) CollectFilesContent ¶

func (obj *StylesResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*StylesResponse) Deserialize ¶

func (obj *StylesResponse) Deserialize(json map[string]interface{})

func (*StylesResponse) GetRequestId ¶

func (obj *StylesResponse) GetRequestId() *string

func (*StylesResponse) GetStyles ¶

func (obj *StylesResponse) GetStyles() []IStyle

func (*StylesResponse) Initialize ¶

func (obj *StylesResponse) Initialize()

func (StylesResponse) IsStylesResponse ¶

func (StylesResponse) IsStylesResponse() bool

func (StylesResponse) IsWordsResponse ¶

func (StylesResponse) IsWordsResponse() bool

func (*StylesResponse) SetRequestId ¶

func (obj *StylesResponse) SetRequestId(value *string)

func (*StylesResponse) SetStyles ¶

func (obj *StylesResponse) SetStyles(value []IStyle)

func (*StylesResponse) Validate ¶

func (obj *StylesResponse) Validate() error

type SvgSaveOptionsData ¶

type SvgSaveOptionsData struct {
	// Container class for svg save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for svg save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for svg save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for svg save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for svg save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for svg save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for svg save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for svg save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for svg save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for svg save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for svg save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for svg save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for svg save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for svg save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for svg save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for svg save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for svg save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for svg save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for svg save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for svg save options.
	ExportEmbeddedImages *bool `json:"ExportEmbeddedImages,omitempty"`

	// Container class for svg save options.
	FitToViewPort *bool `json:"FitToViewPort,omitempty"`

	// Container class for svg save options.
	ResourcesFolder *string `json:"ResourcesFolder,omitempty"`

	// Container class for svg save options.
	ResourcesFolderAlias *string `json:"ResourcesFolderAlias,omitempty"`

	// Container class for svg save options.
	ShowPageBorder *bool `json:"ShowPageBorder,omitempty"`

	// Container class for svg save options.
	TextOutputMode *string `json:"TextOutputMode,omitempty"`

	// Container class for svg save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*SvgSaveOptionsData) CollectFilesContent ¶

func (obj *SvgSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*SvgSaveOptionsData) Deserialize ¶

func (obj *SvgSaveOptionsData) Deserialize(json map[string]interface{})

func (*SvgSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *SvgSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*SvgSaveOptionsData) GetColorMode ¶

func (obj *SvgSaveOptionsData) GetColorMode() *string

func (*SvgSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *SvgSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*SvgSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *SvgSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*SvgSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *SvgSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*SvgSaveOptionsData) GetDmlRenderingMode ¶

func (obj *SvgSaveOptionsData) GetDmlRenderingMode() *string

func (*SvgSaveOptionsData) GetExportEmbeddedImages ¶

func (obj *SvgSaveOptionsData) GetExportEmbeddedImages() *bool

func (*SvgSaveOptionsData) GetFileName ¶

func (obj *SvgSaveOptionsData) GetFileName() *string

func (*SvgSaveOptionsData) GetFitToViewPort ¶

func (obj *SvgSaveOptionsData) GetFitToViewPort() *bool

func (*SvgSaveOptionsData) GetImlRenderingMode ¶

func (obj *SvgSaveOptionsData) GetImlRenderingMode() *string

func (*SvgSaveOptionsData) GetJpegQuality ¶

func (obj *SvgSaveOptionsData) GetJpegQuality() *int32

func (*SvgSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *SvgSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*SvgSaveOptionsData) GetNumeralFormat ¶

func (obj *SvgSaveOptionsData) GetNumeralFormat() *string

func (*SvgSaveOptionsData) GetOptimizeOutput ¶

func (obj *SvgSaveOptionsData) GetOptimizeOutput() *bool

func (*SvgSaveOptionsData) GetPageCount ¶

func (obj *SvgSaveOptionsData) GetPageCount() *int32

func (*SvgSaveOptionsData) GetPageIndex ¶

func (obj *SvgSaveOptionsData) GetPageIndex() *int32

func (*SvgSaveOptionsData) GetResourcesFolder ¶

func (obj *SvgSaveOptionsData) GetResourcesFolder() *string

func (*SvgSaveOptionsData) GetResourcesFolderAlias ¶

func (obj *SvgSaveOptionsData) GetResourcesFolderAlias() *string

func (*SvgSaveOptionsData) GetSaveFormat ¶

func (obj *SvgSaveOptionsData) GetSaveFormat() *string

func (*SvgSaveOptionsData) GetShowPageBorder ¶

func (obj *SvgSaveOptionsData) GetShowPageBorder() *bool

func (*SvgSaveOptionsData) GetTextOutputMode ¶

func (obj *SvgSaveOptionsData) GetTextOutputMode() *string

func (*SvgSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *SvgSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*SvgSaveOptionsData) GetUpdateFields ¶

func (obj *SvgSaveOptionsData) GetUpdateFields() *bool

func (*SvgSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *SvgSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*SvgSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *SvgSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*SvgSaveOptionsData) GetZipOutput ¶

func (obj *SvgSaveOptionsData) GetZipOutput() *bool

func (*SvgSaveOptionsData) Initialize ¶

func (obj *SvgSaveOptionsData) Initialize()

func (SvgSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (SvgSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (SvgSaveOptionsData) IsSaveOptionsData ¶

func (SvgSaveOptionsData) IsSaveOptionsData() bool

func (SvgSaveOptionsData) IsSvgSaveOptionsData ¶

func (SvgSaveOptionsData) IsSvgSaveOptionsData() bool

func (*SvgSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *SvgSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*SvgSaveOptionsData) SetColorMode ¶

func (obj *SvgSaveOptionsData) SetColorMode(value *string)

func (*SvgSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *SvgSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*SvgSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *SvgSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*SvgSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *SvgSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*SvgSaveOptionsData) SetDmlRenderingMode ¶

func (obj *SvgSaveOptionsData) SetDmlRenderingMode(value *string)

func (*SvgSaveOptionsData) SetExportEmbeddedImages ¶

func (obj *SvgSaveOptionsData) SetExportEmbeddedImages(value *bool)

func (*SvgSaveOptionsData) SetFileName ¶

func (obj *SvgSaveOptionsData) SetFileName(value *string)

func (*SvgSaveOptionsData) SetFitToViewPort ¶

func (obj *SvgSaveOptionsData) SetFitToViewPort(value *bool)

func (*SvgSaveOptionsData) SetImlRenderingMode ¶

func (obj *SvgSaveOptionsData) SetImlRenderingMode(value *string)

func (*SvgSaveOptionsData) SetJpegQuality ¶

func (obj *SvgSaveOptionsData) SetJpegQuality(value *int32)

func (*SvgSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *SvgSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*SvgSaveOptionsData) SetNumeralFormat ¶

func (obj *SvgSaveOptionsData) SetNumeralFormat(value *string)

func (*SvgSaveOptionsData) SetOptimizeOutput ¶

func (obj *SvgSaveOptionsData) SetOptimizeOutput(value *bool)

func (*SvgSaveOptionsData) SetPageCount ¶

func (obj *SvgSaveOptionsData) SetPageCount(value *int32)

func (*SvgSaveOptionsData) SetPageIndex ¶

func (obj *SvgSaveOptionsData) SetPageIndex(value *int32)

func (*SvgSaveOptionsData) SetResourcesFolder ¶

func (obj *SvgSaveOptionsData) SetResourcesFolder(value *string)

func (*SvgSaveOptionsData) SetResourcesFolderAlias ¶

func (obj *SvgSaveOptionsData) SetResourcesFolderAlias(value *string)

func (*SvgSaveOptionsData) SetSaveFormat ¶

func (obj *SvgSaveOptionsData) SetSaveFormat(value *string)

func (*SvgSaveOptionsData) SetShowPageBorder ¶

func (obj *SvgSaveOptionsData) SetShowPageBorder(value *bool)

func (*SvgSaveOptionsData) SetTextOutputMode ¶

func (obj *SvgSaveOptionsData) SetTextOutputMode(value *string)

func (*SvgSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *SvgSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*SvgSaveOptionsData) SetUpdateFields ¶

func (obj *SvgSaveOptionsData) SetUpdateFields(value *bool)

func (*SvgSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *SvgSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*SvgSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *SvgSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*SvgSaveOptionsData) SetZipOutput ¶

func (obj *SvgSaveOptionsData) SetZipOutput(value *bool)

func (*SvgSaveOptionsData) Validate ¶

func (obj *SvgSaveOptionsData) Validate() error

type TabStop ¶

type TabStop struct {
	// DTO container with paragraph format tab stop.
	Alignment *string `json:"Alignment,omitempty"`

	// DTO container with paragraph format tab stop.
	Leader *string `json:"Leader,omitempty"`

	// DTO container with paragraph format tab stop.
	Position *float64 `json:"Position,omitempty"`

	// DTO container with paragraph format tab stop.
	IsClear *bool `json:"IsClear,omitempty"`
}

func (*TabStop) CollectFilesContent ¶

func (obj *TabStop) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TabStop) Deserialize ¶

func (obj *TabStop) Deserialize(json map[string]interface{})

func (*TabStop) GetAlignment ¶

func (obj *TabStop) GetAlignment() *string

func (*TabStop) GetIsClear ¶

func (obj *TabStop) GetIsClear() *bool

func (*TabStop) GetLeader ¶

func (obj *TabStop) GetLeader() *string

func (*TabStop) GetPosition ¶

func (obj *TabStop) GetPosition() *float64

func (*TabStop) Initialize ¶

func (obj *TabStop) Initialize()

func (TabStop) IsTabStop ¶

func (TabStop) IsTabStop() bool

func (TabStop) IsTabStopBase ¶

func (TabStop) IsTabStopBase() bool

func (*TabStop) SetAlignment ¶

func (obj *TabStop) SetAlignment(value *string)

func (*TabStop) SetIsClear ¶

func (obj *TabStop) SetIsClear(value *bool)

func (*TabStop) SetLeader ¶

func (obj *TabStop) SetLeader(value *string)

func (*TabStop) SetPosition ¶

func (obj *TabStop) SetPosition(value *float64)

func (*TabStop) Validate ¶

func (obj *TabStop) Validate() error

type TabStopInsert ¶

type TabStopInsert struct {
	// A DTO to Insert / replace a tab stop.
	Alignment *string `json:"Alignment,omitempty"`

	// A DTO to Insert / replace a tab stop.
	Leader *string `json:"Leader,omitempty"`

	// A DTO to Insert / replace a tab stop.
	Position *float64 `json:"Position,omitempty"`
}

func (*TabStopInsert) CollectFilesContent ¶

func (obj *TabStopInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TabStopInsert) Deserialize ¶

func (obj *TabStopInsert) Deserialize(json map[string]interface{})

func (*TabStopInsert) GetAlignment ¶

func (obj *TabStopInsert) GetAlignment() *string

func (*TabStopInsert) GetLeader ¶

func (obj *TabStopInsert) GetLeader() *string

func (*TabStopInsert) GetPosition ¶

func (obj *TabStopInsert) GetPosition() *float64

func (*TabStopInsert) Initialize ¶

func (obj *TabStopInsert) Initialize()

func (TabStopInsert) IsTabStopBase ¶

func (TabStopInsert) IsTabStopBase() bool

func (TabStopInsert) IsTabStopInsert ¶

func (TabStopInsert) IsTabStopInsert() bool

func (*TabStopInsert) SetAlignment ¶

func (obj *TabStopInsert) SetAlignment(value *string)

func (*TabStopInsert) SetLeader ¶

func (obj *TabStopInsert) SetLeader(value *string)

func (*TabStopInsert) SetPosition ¶

func (obj *TabStopInsert) SetPosition(value *float64)

func (*TabStopInsert) Validate ¶

func (obj *TabStopInsert) Validate() error

type TabStopsResponse ¶

type TabStopsResponse struct {
	// The REST response with an array of tab stops.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/tabstops" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with an array of tab stops.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/tabstops" REST API requests.
	TabStops []ITabStop `json:"TabStops,omitempty"`
}

func (*TabStopsResponse) CollectFilesContent ¶

func (obj *TabStopsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TabStopsResponse) Deserialize ¶

func (obj *TabStopsResponse) Deserialize(json map[string]interface{})

func (*TabStopsResponse) GetRequestId ¶

func (obj *TabStopsResponse) GetRequestId() *string

func (*TabStopsResponse) GetTabStops ¶

func (obj *TabStopsResponse) GetTabStops() []ITabStop

func (*TabStopsResponse) Initialize ¶

func (obj *TabStopsResponse) Initialize()

func (TabStopsResponse) IsTabStopsResponse ¶

func (TabStopsResponse) IsTabStopsResponse() bool

func (TabStopsResponse) IsWordsResponse ¶

func (TabStopsResponse) IsWordsResponse() bool

func (*TabStopsResponse) SetRequestId ¶

func (obj *TabStopsResponse) SetRequestId(value *string)

func (*TabStopsResponse) SetTabStops ¶

func (obj *TabStopsResponse) SetTabStops(value []ITabStop)

func (*TabStopsResponse) Validate ¶

func (obj *TabStopsResponse) Validate() error

type Table ¶

type Table struct {
	// DTO container with a table element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a table element.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with a table element.
	TableRowList []ITableRow `json:"TableRowList,omitempty"`

	// DTO container with a table element.
	TableProperties ITableProperties `json:"TableProperties,omitempty"`
}

func (*Table) CollectFilesContent ¶

func (obj *Table) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*Table) Deserialize ¶

func (obj *Table) Deserialize(json map[string]interface{})
func (obj *Table) GetLink() IWordsApiLink

func (*Table) GetNodeId ¶

func (obj *Table) GetNodeId() *string

func (*Table) GetTableProperties ¶

func (obj *Table) GetTableProperties() ITableProperties

func (*Table) GetTableRowList ¶

func (obj *Table) GetTableRowList() []ITableRow

func (*Table) Initialize ¶

func (obj *Table) Initialize()

func (Table) IsLinkElement ¶

func (Table) IsLinkElement() bool
func (Table) IsNodeLink() bool

func (Table) IsTable ¶

func (Table) IsTable() bool
func (obj *Table) SetLink(value IWordsApiLink)

func (*Table) SetNodeId ¶

func (obj *Table) SetNodeId(value *string)

func (*Table) SetTableProperties ¶

func (obj *Table) SetTableProperties(value ITableProperties)

func (*Table) SetTableRowList ¶

func (obj *Table) SetTableRowList(value []ITableRow)

func (*Table) Validate ¶

func (obj *Table) Validate() error

type TableCell ¶

type TableCell struct {
	// DTO container with a table cell element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a table cell element.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with a table cell element.
	ChildNodes []INodeLink `json:"ChildNodes,omitempty"`
}

func (*TableCell) CollectFilesContent ¶

func (obj *TableCell) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableCell) Deserialize ¶

func (obj *TableCell) Deserialize(json map[string]interface{})

func (*TableCell) GetChildNodes ¶

func (obj *TableCell) GetChildNodes() []INodeLink
func (obj *TableCell) GetLink() IWordsApiLink

func (*TableCell) GetNodeId ¶

func (obj *TableCell) GetNodeId() *string

func (*TableCell) Initialize ¶

func (obj *TableCell) Initialize()

func (TableCell) IsLinkElement ¶

func (TableCell) IsLinkElement() bool
func (TableCell) IsNodeLink() bool

func (TableCell) IsTableCell ¶

func (TableCell) IsTableCell() bool

func (*TableCell) SetChildNodes ¶

func (obj *TableCell) SetChildNodes(value []INodeLink)
func (obj *TableCell) SetLink(value IWordsApiLink)

func (*TableCell) SetNodeId ¶

func (obj *TableCell) SetNodeId(value *string)

func (*TableCell) Validate ¶

func (obj *TableCell) Validate() error

type TableCellFormat ¶

type TableCellFormat struct {
	// DTO container with all formatting for a table row.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with all formatting for a table row.
	BottomPadding *float64 `json:"BottomPadding,omitempty"`

	// DTO container with all formatting for a table row.
	FitText *bool `json:"FitText,omitempty"`

	// DTO container with all formatting for a table row.
	HorizontalMerge *string `json:"HorizontalMerge,omitempty"`

	// DTO container with all formatting for a table row.
	LeftPadding *float64 `json:"LeftPadding,omitempty"`

	// DTO container with all formatting for a table row.
	Orientation *string `json:"Orientation,omitempty"`

	// DTO container with all formatting for a table row.
	PreferredWidth IPreferredWidth `json:"PreferredWidth,omitempty"`

	// DTO container with all formatting for a table row.
	RightPadding *float64 `json:"RightPadding,omitempty"`

	// DTO container with all formatting for a table row.
	TopPadding *float64 `json:"TopPadding,omitempty"`

	// DTO container with all formatting for a table row.
	VerticalAlignment *string `json:"VerticalAlignment,omitempty"`

	// DTO container with all formatting for a table row.
	VerticalMerge *string `json:"VerticalMerge,omitempty"`

	// DTO container with all formatting for a table row.
	Width *float64 `json:"Width,omitempty"`

	// DTO container with all formatting for a table row.
	WrapText *bool `json:"WrapText,omitempty"`
}

func (*TableCellFormat) CollectFilesContent ¶

func (obj *TableCellFormat) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableCellFormat) Deserialize ¶

func (obj *TableCellFormat) Deserialize(json map[string]interface{})

func (*TableCellFormat) GetBottomPadding ¶

func (obj *TableCellFormat) GetBottomPadding() *float64

func (*TableCellFormat) GetFitText ¶

func (obj *TableCellFormat) GetFitText() *bool

func (*TableCellFormat) GetHorizontalMerge ¶

func (obj *TableCellFormat) GetHorizontalMerge() *string

func (*TableCellFormat) GetLeftPadding ¶

func (obj *TableCellFormat) GetLeftPadding() *float64
func (obj *TableCellFormat) GetLink() IWordsApiLink

func (*TableCellFormat) GetOrientation ¶

func (obj *TableCellFormat) GetOrientation() *string

func (*TableCellFormat) GetPreferredWidth ¶

func (obj *TableCellFormat) GetPreferredWidth() IPreferredWidth

func (*TableCellFormat) GetRightPadding ¶

func (obj *TableCellFormat) GetRightPadding() *float64

func (*TableCellFormat) GetTopPadding ¶

func (obj *TableCellFormat) GetTopPadding() *float64

func (*TableCellFormat) GetVerticalAlignment ¶

func (obj *TableCellFormat) GetVerticalAlignment() *string

func (*TableCellFormat) GetVerticalMerge ¶

func (obj *TableCellFormat) GetVerticalMerge() *string

func (*TableCellFormat) GetWidth ¶

func (obj *TableCellFormat) GetWidth() *float64

func (*TableCellFormat) GetWrapText ¶

func (obj *TableCellFormat) GetWrapText() *bool

func (*TableCellFormat) Initialize ¶

func (obj *TableCellFormat) Initialize()

func (TableCellFormat) IsLinkElement ¶

func (TableCellFormat) IsLinkElement() bool

func (TableCellFormat) IsTableCellFormat ¶

func (TableCellFormat) IsTableCellFormat() bool

func (*TableCellFormat) SetBottomPadding ¶

func (obj *TableCellFormat) SetBottomPadding(value *float64)

func (*TableCellFormat) SetFitText ¶

func (obj *TableCellFormat) SetFitText(value *bool)

func (*TableCellFormat) SetHorizontalMerge ¶

func (obj *TableCellFormat) SetHorizontalMerge(value *string)

func (*TableCellFormat) SetLeftPadding ¶

func (obj *TableCellFormat) SetLeftPadding(value *float64)
func (obj *TableCellFormat) SetLink(value IWordsApiLink)

func (*TableCellFormat) SetOrientation ¶

func (obj *TableCellFormat) SetOrientation(value *string)

func (*TableCellFormat) SetPreferredWidth ¶

func (obj *TableCellFormat) SetPreferredWidth(value IPreferredWidth)

func (*TableCellFormat) SetRightPadding ¶

func (obj *TableCellFormat) SetRightPadding(value *float64)

func (*TableCellFormat) SetTopPadding ¶

func (obj *TableCellFormat) SetTopPadding(value *float64)

func (*TableCellFormat) SetVerticalAlignment ¶

func (obj *TableCellFormat) SetVerticalAlignment(value *string)

func (*TableCellFormat) SetVerticalMerge ¶

func (obj *TableCellFormat) SetVerticalMerge(value *string)

func (*TableCellFormat) SetWidth ¶

func (obj *TableCellFormat) SetWidth(value *float64)

func (*TableCellFormat) SetWrapText ¶

func (obj *TableCellFormat) SetWrapText(value *bool)

func (*TableCellFormat) Validate ¶

func (obj *TableCellFormat) Validate() error

type TableCellFormatResponse ¶

type TableCellFormatResponse struct {
	// The REST response with the formatting properties of a table cell.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}/rows/{1}/cells/{2}/cellformat" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with the formatting properties of a table cell.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}/rows/{1}/cells/{2}/cellformat" REST API requests.
	CellFormat ITableCellFormat `json:"CellFormat,omitempty"`
}

func (*TableCellFormatResponse) CollectFilesContent ¶

func (obj *TableCellFormatResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableCellFormatResponse) Deserialize ¶

func (obj *TableCellFormatResponse) Deserialize(json map[string]interface{})

func (*TableCellFormatResponse) GetCellFormat ¶

func (obj *TableCellFormatResponse) GetCellFormat() ITableCellFormat

func (*TableCellFormatResponse) GetRequestId ¶

func (obj *TableCellFormatResponse) GetRequestId() *string

func (*TableCellFormatResponse) Initialize ¶

func (obj *TableCellFormatResponse) Initialize()

func (TableCellFormatResponse) IsTableCellFormatResponse ¶

func (TableCellFormatResponse) IsTableCellFormatResponse() bool

func (TableCellFormatResponse) IsWordsResponse ¶

func (TableCellFormatResponse) IsWordsResponse() bool

func (*TableCellFormatResponse) SetCellFormat ¶

func (obj *TableCellFormatResponse) SetCellFormat(value ITableCellFormat)

func (*TableCellFormatResponse) SetRequestId ¶

func (obj *TableCellFormatResponse) SetRequestId(value *string)

func (*TableCellFormatResponse) Validate ¶

func (obj *TableCellFormatResponse) Validate() error

type TableCellInsert ¶

type TableCellInsert struct {
	// DTO container with a table cell.
	ExistingCellPosition IPosition `json:"ExistingCellPosition,omitempty"`

	// DTO container with a table cell.
	InsertAfter *int32 `json:"InsertAfter,omitempty"`
}

func (*TableCellInsert) CollectFilesContent ¶

func (obj *TableCellInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableCellInsert) Deserialize ¶

func (obj *TableCellInsert) Deserialize(json map[string]interface{})

func (*TableCellInsert) GetExistingCellPosition ¶

func (obj *TableCellInsert) GetExistingCellPosition() IPosition

func (*TableCellInsert) GetInsertAfter ¶

func (obj *TableCellInsert) GetInsertAfter() *int32

func (*TableCellInsert) Initialize ¶

func (obj *TableCellInsert) Initialize()

func (TableCellInsert) IsTableCellInsert ¶

func (TableCellInsert) IsTableCellInsert() bool

func (*TableCellInsert) SetExistingCellPosition ¶

func (obj *TableCellInsert) SetExistingCellPosition(value IPosition)

func (*TableCellInsert) SetInsertAfter ¶

func (obj *TableCellInsert) SetInsertAfter(value *int32)

func (*TableCellInsert) Validate ¶

func (obj *TableCellInsert) Validate() error

type TableCellResponse ¶

type TableCellResponse struct {
	// The REST response with a table cell.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a table cell.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}" REST API requests.
	Cell ITableCell `json:"Cell,omitempty"`
}

func (*TableCellResponse) CollectFilesContent ¶

func (obj *TableCellResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableCellResponse) Deserialize ¶

func (obj *TableCellResponse) Deserialize(json map[string]interface{})

func (*TableCellResponse) GetCell ¶

func (obj *TableCellResponse) GetCell() ITableCell

func (*TableCellResponse) GetRequestId ¶

func (obj *TableCellResponse) GetRequestId() *string

func (*TableCellResponse) Initialize ¶

func (obj *TableCellResponse) Initialize()

func (TableCellResponse) IsTableCellResponse ¶

func (TableCellResponse) IsTableCellResponse() bool

func (TableCellResponse) IsWordsResponse ¶

func (TableCellResponse) IsWordsResponse() bool

func (*TableCellResponse) SetCell ¶

func (obj *TableCellResponse) SetCell(value ITableCell)

func (*TableCellResponse) SetRequestId ¶

func (obj *TableCellResponse) SetRequestId(value *string)

func (*TableCellResponse) Validate ¶

func (obj *TableCellResponse) Validate() error

type TableInsert ¶

type TableInsert struct {
	// DTO container with a table element.
	ColumnsCount *int32 `json:"ColumnsCount,omitempty"`

	// DTO container with a table element.
	Position IPosition `json:"Position,omitempty"`

	// DTO container with a table element.
	RowsCount *int32 `json:"RowsCount,omitempty"`
}

func (*TableInsert) CollectFilesContent ¶

func (obj *TableInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableInsert) Deserialize ¶

func (obj *TableInsert) Deserialize(json map[string]interface{})

func (*TableInsert) GetColumnsCount ¶

func (obj *TableInsert) GetColumnsCount() *int32

func (*TableInsert) GetPosition ¶

func (obj *TableInsert) GetPosition() IPosition

func (*TableInsert) GetRowsCount ¶

func (obj *TableInsert) GetRowsCount() *int32

func (*TableInsert) Initialize ¶

func (obj *TableInsert) Initialize()

func (TableInsert) IsTableInsert ¶

func (TableInsert) IsTableInsert() bool

func (*TableInsert) SetColumnsCount ¶

func (obj *TableInsert) SetColumnsCount(value *int32)

func (*TableInsert) SetPosition ¶

func (obj *TableInsert) SetPosition(value IPosition)

func (*TableInsert) SetRowsCount ¶

func (obj *TableInsert) SetRowsCount(value *int32)

func (*TableInsert) Validate ¶

func (obj *TableInsert) Validate() error
type TableLink struct {
	// Table link element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// Table link element.
	NodeId *string `json:"NodeId,omitempty"`
}

func (*TableLink) CollectFilesContent ¶

func (obj *TableLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableLink) Deserialize ¶

func (obj *TableLink) Deserialize(json map[string]interface{})
func (obj *TableLink) GetLink() IWordsApiLink

func (*TableLink) GetNodeId ¶

func (obj *TableLink) GetNodeId() *string

func (*TableLink) Initialize ¶

func (obj *TableLink) Initialize()

func (TableLink) IsLinkElement ¶

func (TableLink) IsLinkElement() bool
func (TableLink) IsNodeLink() bool
func (TableLink) IsTableLink() bool
func (obj *TableLink) SetLink(value IWordsApiLink)

func (*TableLink) SetNodeId ¶

func (obj *TableLink) SetNodeId(value *string)

func (*TableLink) Validate ¶

func (obj *TableLink) Validate() error

type TableLinkCollection ¶

type TableLinkCollection struct {
	// The collection of table's links.
	Link IWordsApiLink `json:"Link,omitempty"`

	// The collection of table's links.
	TableLinkList []ITableLink `json:"TableLinkList,omitempty"`
}

func (*TableLinkCollection) CollectFilesContent ¶

func (obj *TableLinkCollection) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableLinkCollection) Deserialize ¶

func (obj *TableLinkCollection) Deserialize(json map[string]interface{})
func (obj *TableLinkCollection) GetLink() IWordsApiLink
func (obj *TableLinkCollection) GetTableLinkList() []ITableLink

func (*TableLinkCollection) Initialize ¶

func (obj *TableLinkCollection) Initialize()

func (TableLinkCollection) IsLinkElement ¶

func (TableLinkCollection) IsLinkElement() bool

func (TableLinkCollection) IsTableLinkCollection ¶

func (TableLinkCollection) IsTableLinkCollection() bool
func (obj *TableLinkCollection) SetLink(value IWordsApiLink)
func (obj *TableLinkCollection) SetTableLinkList(value []ITableLink)

func (*TableLinkCollection) Validate ¶

func (obj *TableLinkCollection) Validate() error

type TableLinkCollectionResponse ¶

type TableLinkCollectionResponse struct {
	// The REST response with a collection of tables.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a collection of tables.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables" REST API requests.
	Tables ITableLinkCollection `json:"Tables,omitempty"`
}

func (*TableLinkCollectionResponse) CollectFilesContent ¶

func (obj *TableLinkCollectionResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableLinkCollectionResponse) Deserialize ¶

func (obj *TableLinkCollectionResponse) Deserialize(json map[string]interface{})

func (*TableLinkCollectionResponse) GetRequestId ¶

func (obj *TableLinkCollectionResponse) GetRequestId() *string

func (*TableLinkCollectionResponse) GetTables ¶

func (*TableLinkCollectionResponse) Initialize ¶

func (obj *TableLinkCollectionResponse) Initialize()

func (TableLinkCollectionResponse) IsTableLinkCollectionResponse ¶

func (TableLinkCollectionResponse) IsTableLinkCollectionResponse() bool

func (TableLinkCollectionResponse) IsWordsResponse ¶

func (TableLinkCollectionResponse) IsWordsResponse() bool

func (*TableLinkCollectionResponse) SetRequestId ¶

func (obj *TableLinkCollectionResponse) SetRequestId(value *string)

func (*TableLinkCollectionResponse) SetTables ¶

func (obj *TableLinkCollectionResponse) SetTables(value ITableLinkCollection)

func (*TableLinkCollectionResponse) Validate ¶

func (obj *TableLinkCollectionResponse) Validate() error

type TableProperties ¶

type TableProperties struct {
	// DTO container with table properties.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with table properties.
	Alignment *string `json:"Alignment,omitempty"`

	// DTO container with table properties.
	AllowAutoFit *bool `json:"AllowAutoFit,omitempty"`

	// DTO container with table properties.
	Bidi *bool `json:"Bidi,omitempty"`

	// DTO container with table properties.
	BottomPadding *float64 `json:"BottomPadding,omitempty"`

	// DTO container with table properties.
	CellSpacing *float64 `json:"CellSpacing,omitempty"`

	// DTO container with table properties.
	LeftIndent *float64 `json:"LeftIndent,omitempty"`

	// DTO container with table properties.
	LeftPadding *float64 `json:"LeftPadding,omitempty"`

	// DTO container with table properties.
	PreferredWidth IPreferredWidth `json:"PreferredWidth,omitempty"`

	// DTO container with table properties.
	RightPadding *float64 `json:"RightPadding,omitempty"`

	// DTO container with table properties.
	StyleIdentifier *string `json:"StyleIdentifier,omitempty"`

	// DTO container with table properties.
	StyleName *string `json:"StyleName,omitempty"`

	// DTO container with table properties.
	StyleOptions *string `json:"StyleOptions,omitempty"`

	// DTO container with table properties.
	TextWrapping *string `json:"TextWrapping,omitempty"`

	// DTO container with table properties.
	TopPadding *float64 `json:"TopPadding,omitempty"`
}

func (*TableProperties) CollectFilesContent ¶

func (obj *TableProperties) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableProperties) Deserialize ¶

func (obj *TableProperties) Deserialize(json map[string]interface{})

func (*TableProperties) GetAlignment ¶

func (obj *TableProperties) GetAlignment() *string

func (*TableProperties) GetAllowAutoFit ¶

func (obj *TableProperties) GetAllowAutoFit() *bool

func (*TableProperties) GetBidi ¶

func (obj *TableProperties) GetBidi() *bool

func (*TableProperties) GetBottomPadding ¶

func (obj *TableProperties) GetBottomPadding() *float64

func (*TableProperties) GetCellSpacing ¶

func (obj *TableProperties) GetCellSpacing() *float64

func (*TableProperties) GetLeftIndent ¶

func (obj *TableProperties) GetLeftIndent() *float64

func (*TableProperties) GetLeftPadding ¶

func (obj *TableProperties) GetLeftPadding() *float64
func (obj *TableProperties) GetLink() IWordsApiLink

func (*TableProperties) GetPreferredWidth ¶

func (obj *TableProperties) GetPreferredWidth() IPreferredWidth

func (*TableProperties) GetRightPadding ¶

func (obj *TableProperties) GetRightPadding() *float64

func (*TableProperties) GetStyleIdentifier ¶

func (obj *TableProperties) GetStyleIdentifier() *string

func (*TableProperties) GetStyleName ¶

func (obj *TableProperties) GetStyleName() *string

func (*TableProperties) GetStyleOptions ¶

func (obj *TableProperties) GetStyleOptions() *string

func (*TableProperties) GetTextWrapping ¶

func (obj *TableProperties) GetTextWrapping() *string

func (*TableProperties) GetTopPadding ¶

func (obj *TableProperties) GetTopPadding() *float64

func (*TableProperties) Initialize ¶

func (obj *TableProperties) Initialize()

func (TableProperties) IsLinkElement ¶

func (TableProperties) IsLinkElement() bool

func (TableProperties) IsTableProperties ¶

func (TableProperties) IsTableProperties() bool

func (*TableProperties) SetAlignment ¶

func (obj *TableProperties) SetAlignment(value *string)

func (*TableProperties) SetAllowAutoFit ¶

func (obj *TableProperties) SetAllowAutoFit(value *bool)

func (*TableProperties) SetBidi ¶

func (obj *TableProperties) SetBidi(value *bool)

func (*TableProperties) SetBottomPadding ¶

func (obj *TableProperties) SetBottomPadding(value *float64)

func (*TableProperties) SetCellSpacing ¶

func (obj *TableProperties) SetCellSpacing(value *float64)

func (*TableProperties) SetLeftIndent ¶

func (obj *TableProperties) SetLeftIndent(value *float64)

func (*TableProperties) SetLeftPadding ¶

func (obj *TableProperties) SetLeftPadding(value *float64)
func (obj *TableProperties) SetLink(value IWordsApiLink)

func (*TableProperties) SetPreferredWidth ¶

func (obj *TableProperties) SetPreferredWidth(value IPreferredWidth)

func (*TableProperties) SetRightPadding ¶

func (obj *TableProperties) SetRightPadding(value *float64)

func (*TableProperties) SetStyleIdentifier ¶

func (obj *TableProperties) SetStyleIdentifier(value *string)

func (*TableProperties) SetStyleName ¶

func (obj *TableProperties) SetStyleName(value *string)

func (*TableProperties) SetStyleOptions ¶

func (obj *TableProperties) SetStyleOptions(value *string)

func (*TableProperties) SetTextWrapping ¶

func (obj *TableProperties) SetTextWrapping(value *string)

func (*TableProperties) SetTopPadding ¶

func (obj *TableProperties) SetTopPadding(value *float64)

func (*TableProperties) Validate ¶

func (obj *TableProperties) Validate() error

type TablePropertiesResponse ¶

type TablePropertiesResponse struct {
	// The REST response with a table.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}/properties" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a table.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}/properties" REST API requests.
	Properties ITableProperties `json:"Properties,omitempty"`
}

func (*TablePropertiesResponse) CollectFilesContent ¶

func (obj *TablePropertiesResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TablePropertiesResponse) Deserialize ¶

func (obj *TablePropertiesResponse) Deserialize(json map[string]interface{})

func (*TablePropertiesResponse) GetProperties ¶

func (obj *TablePropertiesResponse) GetProperties() ITableProperties

func (*TablePropertiesResponse) GetRequestId ¶

func (obj *TablePropertiesResponse) GetRequestId() *string

func (*TablePropertiesResponse) Initialize ¶

func (obj *TablePropertiesResponse) Initialize()

func (TablePropertiesResponse) IsTablePropertiesResponse ¶

func (TablePropertiesResponse) IsTablePropertiesResponse() bool

func (TablePropertiesResponse) IsWordsResponse ¶

func (TablePropertiesResponse) IsWordsResponse() bool

func (*TablePropertiesResponse) SetProperties ¶

func (obj *TablePropertiesResponse) SetProperties(value ITableProperties)

func (*TablePropertiesResponse) SetRequestId ¶

func (obj *TablePropertiesResponse) SetRequestId(value *string)

func (*TablePropertiesResponse) Validate ¶

func (obj *TablePropertiesResponse) Validate() error

type TableResponse ¶

type TableResponse struct {
	// The REST response with a table.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a table.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}" REST API requests.
	Table ITable `json:"Table,omitempty"`
}

func (*TableResponse) CollectFilesContent ¶

func (obj *TableResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableResponse) Deserialize ¶

func (obj *TableResponse) Deserialize(json map[string]interface{})

func (*TableResponse) GetRequestId ¶

func (obj *TableResponse) GetRequestId() *string

func (*TableResponse) GetTable ¶

func (obj *TableResponse) GetTable() ITable

func (*TableResponse) Initialize ¶

func (obj *TableResponse) Initialize()

func (TableResponse) IsTableResponse ¶

func (TableResponse) IsTableResponse() bool

func (TableResponse) IsWordsResponse ¶

func (TableResponse) IsWordsResponse() bool

func (*TableResponse) SetRequestId ¶

func (obj *TableResponse) SetRequestId(value *string)

func (*TableResponse) SetTable ¶

func (obj *TableResponse) SetTable(value ITable)

func (*TableResponse) Validate ¶

func (obj *TableResponse) Validate() error

type TableRow ¶

type TableRow struct {
	// DTO container with a table row element.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with a table row element.
	NodeId *string `json:"NodeId,omitempty"`

	// DTO container with a table row element.
	TableCellList []ITableCell `json:"TableCellList,omitempty"`

	// DTO container with a table row element.
	RowFormat ITableRowFormat `json:"RowFormat,omitempty"`
}

func (*TableRow) CollectFilesContent ¶

func (obj *TableRow) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableRow) Deserialize ¶

func (obj *TableRow) Deserialize(json map[string]interface{})
func (obj *TableRow) GetLink() IWordsApiLink

func (*TableRow) GetNodeId ¶

func (obj *TableRow) GetNodeId() *string

func (*TableRow) GetRowFormat ¶

func (obj *TableRow) GetRowFormat() ITableRowFormat

func (*TableRow) GetTableCellList ¶

func (obj *TableRow) GetTableCellList() []ITableCell

func (*TableRow) Initialize ¶

func (obj *TableRow) Initialize()

func (TableRow) IsLinkElement ¶

func (TableRow) IsLinkElement() bool
func (TableRow) IsNodeLink() bool

func (TableRow) IsTableRow ¶

func (TableRow) IsTableRow() bool
func (obj *TableRow) SetLink(value IWordsApiLink)

func (*TableRow) SetNodeId ¶

func (obj *TableRow) SetNodeId(value *string)

func (*TableRow) SetRowFormat ¶

func (obj *TableRow) SetRowFormat(value ITableRowFormat)

func (*TableRow) SetTableCellList ¶

func (obj *TableRow) SetTableCellList(value []ITableCell)

func (*TableRow) Validate ¶

func (obj *TableRow) Validate() error

type TableRowFormat ¶

type TableRowFormat struct {
	// DTO container with formatting for a table row.
	Link IWordsApiLink `json:"Link,omitempty"`

	// DTO container with formatting for a table row.
	Height *float64 `json:"Height,omitempty"`

	// DTO container with formatting for a table row.
	HeightRule *string `json:"HeightRule,omitempty"`

	// DTO container with formatting for a table row.
	AllowBreakAcrossPages *bool `json:"AllowBreakAcrossPages,omitempty"`

	// DTO container with formatting for a table row.
	HeadingFormat *bool `json:"HeadingFormat,omitempty"`
}

func (*TableRowFormat) CollectFilesContent ¶

func (obj *TableRowFormat) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableRowFormat) Deserialize ¶

func (obj *TableRowFormat) Deserialize(json map[string]interface{})

func (*TableRowFormat) GetAllowBreakAcrossPages ¶

func (obj *TableRowFormat) GetAllowBreakAcrossPages() *bool

func (*TableRowFormat) GetHeadingFormat ¶

func (obj *TableRowFormat) GetHeadingFormat() *bool

func (*TableRowFormat) GetHeight ¶

func (obj *TableRowFormat) GetHeight() *float64

func (*TableRowFormat) GetHeightRule ¶

func (obj *TableRowFormat) GetHeightRule() *string
func (obj *TableRowFormat) GetLink() IWordsApiLink

func (*TableRowFormat) Initialize ¶

func (obj *TableRowFormat) Initialize()

func (TableRowFormat) IsLinkElement ¶

func (TableRowFormat) IsLinkElement() bool

func (TableRowFormat) IsTableRowFormat ¶

func (TableRowFormat) IsTableRowFormat() bool

func (*TableRowFormat) SetAllowBreakAcrossPages ¶

func (obj *TableRowFormat) SetAllowBreakAcrossPages(value *bool)

func (*TableRowFormat) SetHeadingFormat ¶

func (obj *TableRowFormat) SetHeadingFormat(value *bool)

func (*TableRowFormat) SetHeight ¶

func (obj *TableRowFormat) SetHeight(value *float64)

func (*TableRowFormat) SetHeightRule ¶

func (obj *TableRowFormat) SetHeightRule(value *string)
func (obj *TableRowFormat) SetLink(value IWordsApiLink)

func (*TableRowFormat) Validate ¶

func (obj *TableRowFormat) Validate() error

type TableRowFormatResponse ¶

type TableRowFormatResponse struct {
	// The REST response with the formatting properties of a table row.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}/rows/{1}/rowformat" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with the formatting properties of a table row.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}/rows/{1}/rowformat" REST API requests.
	RowFormat ITableRowFormat `json:"RowFormat,omitempty"`
}

func (*TableRowFormatResponse) CollectFilesContent ¶

func (obj *TableRowFormatResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableRowFormatResponse) Deserialize ¶

func (obj *TableRowFormatResponse) Deserialize(json map[string]interface{})

func (*TableRowFormatResponse) GetRequestId ¶

func (obj *TableRowFormatResponse) GetRequestId() *string

func (*TableRowFormatResponse) GetRowFormat ¶

func (obj *TableRowFormatResponse) GetRowFormat() ITableRowFormat

func (*TableRowFormatResponse) Initialize ¶

func (obj *TableRowFormatResponse) Initialize()

func (TableRowFormatResponse) IsTableRowFormatResponse ¶

func (TableRowFormatResponse) IsTableRowFormatResponse() bool

func (TableRowFormatResponse) IsWordsResponse ¶

func (TableRowFormatResponse) IsWordsResponse() bool

func (*TableRowFormatResponse) SetRequestId ¶

func (obj *TableRowFormatResponse) SetRequestId(value *string)

func (*TableRowFormatResponse) SetRowFormat ¶

func (obj *TableRowFormatResponse) SetRowFormat(value ITableRowFormat)

func (*TableRowFormatResponse) Validate ¶

func (obj *TableRowFormatResponse) Validate() error

type TableRowInsert ¶

type TableRowInsert struct {
	// DTO container with a table row element.
	ColumnsCount *int32 `json:"ColumnsCount,omitempty"`

	// DTO container with a table row element.
	ExistingRowPosition IPosition `json:"ExistingRowPosition,omitempty"`

	// DTO container with a table row element.
	InsertAfter *int32 `json:"InsertAfter,omitempty"`
}

func (*TableRowInsert) CollectFilesContent ¶

func (obj *TableRowInsert) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableRowInsert) Deserialize ¶

func (obj *TableRowInsert) Deserialize(json map[string]interface{})

func (*TableRowInsert) GetColumnsCount ¶

func (obj *TableRowInsert) GetColumnsCount() *int32

func (*TableRowInsert) GetExistingRowPosition ¶

func (obj *TableRowInsert) GetExistingRowPosition() IPosition

func (*TableRowInsert) GetInsertAfter ¶

func (obj *TableRowInsert) GetInsertAfter() *int32

func (*TableRowInsert) Initialize ¶

func (obj *TableRowInsert) Initialize()

func (TableRowInsert) IsTableRowInsert ¶

func (TableRowInsert) IsTableRowInsert() bool

func (*TableRowInsert) SetColumnsCount ¶

func (obj *TableRowInsert) SetColumnsCount(value *int32)

func (*TableRowInsert) SetExistingRowPosition ¶

func (obj *TableRowInsert) SetExistingRowPosition(value IPosition)

func (*TableRowInsert) SetInsertAfter ¶

func (obj *TableRowInsert) SetInsertAfter(value *int32)

func (*TableRowInsert) Validate ¶

func (obj *TableRowInsert) Validate() error

type TableRowResponse ¶

type TableRowResponse struct {
	// The REST response with a table row.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}" REST API requests.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with a table row.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}" REST API requests.
	Row ITableRow `json:"Row,omitempty"`
}

func (*TableRowResponse) CollectFilesContent ¶

func (obj *TableRowResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TableRowResponse) Deserialize ¶

func (obj *TableRowResponse) Deserialize(json map[string]interface{})

func (*TableRowResponse) GetRequestId ¶

func (obj *TableRowResponse) GetRequestId() *string

func (*TableRowResponse) GetRow ¶

func (obj *TableRowResponse) GetRow() ITableRow

func (*TableRowResponse) Initialize ¶

func (obj *TableRowResponse) Initialize()

func (TableRowResponse) IsTableRowResponse ¶

func (TableRowResponse) IsTableRowResponse() bool

func (TableRowResponse) IsWordsResponse ¶

func (TableRowResponse) IsWordsResponse() bool

func (*TableRowResponse) SetRequestId ¶

func (obj *TableRowResponse) SetRequestId(value *string)

func (*TableRowResponse) SetRow ¶

func (obj *TableRowResponse) SetRow(value ITableRow)

func (*TableRowResponse) Validate ¶

func (obj *TableRowResponse) Validate() error

type TextSaveOptionsData ¶

type TextSaveOptionsData struct {
	// Container class for text save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for text save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for text save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for text save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for text save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for text save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for text save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for text save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for text save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for text save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for text save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for text save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for text save options.
	Encoding *string `json:"Encoding,omitempty"`

	// Container class for text save options.
	ExportHeadersFootersMode *string `json:"ExportHeadersFootersMode,omitempty"`

	// Container class for text save options.
	ForcePageBreaks *bool `json:"ForcePageBreaks,omitempty"`

	// Container class for text save options.
	ParagraphBreak *string `json:"ParagraphBreak,omitempty"`

	// Container class for text save options.
	AddBidiMarks *bool `json:"AddBidiMarks,omitempty"`

	// Container class for text save options.
	MaxCharactersPerLine *int32 `json:"MaxCharactersPerLine,omitempty"`

	// Container class for text save options.
	PreserveTableLayout *bool `json:"PreserveTableLayout,omitempty"`

	// Container class for text save options.
	SimplifyListLabels *bool `json:"SimplifyListLabels,omitempty"`

	// Container class for text save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*TextSaveOptionsData) CollectFilesContent ¶

func (obj *TextSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TextSaveOptionsData) Deserialize ¶

func (obj *TextSaveOptionsData) Deserialize(json map[string]interface{})

func (*TextSaveOptionsData) GetAddBidiMarks ¶

func (obj *TextSaveOptionsData) GetAddBidiMarks() *bool

func (*TextSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *TextSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*TextSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *TextSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*TextSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *TextSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*TextSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *TextSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*TextSaveOptionsData) GetDmlRenderingMode ¶

func (obj *TextSaveOptionsData) GetDmlRenderingMode() *string

func (*TextSaveOptionsData) GetEncoding ¶

func (obj *TextSaveOptionsData) GetEncoding() *string

func (*TextSaveOptionsData) GetExportHeadersFootersMode ¶

func (obj *TextSaveOptionsData) GetExportHeadersFootersMode() *string

func (*TextSaveOptionsData) GetFileName ¶

func (obj *TextSaveOptionsData) GetFileName() *string

func (*TextSaveOptionsData) GetForcePageBreaks ¶

func (obj *TextSaveOptionsData) GetForcePageBreaks() *bool

func (*TextSaveOptionsData) GetImlRenderingMode ¶

func (obj *TextSaveOptionsData) GetImlRenderingMode() *string

func (*TextSaveOptionsData) GetMaxCharactersPerLine ¶

func (obj *TextSaveOptionsData) GetMaxCharactersPerLine() *int32

func (*TextSaveOptionsData) GetParagraphBreak ¶

func (obj *TextSaveOptionsData) GetParagraphBreak() *string

func (*TextSaveOptionsData) GetPreserveTableLayout ¶

func (obj *TextSaveOptionsData) GetPreserveTableLayout() *bool

func (*TextSaveOptionsData) GetSaveFormat ¶

func (obj *TextSaveOptionsData) GetSaveFormat() *string

func (*TextSaveOptionsData) GetSimplifyListLabels ¶

func (obj *TextSaveOptionsData) GetSimplifyListLabels() *bool

func (*TextSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *TextSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*TextSaveOptionsData) GetUpdateFields ¶

func (obj *TextSaveOptionsData) GetUpdateFields() *bool

func (*TextSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *TextSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*TextSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *TextSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*TextSaveOptionsData) GetZipOutput ¶

func (obj *TextSaveOptionsData) GetZipOutput() *bool

func (*TextSaveOptionsData) Initialize ¶

func (obj *TextSaveOptionsData) Initialize()

func (TextSaveOptionsData) IsSaveOptionsData ¶

func (TextSaveOptionsData) IsSaveOptionsData() bool

func (TextSaveOptionsData) IsTextSaveOptionsData ¶

func (TextSaveOptionsData) IsTextSaveOptionsData() bool

func (TextSaveOptionsData) IsTxtSaveOptionsBaseData ¶

func (TextSaveOptionsData) IsTxtSaveOptionsBaseData() bool

func (*TextSaveOptionsData) SetAddBidiMarks ¶

func (obj *TextSaveOptionsData) SetAddBidiMarks(value *bool)

func (*TextSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *TextSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*TextSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *TextSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*TextSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *TextSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*TextSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *TextSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*TextSaveOptionsData) SetDmlRenderingMode ¶

func (obj *TextSaveOptionsData) SetDmlRenderingMode(value *string)

func (*TextSaveOptionsData) SetEncoding ¶

func (obj *TextSaveOptionsData) SetEncoding(value *string)

func (*TextSaveOptionsData) SetExportHeadersFootersMode ¶

func (obj *TextSaveOptionsData) SetExportHeadersFootersMode(value *string)

func (*TextSaveOptionsData) SetFileName ¶

func (obj *TextSaveOptionsData) SetFileName(value *string)

func (*TextSaveOptionsData) SetForcePageBreaks ¶

func (obj *TextSaveOptionsData) SetForcePageBreaks(value *bool)

func (*TextSaveOptionsData) SetImlRenderingMode ¶

func (obj *TextSaveOptionsData) SetImlRenderingMode(value *string)

func (*TextSaveOptionsData) SetMaxCharactersPerLine ¶

func (obj *TextSaveOptionsData) SetMaxCharactersPerLine(value *int32)

func (*TextSaveOptionsData) SetParagraphBreak ¶

func (obj *TextSaveOptionsData) SetParagraphBreak(value *string)

func (*TextSaveOptionsData) SetPreserveTableLayout ¶

func (obj *TextSaveOptionsData) SetPreserveTableLayout(value *bool)

func (*TextSaveOptionsData) SetSaveFormat ¶

func (obj *TextSaveOptionsData) SetSaveFormat(value *string)

func (*TextSaveOptionsData) SetSimplifyListLabels ¶

func (obj *TextSaveOptionsData) SetSimplifyListLabels(value *bool)

func (*TextSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *TextSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*TextSaveOptionsData) SetUpdateFields ¶

func (obj *TextSaveOptionsData) SetUpdateFields(value *bool)

func (*TextSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *TextSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*TextSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *TextSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*TextSaveOptionsData) SetZipOutput ¶

func (obj *TextSaveOptionsData) SetZipOutput(value *bool)

func (*TextSaveOptionsData) Validate ¶

func (obj *TextSaveOptionsData) Validate() error

type TiffSaveOptionsData ¶

type TiffSaveOptionsData struct {
	// Container class for tiff save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for tiff save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for tiff save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for tiff save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for tiff save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for tiff save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for tiff save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for tiff save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for tiff save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for tiff save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for tiff save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for tiff save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for tiff save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for tiff save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for tiff save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for tiff save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for tiff save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for tiff save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for tiff save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for tiff save options.
	HorizontalResolution *float64 `json:"HorizontalResolution,omitempty"`

	// Container class for tiff save options.
	ImageBrightness *float64 `json:"ImageBrightness,omitempty"`

	// Container class for tiff save options.
	ImageColorMode *string `json:"ImageColorMode,omitempty"`

	// Container class for tiff save options.
	ImageContrast *float64 `json:"ImageContrast,omitempty"`

	// Container class for tiff save options.
	PaperColor *string `json:"PaperColor,omitempty"`

	// Container class for tiff save options.
	PixelFormat *string `json:"PixelFormat,omitempty"`

	// Container class for tiff save options.
	Resolution *float64 `json:"Resolution,omitempty"`

	// Container class for tiff save options.
	Scale *float64 `json:"Scale,omitempty"`

	// Container class for tiff save options.
	UseAntiAliasing *bool `json:"UseAntiAliasing,omitempty"`

	// Container class for tiff save options.
	UseHighQualityRendering *bool `json:"UseHighQualityRendering,omitempty"`

	// Container class for tiff save options.
	VerticalResolution *float64 `json:"VerticalResolution,omitempty"`

	// Container class for tiff save options.
	ImageHeight *int32 `json:"ImageHeight,omitempty"`

	// Container class for tiff save options.
	ImageWidth *int32 `json:"ImageWidth,omitempty"`

	// Container class for tiff save options.
	UseGdiEmfRenderer *bool `json:"UseGdiEmfRenderer,omitempty"`

	// Container class for tiff save options.
	ThresholdForFloydSteinbergDithering *int32 `json:"ThresholdForFloydSteinbergDithering,omitempty"`

	// Container class for tiff save options.
	TiffBinarizationMethod *string `json:"TiffBinarizationMethod,omitempty"`

	// Container class for tiff save options.
	TiffCompression *string `json:"TiffCompression,omitempty"`

	// Container class for tiff save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*TiffSaveOptionsData) CollectFilesContent ¶

func (obj *TiffSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TiffSaveOptionsData) Deserialize ¶

func (obj *TiffSaveOptionsData) Deserialize(json map[string]interface{})

func (*TiffSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *TiffSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*TiffSaveOptionsData) GetColorMode ¶

func (obj *TiffSaveOptionsData) GetColorMode() *string

func (*TiffSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *TiffSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*TiffSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *TiffSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*TiffSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *TiffSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*TiffSaveOptionsData) GetDmlRenderingMode ¶

func (obj *TiffSaveOptionsData) GetDmlRenderingMode() *string

func (*TiffSaveOptionsData) GetFileName ¶

func (obj *TiffSaveOptionsData) GetFileName() *string

func (*TiffSaveOptionsData) GetHorizontalResolution ¶

func (obj *TiffSaveOptionsData) GetHorizontalResolution() *float64

func (*TiffSaveOptionsData) GetImageBrightness ¶

func (obj *TiffSaveOptionsData) GetImageBrightness() *float64

func (*TiffSaveOptionsData) GetImageColorMode ¶

func (obj *TiffSaveOptionsData) GetImageColorMode() *string

func (*TiffSaveOptionsData) GetImageContrast ¶

func (obj *TiffSaveOptionsData) GetImageContrast() *float64

func (*TiffSaveOptionsData) GetImageHeight ¶

func (obj *TiffSaveOptionsData) GetImageHeight() *int32

func (*TiffSaveOptionsData) GetImageWidth ¶

func (obj *TiffSaveOptionsData) GetImageWidth() *int32

func (*TiffSaveOptionsData) GetImlRenderingMode ¶

func (obj *TiffSaveOptionsData) GetImlRenderingMode() *string

func (*TiffSaveOptionsData) GetJpegQuality ¶

func (obj *TiffSaveOptionsData) GetJpegQuality() *int32

func (*TiffSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *TiffSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*TiffSaveOptionsData) GetNumeralFormat ¶

func (obj *TiffSaveOptionsData) GetNumeralFormat() *string

func (*TiffSaveOptionsData) GetOptimizeOutput ¶

func (obj *TiffSaveOptionsData) GetOptimizeOutput() *bool

func (*TiffSaveOptionsData) GetPageCount ¶

func (obj *TiffSaveOptionsData) GetPageCount() *int32

func (*TiffSaveOptionsData) GetPageIndex ¶

func (obj *TiffSaveOptionsData) GetPageIndex() *int32

func (*TiffSaveOptionsData) GetPaperColor ¶

func (obj *TiffSaveOptionsData) GetPaperColor() *string

func (*TiffSaveOptionsData) GetPixelFormat ¶

func (obj *TiffSaveOptionsData) GetPixelFormat() *string

func (*TiffSaveOptionsData) GetResolution ¶

func (obj *TiffSaveOptionsData) GetResolution() *float64

func (*TiffSaveOptionsData) GetSaveFormat ¶

func (obj *TiffSaveOptionsData) GetSaveFormat() *string

func (*TiffSaveOptionsData) GetScale ¶

func (obj *TiffSaveOptionsData) GetScale() *float64

func (*TiffSaveOptionsData) GetThresholdForFloydSteinbergDithering ¶

func (obj *TiffSaveOptionsData) GetThresholdForFloydSteinbergDithering() *int32

func (*TiffSaveOptionsData) GetTiffBinarizationMethod ¶

func (obj *TiffSaveOptionsData) GetTiffBinarizationMethod() *string

func (*TiffSaveOptionsData) GetTiffCompression ¶

func (obj *TiffSaveOptionsData) GetTiffCompression() *string

func (*TiffSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *TiffSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*TiffSaveOptionsData) GetUpdateFields ¶

func (obj *TiffSaveOptionsData) GetUpdateFields() *bool

func (*TiffSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *TiffSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*TiffSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *TiffSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*TiffSaveOptionsData) GetUseAntiAliasing ¶

func (obj *TiffSaveOptionsData) GetUseAntiAliasing() *bool

func (*TiffSaveOptionsData) GetUseGdiEmfRenderer ¶

func (obj *TiffSaveOptionsData) GetUseGdiEmfRenderer() *bool

func (*TiffSaveOptionsData) GetUseHighQualityRendering ¶

func (obj *TiffSaveOptionsData) GetUseHighQualityRendering() *bool

func (*TiffSaveOptionsData) GetVerticalResolution ¶

func (obj *TiffSaveOptionsData) GetVerticalResolution() *float64

func (*TiffSaveOptionsData) GetZipOutput ¶

func (obj *TiffSaveOptionsData) GetZipOutput() *bool

func (*TiffSaveOptionsData) Initialize ¶

func (obj *TiffSaveOptionsData) Initialize()

func (TiffSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (TiffSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (TiffSaveOptionsData) IsImageSaveOptionsData ¶

func (TiffSaveOptionsData) IsImageSaveOptionsData() bool

func (TiffSaveOptionsData) IsSaveOptionsData ¶

func (TiffSaveOptionsData) IsSaveOptionsData() bool

func (TiffSaveOptionsData) IsTiffSaveOptionsData ¶

func (TiffSaveOptionsData) IsTiffSaveOptionsData() bool

func (*TiffSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *TiffSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*TiffSaveOptionsData) SetColorMode ¶

func (obj *TiffSaveOptionsData) SetColorMode(value *string)

func (*TiffSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *TiffSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*TiffSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *TiffSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*TiffSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *TiffSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*TiffSaveOptionsData) SetDmlRenderingMode ¶

func (obj *TiffSaveOptionsData) SetDmlRenderingMode(value *string)

func (*TiffSaveOptionsData) SetFileName ¶

func (obj *TiffSaveOptionsData) SetFileName(value *string)

func (*TiffSaveOptionsData) SetHorizontalResolution ¶

func (obj *TiffSaveOptionsData) SetHorizontalResolution(value *float64)

func (*TiffSaveOptionsData) SetImageBrightness ¶

func (obj *TiffSaveOptionsData) SetImageBrightness(value *float64)

func (*TiffSaveOptionsData) SetImageColorMode ¶

func (obj *TiffSaveOptionsData) SetImageColorMode(value *string)

func (*TiffSaveOptionsData) SetImageContrast ¶

func (obj *TiffSaveOptionsData) SetImageContrast(value *float64)

func (*TiffSaveOptionsData) SetImageHeight ¶

func (obj *TiffSaveOptionsData) SetImageHeight(value *int32)

func (*TiffSaveOptionsData) SetImageWidth ¶

func (obj *TiffSaveOptionsData) SetImageWidth(value *int32)

func (*TiffSaveOptionsData) SetImlRenderingMode ¶

func (obj *TiffSaveOptionsData) SetImlRenderingMode(value *string)

func (*TiffSaveOptionsData) SetJpegQuality ¶

func (obj *TiffSaveOptionsData) SetJpegQuality(value *int32)

func (*TiffSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *TiffSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*TiffSaveOptionsData) SetNumeralFormat ¶

func (obj *TiffSaveOptionsData) SetNumeralFormat(value *string)

func (*TiffSaveOptionsData) SetOptimizeOutput ¶

func (obj *TiffSaveOptionsData) SetOptimizeOutput(value *bool)

func (*TiffSaveOptionsData) SetPageCount ¶

func (obj *TiffSaveOptionsData) SetPageCount(value *int32)

func (*TiffSaveOptionsData) SetPageIndex ¶

func (obj *TiffSaveOptionsData) SetPageIndex(value *int32)

func (*TiffSaveOptionsData) SetPaperColor ¶

func (obj *TiffSaveOptionsData) SetPaperColor(value *string)

func (*TiffSaveOptionsData) SetPixelFormat ¶

func (obj *TiffSaveOptionsData) SetPixelFormat(value *string)

func (*TiffSaveOptionsData) SetResolution ¶

func (obj *TiffSaveOptionsData) SetResolution(value *float64)

func (*TiffSaveOptionsData) SetSaveFormat ¶

func (obj *TiffSaveOptionsData) SetSaveFormat(value *string)

func (*TiffSaveOptionsData) SetScale ¶

func (obj *TiffSaveOptionsData) SetScale(value *float64)

func (*TiffSaveOptionsData) SetThresholdForFloydSteinbergDithering ¶

func (obj *TiffSaveOptionsData) SetThresholdForFloydSteinbergDithering(value *int32)

func (*TiffSaveOptionsData) SetTiffBinarizationMethod ¶

func (obj *TiffSaveOptionsData) SetTiffBinarizationMethod(value *string)

func (*TiffSaveOptionsData) SetTiffCompression ¶

func (obj *TiffSaveOptionsData) SetTiffCompression(value *string)

func (*TiffSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *TiffSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*TiffSaveOptionsData) SetUpdateFields ¶

func (obj *TiffSaveOptionsData) SetUpdateFields(value *bool)

func (*TiffSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *TiffSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*TiffSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *TiffSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*TiffSaveOptionsData) SetUseAntiAliasing ¶

func (obj *TiffSaveOptionsData) SetUseAntiAliasing(value *bool)

func (*TiffSaveOptionsData) SetUseGdiEmfRenderer ¶

func (obj *TiffSaveOptionsData) SetUseGdiEmfRenderer(value *bool)

func (*TiffSaveOptionsData) SetUseHighQualityRendering ¶

func (obj *TiffSaveOptionsData) SetUseHighQualityRendering(value *bool)

func (*TiffSaveOptionsData) SetVerticalResolution ¶

func (obj *TiffSaveOptionsData) SetVerticalResolution(value *float64)

func (*TiffSaveOptionsData) SetZipOutput ¶

func (obj *TiffSaveOptionsData) SetZipOutput(value *bool)

func (*TiffSaveOptionsData) Validate ¶

func (obj *TiffSaveOptionsData) Validate() error

type Time ¶

type Time struct {
	time.Time
}

Time struct with custom json deserialization.

func (*Time) Parse ¶

func (t *Time) Parse(str string) error

func (*Time) UnmarshalJSON ¶

func (t *Time) UnmarshalJSON(data []byte) error

unmarshall date

type TimeZoneInfoData ¶

type TimeZoneInfoData struct {
	// Class to specify TimeZoneInfo parameters.
	BaseUtcOffset *string `json:"BaseUtcOffset,omitempty"`

	// Class to specify TimeZoneInfo parameters.
	DisplayName *string `json:"DisplayName,omitempty"`

	// Class to specify TimeZoneInfo parameters.
	Id *string `json:"Id,omitempty"`

	// Class to specify TimeZoneInfo parameters.
	StandardDisplayName *string `json:"StandardDisplayName,omitempty"`
}

func (*TimeZoneInfoData) CollectFilesContent ¶

func (obj *TimeZoneInfoData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*TimeZoneInfoData) Deserialize ¶

func (obj *TimeZoneInfoData) Deserialize(json map[string]interface{})

func (*TimeZoneInfoData) GetBaseUtcOffset ¶

func (obj *TimeZoneInfoData) GetBaseUtcOffset() *string

func (*TimeZoneInfoData) GetDisplayName ¶

func (obj *TimeZoneInfoData) GetDisplayName() *string

func (*TimeZoneInfoData) GetId ¶

func (obj *TimeZoneInfoData) GetId() *string

func (*TimeZoneInfoData) GetStandardDisplayName ¶

func (obj *TimeZoneInfoData) GetStandardDisplayName() *string

func (*TimeZoneInfoData) Initialize ¶

func (obj *TimeZoneInfoData) Initialize()

func (TimeZoneInfoData) IsTimeZoneInfoData ¶

func (TimeZoneInfoData) IsTimeZoneInfoData() bool

func (*TimeZoneInfoData) SetBaseUtcOffset ¶

func (obj *TimeZoneInfoData) SetBaseUtcOffset(value *string)

func (*TimeZoneInfoData) SetDisplayName ¶

func (obj *TimeZoneInfoData) SetDisplayName(value *string)

func (*TimeZoneInfoData) SetId ¶

func (obj *TimeZoneInfoData) SetId(value *string)

func (*TimeZoneInfoData) SetStandardDisplayName ¶

func (obj *TimeZoneInfoData) SetStandardDisplayName(value *string)

func (*TimeZoneInfoData) Validate ¶

func (obj *TimeZoneInfoData) Validate() error

type UnprotectDocumentOnlineRequest ¶

type UnprotectDocumentOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

UnprotectDocumentOnlineRequest contains request data for WordsApiService.UnprotectDocumentOnline method.

func (*UnprotectDocumentOnlineRequest) CreateRequestData ¶

func (data *UnprotectDocumentOnlineRequest) CreateRequestData() (RequestData, error)

func (*UnprotectDocumentOnlineRequest) CreateResponse ¶

func (data *UnprotectDocumentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UnprotectDocumentOnlineResponse ¶

type UnprotectDocumentOnlineResponse struct {
	// The REST response with data on document's protection.
	Model IProtectionDataResponse

	// The document after modification.
	Document map[string]io.Reader
}

UnprotectDocumentOnlineResponse struct Removes protection from the document.

func (*UnprotectDocumentOnlineResponse) GetDocument ¶

func (obj *UnprotectDocumentOnlineResponse) GetDocument() map[string]io.Reader

func (*UnprotectDocumentOnlineResponse) GetModel ¶

func (*UnprotectDocumentOnlineResponse) SetDocument ¶

func (obj *UnprotectDocumentOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UnprotectDocumentOnlineResponse) SetModel ¶

type UnprotectDocumentRequest ¶

type UnprotectDocumentRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

UnprotectDocumentRequest contains request data for WordsApiService.UnprotectDocument method.

func (*UnprotectDocumentRequest) CreateRequestData ¶

func (data *UnprotectDocumentRequest) CreateRequestData() (RequestData, error)

func (*UnprotectDocumentRequest) CreateResponse ¶

func (data *UnprotectDocumentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateBookmarkOnlineRequest ¶

type UpdateBookmarkOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The name of the bookmark.
	BookmarkName *string
	// Bookmark data.
	BookmarkData IBookmarkData
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateBookmarkOnlineRequest contains request data for WordsApiService.UpdateBookmarkOnline method.

func (*UpdateBookmarkOnlineRequest) CreateRequestData ¶

func (data *UpdateBookmarkOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateBookmarkOnlineRequest) CreateResponse ¶

func (data *UpdateBookmarkOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateBookmarkOnlineResponse ¶

type UpdateBookmarkOnlineResponse struct {
	// The REST response with a bookmark.
	// This response should be returned by the service when handling: GET bookmarks/{bookmarkName}.
	Model IBookmarkResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateBookmarkOnlineResponse struct Updates a bookmark in the document.

func (*UpdateBookmarkOnlineResponse) GetDocument ¶

func (obj *UpdateBookmarkOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateBookmarkOnlineResponse) GetModel ¶

func (*UpdateBookmarkOnlineResponse) SetDocument ¶

func (obj *UpdateBookmarkOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateBookmarkOnlineResponse) SetModel ¶

func (obj *UpdateBookmarkOnlineResponse) SetModel(value IBookmarkResponse)

type UpdateBookmarkRequest ¶

type UpdateBookmarkRequest struct {
	// The filename of the input document.
	Name *string
	// The name of the bookmark.
	BookmarkName *string
	// Bookmark data.
	BookmarkData IBookmarkData
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateBookmarkRequest contains request data for WordsApiService.UpdateBookmark method.

func (*UpdateBookmarkRequest) CreateRequestData ¶

func (data *UpdateBookmarkRequest) CreateRequestData() (RequestData, error)

func (*UpdateBookmarkRequest) CreateResponse ¶

func (data *UpdateBookmarkRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateBorderOnlineRequest ¶

type UpdateBorderOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Border properties.
	BorderProperties IBorder
	// Border type.
	BorderType *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateBorderOnlineRequest contains request data for WordsApiService.UpdateBorderOnline method.

func (*UpdateBorderOnlineRequest) CreateRequestData ¶

func (data *UpdateBorderOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateBorderOnlineRequest) CreateResponse ¶

func (data *UpdateBorderOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateBorderOnlineResponse ¶

type UpdateBorderOnlineResponse struct {
	// The REST response with a border.
	// This response is returned by the Service when handling "GET {nodeWithBorders}/borders" REST API requests.
	Model IBorderResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateBorderOnlineResponse struct Updates a border in the document node. The 'nodePath' parameter should refer to a paragraph, a cell or a row.

func (*UpdateBorderOnlineResponse) GetDocument ¶

func (obj *UpdateBorderOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateBorderOnlineResponse) GetModel ¶

func (*UpdateBorderOnlineResponse) SetDocument ¶

func (obj *UpdateBorderOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateBorderOnlineResponse) SetModel ¶

func (obj *UpdateBorderOnlineResponse) SetModel(value IBorderResponse)

type UpdateBorderRequest ¶

type UpdateBorderRequest struct {
	// The filename of the input document.
	Name *string
	// Border type.
	BorderType *string
	// Border properties.
	BorderProperties IBorder
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateBorderRequest contains request data for WordsApiService.UpdateBorder method.

func (*UpdateBorderRequest) CreateRequestData ¶

func (data *UpdateBorderRequest) CreateRequestData() (RequestData, error)

func (*UpdateBorderRequest) CreateResponse ¶

func (data *UpdateBorderRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateCommentOnlineRequest ¶

type UpdateCommentOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the comment.
	CommentIndex *int32
	// Comment data.
	Comment ICommentUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateCommentOnlineRequest contains request data for WordsApiService.UpdateCommentOnline method.

func (*UpdateCommentOnlineRequest) CreateRequestData ¶

func (data *UpdateCommentOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateCommentOnlineRequest) CreateResponse ¶

func (data *UpdateCommentOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateCommentOnlineResponse ¶

type UpdateCommentOnlineResponse struct {
	// The REST response with a comment.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/comments/0" REST API requests.
	Model ICommentResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateCommentOnlineResponse struct Updates a comment in the document.

func (*UpdateCommentOnlineResponse) GetDocument ¶

func (obj *UpdateCommentOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateCommentOnlineResponse) GetModel ¶

func (*UpdateCommentOnlineResponse) SetDocument ¶

func (obj *UpdateCommentOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateCommentOnlineResponse) SetModel ¶

func (obj *UpdateCommentOnlineResponse) SetModel(value ICommentResponse)

type UpdateCommentRequest ¶

type UpdateCommentRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the comment.
	CommentIndex *int32
	// Comment data.
	Comment ICommentUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateCommentRequest contains request data for WordsApiService.UpdateComment method.

func (*UpdateCommentRequest) CreateRequestData ¶

func (data *UpdateCommentRequest) CreateRequestData() (RequestData, error)

func (*UpdateCommentRequest) CreateResponse ¶

func (data *UpdateCommentRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateCustomXmlPartOnlineRequest ¶

type UpdateCustomXmlPartOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the custom xml part. This index is the number of the entry in the collection of custom xml parts, not the ID of the part.
	CustomXmlPartIndex *int32
	// Custom xml part.
	CustomXmlPart ICustomXmlPartUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateCustomXmlPartOnlineRequest contains request data for WordsApiService.UpdateCustomXmlPartOnline method.

func (*UpdateCustomXmlPartOnlineRequest) CreateRequestData ¶

func (data *UpdateCustomXmlPartOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateCustomXmlPartOnlineRequest) CreateResponse ¶

func (data *UpdateCustomXmlPartOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateCustomXmlPartOnlineResponse ¶

type UpdateCustomXmlPartOnlineResponse struct {
	// The REST response with a custom xml part.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/customXmlParts/0" REST API requests.
	Model ICustomXmlPartResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateCustomXmlPartOnlineResponse struct Updates the custom xml part in the document.

func (*UpdateCustomXmlPartOnlineResponse) GetDocument ¶

func (obj *UpdateCustomXmlPartOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateCustomXmlPartOnlineResponse) GetModel ¶

func (*UpdateCustomXmlPartOnlineResponse) SetDocument ¶

func (obj *UpdateCustomXmlPartOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateCustomXmlPartOnlineResponse) SetModel ¶

type UpdateCustomXmlPartRequest ¶

type UpdateCustomXmlPartRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the custom xml part. This index is the number of the entry in the collection of custom xml parts, not the ID of the part.
	CustomXmlPartIndex *int32
	// Custom xml part.
	CustomXmlPart ICustomXmlPartUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateCustomXmlPartRequest contains request data for WordsApiService.UpdateCustomXmlPart method.

func (*UpdateCustomXmlPartRequest) CreateRequestData ¶

func (data *UpdateCustomXmlPartRequest) CreateRequestData() (RequestData, error)

func (*UpdateCustomXmlPartRequest) CreateResponse ¶

func (data *UpdateCustomXmlPartRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateDrawingObjectOnlineRequest ¶

type UpdateDrawingObjectOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Drawing object parameters.
	DrawingObject IDrawingObjectUpdate
	// File with image.
	ImageFile io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateDrawingObjectOnlineRequest contains request data for WordsApiService.UpdateDrawingObjectOnline method.

func (*UpdateDrawingObjectOnlineRequest) CreateRequestData ¶

func (data *UpdateDrawingObjectOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateDrawingObjectOnlineRequest) CreateResponse ¶

func (data *UpdateDrawingObjectOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateDrawingObjectOnlineResponse ¶

type UpdateDrawingObjectOnlineResponse struct {
	// The REST response with a DrawingObject.
	Model IDrawingObjectResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateDrawingObjectOnlineResponse struct Updates a DrawingObject in the document node.

func (*UpdateDrawingObjectOnlineResponse) GetDocument ¶

func (obj *UpdateDrawingObjectOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateDrawingObjectOnlineResponse) GetModel ¶

func (*UpdateDrawingObjectOnlineResponse) SetDocument ¶

func (obj *UpdateDrawingObjectOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateDrawingObjectOnlineResponse) SetModel ¶

type UpdateDrawingObjectRequest ¶

type UpdateDrawingObjectRequest struct {
	// The filename of the input document.
	Name *string
	// Drawing object parameters.
	DrawingObject IDrawingObjectUpdate
	// File with image.
	ImageFile io.ReadCloser
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateDrawingObjectRequest contains request data for WordsApiService.UpdateDrawingObject method.

func (*UpdateDrawingObjectRequest) CreateRequestData ¶

func (data *UpdateDrawingObjectRequest) CreateRequestData() (RequestData, error)

func (*UpdateDrawingObjectRequest) CreateResponse ¶

func (data *UpdateDrawingObjectRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateFieldOnlineRequest ¶

type UpdateFieldOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Field data.
	Field IFieldUpdate
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateFieldOnlineRequest contains request data for WordsApiService.UpdateFieldOnline method.

func (*UpdateFieldOnlineRequest) CreateRequestData ¶

func (data *UpdateFieldOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateFieldOnlineRequest) CreateResponse ¶

func (data *UpdateFieldOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateFieldOnlineResponse ¶

type UpdateFieldOnlineResponse struct {
	// The REST response with a field.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/fields/{1}" REST API requests.
	Model IFieldResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateFieldOnlineResponse struct Updates a field in the document node.

func (*UpdateFieldOnlineResponse) GetDocument ¶

func (obj *UpdateFieldOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateFieldOnlineResponse) GetModel ¶

func (obj *UpdateFieldOnlineResponse) GetModel() IFieldResponse

func (*UpdateFieldOnlineResponse) SetDocument ¶

func (obj *UpdateFieldOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateFieldOnlineResponse) SetModel ¶

func (obj *UpdateFieldOnlineResponse) SetModel(value IFieldResponse)

type UpdateFieldRequest ¶

type UpdateFieldRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	// Field data.
	Field IFieldUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateFieldRequest contains request data for WordsApiService.UpdateField method.

func (*UpdateFieldRequest) CreateRequestData ¶

func (data *UpdateFieldRequest) CreateRequestData() (RequestData, error)

func (*UpdateFieldRequest) CreateResponse ¶

func (data *UpdateFieldRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateFieldsOnlineRequest ¶

type UpdateFieldsOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

UpdateFieldsOnlineRequest contains request data for WordsApiService.UpdateFieldsOnline method.

func (*UpdateFieldsOnlineRequest) CreateRequestData ¶

func (data *UpdateFieldsOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateFieldsOnlineRequest) CreateResponse ¶

func (data *UpdateFieldsOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateFieldsOnlineResponse ¶

type UpdateFieldsOnlineResponse struct {
	// The REST response with a document description.
	Model IDocumentResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateFieldsOnlineResponse struct Reevaluates field values in the document.

func (*UpdateFieldsOnlineResponse) GetDocument ¶

func (obj *UpdateFieldsOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateFieldsOnlineResponse) GetModel ¶

func (*UpdateFieldsOnlineResponse) SetDocument ¶

func (obj *UpdateFieldsOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateFieldsOnlineResponse) SetModel ¶

func (obj *UpdateFieldsOnlineResponse) SetModel(value IDocumentResponse)

type UpdateFieldsRequest ¶

type UpdateFieldsRequest struct {
	// The filename of the input document.
	Name *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. */
	Optionals map[string]interface{}
}

UpdateFieldsRequest contains request data for WordsApiService.UpdateFields method.

func (*UpdateFieldsRequest) CreateRequestData ¶

func (data *UpdateFieldsRequest) CreateRequestData() (RequestData, error)

func (*UpdateFieldsRequest) CreateResponse ¶

func (data *UpdateFieldsRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateFootnoteOnlineRequest ¶

type UpdateFootnoteOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Footnote data.
	FootnoteDto IFootnoteUpdate
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateFootnoteOnlineRequest contains request data for WordsApiService.UpdateFootnoteOnline method.

func (*UpdateFootnoteOnlineRequest) CreateRequestData ¶

func (data *UpdateFootnoteOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateFootnoteOnlineRequest) CreateResponse ¶

func (data *UpdateFootnoteOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateFootnoteOnlineResponse ¶

type UpdateFootnoteOnlineResponse struct {
	// The REST response with a footnote.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/footnote/0" REST API requests.
	Model IFootnoteResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateFootnoteOnlineResponse struct Updates a footnote in the document node.

func (*UpdateFootnoteOnlineResponse) GetDocument ¶

func (obj *UpdateFootnoteOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateFootnoteOnlineResponse) GetModel ¶

func (*UpdateFootnoteOnlineResponse) SetDocument ¶

func (obj *UpdateFootnoteOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateFootnoteOnlineResponse) SetModel ¶

func (obj *UpdateFootnoteOnlineResponse) SetModel(value IFootnoteResponse)

type UpdateFootnoteRequest ¶

type UpdateFootnoteRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	// Footnote data.
	FootnoteDto IFootnoteUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateFootnoteRequest contains request data for WordsApiService.UpdateFootnote method.

func (*UpdateFootnoteRequest) CreateRequestData ¶

func (data *UpdateFootnoteRequest) CreateRequestData() (RequestData, error)

func (*UpdateFootnoteRequest) CreateResponse ¶

func (data *UpdateFootnoteRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateFormFieldOnlineRequest ¶

type UpdateFormFieldOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// From field data.
	FormField IFormField
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateFormFieldOnlineRequest contains request data for WordsApiService.UpdateFormFieldOnline method.

func (*UpdateFormFieldOnlineRequest) CreateRequestData ¶

func (data *UpdateFormFieldOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateFormFieldOnlineRequest) CreateResponse ¶

func (data *UpdateFormFieldOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateFormFieldOnlineResponse ¶

type UpdateFormFieldOnlineResponse struct {
	// The REST response with a form field.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/form fields/{1}" REST API requests.
	Model IFormFieldResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateFormFieldOnlineResponse struct Updates a form field in the document node.

func (*UpdateFormFieldOnlineResponse) GetDocument ¶

func (obj *UpdateFormFieldOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateFormFieldOnlineResponse) GetModel ¶

func (*UpdateFormFieldOnlineResponse) SetDocument ¶

func (obj *UpdateFormFieldOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateFormFieldOnlineResponse) SetModel ¶

type UpdateFormFieldRequest ¶

type UpdateFormFieldRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	// From field data.
	FormField IFormField
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateFormFieldRequest contains request data for WordsApiService.UpdateFormField method.

func (*UpdateFormFieldRequest) CreateRequestData ¶

func (data *UpdateFormFieldRequest) CreateRequestData() (RequestData, error)

func (*UpdateFormFieldRequest) CreateResponse ¶

func (data *UpdateFormFieldRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateListLevelOnlineRequest ¶

type UpdateListLevelOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The list Id.
	ListId *int32
	// List object.
	ListUpdate IListLevelUpdate
	// The list level.
	ListLevel *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateListLevelOnlineRequest contains request data for WordsApiService.UpdateListLevelOnline method.

func (*UpdateListLevelOnlineRequest) CreateRequestData ¶

func (data *UpdateListLevelOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateListLevelOnlineRequest) CreateResponse ¶

func (data *UpdateListLevelOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateListLevelOnlineResponse ¶

type UpdateListLevelOnlineResponse struct {
	// The REST response with a list information.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/lists/{n}" REST API requests.
	Model IListResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateListLevelOnlineResponse struct Updates the level of a List element in the document.

func (*UpdateListLevelOnlineResponse) GetDocument ¶

func (obj *UpdateListLevelOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateListLevelOnlineResponse) GetModel ¶

func (*UpdateListLevelOnlineResponse) SetDocument ¶

func (obj *UpdateListLevelOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateListLevelOnlineResponse) SetModel ¶

func (obj *UpdateListLevelOnlineResponse) SetModel(value IListResponse)

type UpdateListLevelRequest ¶

type UpdateListLevelRequest struct {
	// The filename of the input document.
	Name *string
	// The list Id.
	ListId *int32
	// The list level.
	ListLevel *int32
	// List object.
	ListUpdate IListLevelUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateListLevelRequest contains request data for WordsApiService.UpdateListLevel method.

func (*UpdateListLevelRequest) CreateRequestData ¶

func (data *UpdateListLevelRequest) CreateRequestData() (RequestData, error)

func (*UpdateListLevelRequest) CreateResponse ¶

func (data *UpdateListLevelRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateListOnlineRequest ¶

type UpdateListOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The list Id.
	ListId *int32
	// List object.
	ListUpdate IListUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateListOnlineRequest contains request data for WordsApiService.UpdateListOnline method.

func (*UpdateListOnlineRequest) CreateRequestData ¶

func (data *UpdateListOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateListOnlineRequest) CreateResponse ¶

func (data *UpdateListOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateListOnlineResponse ¶

type UpdateListOnlineResponse struct {
	// The REST response with a list information.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/lists/{n}" REST API requests.
	Model IListResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateListOnlineResponse struct Updates a list in the document.

func (*UpdateListOnlineResponse) GetDocument ¶

func (obj *UpdateListOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateListOnlineResponse) GetModel ¶

func (obj *UpdateListOnlineResponse) GetModel() IListResponse

func (*UpdateListOnlineResponse) SetDocument ¶

func (obj *UpdateListOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateListOnlineResponse) SetModel ¶

func (obj *UpdateListOnlineResponse) SetModel(value IListResponse)

type UpdateListRequest ¶

type UpdateListRequest struct {
	// The filename of the input document.
	Name *string
	// The list Id.
	ListId *int32
	// List object.
	ListUpdate IListUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateListRequest contains request data for WordsApiService.UpdateList method.

func (*UpdateListRequest) CreateRequestData ¶

func (data *UpdateListRequest) CreateRequestData() (RequestData, error)

func (*UpdateListRequest) CreateResponse ¶

func (data *UpdateListRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateParagraphFormatOnlineRequest ¶

type UpdateParagraphFormatOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Dto for paragraph format update.
	ParagraphFormatDto IParagraphFormatUpdate
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateParagraphFormatOnlineRequest contains request data for WordsApiService.UpdateParagraphFormatOnline method.

func (*UpdateParagraphFormatOnlineRequest) CreateRequestData ¶

func (data *UpdateParagraphFormatOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateParagraphFormatOnlineRequest) CreateResponse ¶

func (data *UpdateParagraphFormatOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateParagraphFormatOnlineResponse ¶

type UpdateParagraphFormatOnlineResponse struct {
	// The REST response with the formatting properties of a paragraph.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/format" REST API requests.
	Model IParagraphFormatResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateParagraphFormatOnlineResponse struct Updates the formatting properties of a paragraph in the document node.

func (*UpdateParagraphFormatOnlineResponse) GetDocument ¶

func (obj *UpdateParagraphFormatOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateParagraphFormatOnlineResponse) GetModel ¶

func (*UpdateParagraphFormatOnlineResponse) SetDocument ¶

func (obj *UpdateParagraphFormatOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateParagraphFormatOnlineResponse) SetModel ¶

type UpdateParagraphFormatRequest ¶

type UpdateParagraphFormatRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	// Dto for paragraph format update.
	ParagraphFormatDto IParagraphFormatUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateParagraphFormatRequest contains request data for WordsApiService.UpdateParagraphFormat method.

func (*UpdateParagraphFormatRequest) CreateRequestData ¶

func (data *UpdateParagraphFormatRequest) CreateRequestData() (RequestData, error)

func (*UpdateParagraphFormatRequest) CreateResponse ¶

func (data *UpdateParagraphFormatRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateParagraphListFormatOnlineRequest ¶

type UpdateParagraphListFormatOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// ListFormatUpdate dto.
	ListFormatDto IListFormatUpdate
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateParagraphListFormatOnlineRequest contains request data for WordsApiService.UpdateParagraphListFormatOnline method.

func (*UpdateParagraphListFormatOnlineRequest) CreateRequestData ¶

func (data *UpdateParagraphListFormatOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateParagraphListFormatOnlineRequest) CreateResponse ¶

func (data *UpdateParagraphListFormatOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateParagraphListFormatOnlineResponse ¶

type UpdateParagraphListFormatOnlineResponse struct {
	// The REST response with a list format for a paragraph.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/listFormat" REST API requests.
	Model IParagraphListFormatResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateParagraphListFormatOnlineResponse struct Updates the formatting properties of a paragraph list in the document node.

func (*UpdateParagraphListFormatOnlineResponse) GetDocument ¶

func (*UpdateParagraphListFormatOnlineResponse) GetModel ¶

func (*UpdateParagraphListFormatOnlineResponse) SetDocument ¶

func (obj *UpdateParagraphListFormatOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateParagraphListFormatOnlineResponse) SetModel ¶

type UpdateParagraphListFormatRequest ¶

type UpdateParagraphListFormatRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	// ListFormatUpdate dto.
	ListFormatDto IListFormatUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateParagraphListFormatRequest contains request data for WordsApiService.UpdateParagraphListFormat method.

func (*UpdateParagraphListFormatRequest) CreateRequestData ¶

func (data *UpdateParagraphListFormatRequest) CreateRequestData() (RequestData, error)

func (*UpdateParagraphListFormatRequest) CreateResponse ¶

func (data *UpdateParagraphListFormatRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateRunFontOnlineRequest ¶

type UpdateRunFontOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	// Font dto object.
	FontDto IFont
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateRunFontOnlineRequest contains request data for WordsApiService.UpdateRunFontOnline method.

func (*UpdateRunFontOnlineRequest) CreateRequestData ¶

func (data *UpdateRunFontOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateRunFontOnlineRequest) CreateResponse ¶

func (data *UpdateRunFontOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateRunFontOnlineResponse ¶

type UpdateRunFontOnlineResponse struct {
	// The REST response with a font.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/runs/{1}/font" REST API requests.
	Model IFontResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateRunFontOnlineResponse struct Updates the font properties of a Run object in the paragraph.

func (*UpdateRunFontOnlineResponse) GetDocument ¶

func (obj *UpdateRunFontOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateRunFontOnlineResponse) GetModel ¶

func (*UpdateRunFontOnlineResponse) SetDocument ¶

func (obj *UpdateRunFontOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateRunFontOnlineResponse) SetModel ¶

func (obj *UpdateRunFontOnlineResponse) SetModel(value IFontResponse)

type UpdateRunFontRequest ¶

type UpdateRunFontRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	// Object index.
	Index *int32
	// Font dto object.
	FontDto IFont
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateRunFontRequest contains request data for WordsApiService.UpdateRunFont method.

func (*UpdateRunFontRequest) CreateRequestData ¶

func (data *UpdateRunFontRequest) CreateRequestData() (RequestData, error)

func (*UpdateRunFontRequest) CreateResponse ¶

func (data *UpdateRunFontRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateRunOnlineRequest ¶

type UpdateRunOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	// Run data.
	Run IRunUpdate
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateRunOnlineRequest contains request data for WordsApiService.UpdateRunOnline method.

func (*UpdateRunOnlineRequest) CreateRequestData ¶

func (data *UpdateRunOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateRunOnlineRequest) CreateResponse ¶

func (data *UpdateRunOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateRunOnlineResponse ¶

type UpdateRunOnlineResponse struct {
	// The REST response with a Run element.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/paragraphs/{0}/runs/{1}" REST API requests.
	Model IRunResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateRunOnlineResponse struct Updates a Run object in the paragraph.

func (*UpdateRunOnlineResponse) GetDocument ¶

func (obj *UpdateRunOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateRunOnlineResponse) GetModel ¶

func (obj *UpdateRunOnlineResponse) GetModel() IRunResponse

func (*UpdateRunOnlineResponse) SetDocument ¶

func (obj *UpdateRunOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateRunOnlineResponse) SetModel ¶

func (obj *UpdateRunOnlineResponse) SetModel(value IRunResponse)

type UpdateRunRequest ¶

type UpdateRunRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the paragraph in the document tree.
	ParagraphPath *string
	// Object index.
	Index *int32
	// Run data.
	Run IRunUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateRunRequest contains request data for WordsApiService.UpdateRun method.

func (*UpdateRunRequest) CreateRequestData ¶

func (data *UpdateRunRequest) CreateRequestData() (RequestData, error)

func (*UpdateRunRequest) CreateResponse ¶

func (data *UpdateRunRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateSectionPageSetupOnlineRequest ¶

type UpdateSectionPageSetupOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The index of the section.
	SectionIndex *int32
	// Page setup properties dto.
	PageSetup IPageSetup
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateSectionPageSetupOnlineRequest contains request data for WordsApiService.UpdateSectionPageSetupOnline method.

func (*UpdateSectionPageSetupOnlineRequest) CreateRequestData ¶

func (data *UpdateSectionPageSetupOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateSectionPageSetupOnlineRequest) CreateResponse ¶

func (data *UpdateSectionPageSetupOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateSectionPageSetupOnlineResponse ¶

type UpdateSectionPageSetupOnlineResponse struct {
	// The REST response with a page setup of a section.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/sections/{0}/PageSetup" REST API requests.
	Model ISectionPageSetupResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateSectionPageSetupOnlineResponse struct Updates the page setup of a section in the document.

func (*UpdateSectionPageSetupOnlineResponse) GetDocument ¶

func (obj *UpdateSectionPageSetupOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateSectionPageSetupOnlineResponse) GetModel ¶

func (*UpdateSectionPageSetupOnlineResponse) SetDocument ¶

func (obj *UpdateSectionPageSetupOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateSectionPageSetupOnlineResponse) SetModel ¶

type UpdateSectionPageSetupRequest ¶

type UpdateSectionPageSetupRequest struct {
	// The filename of the input document.
	Name *string
	// The index of the section.
	SectionIndex *int32
	// Page setup properties dto.
	PageSetup IPageSetup
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateSectionPageSetupRequest contains request data for WordsApiService.UpdateSectionPageSetup method.

func (*UpdateSectionPageSetupRequest) CreateRequestData ¶

func (data *UpdateSectionPageSetupRequest) CreateRequestData() (RequestData, error)

func (*UpdateSectionPageSetupRequest) CreateResponse ¶

func (data *UpdateSectionPageSetupRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateStructuredDocumentTagOnlineRequest ¶

type UpdateStructuredDocumentTagOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// Structured document tag parameters.
	StructuredDocumentTag IStructuredDocumentTagUpdate
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateStructuredDocumentTagOnlineRequest contains request data for WordsApiService.UpdateStructuredDocumentTagOnline method.

func (*UpdateStructuredDocumentTagOnlineRequest) CreateRequestData ¶

func (data *UpdateStructuredDocumentTagOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateStructuredDocumentTagOnlineRequest) CreateResponse ¶

func (data *UpdateStructuredDocumentTagOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateStructuredDocumentTagOnlineResponse ¶

type UpdateStructuredDocumentTagOnlineResponse struct {
	// The REST response with a StructuredDocumentTag.
	Model IStructuredDocumentTagResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateStructuredDocumentTagOnlineResponse struct Updates a StructuredDocumentTag (SDT) in the document node.

func (*UpdateStructuredDocumentTagOnlineResponse) GetDocument ¶

func (*UpdateStructuredDocumentTagOnlineResponse) GetModel ¶

func (*UpdateStructuredDocumentTagOnlineResponse) SetDocument ¶

func (obj *UpdateStructuredDocumentTagOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateStructuredDocumentTagOnlineResponse) SetModel ¶

type UpdateStructuredDocumentTagRequest ¶

type UpdateStructuredDocumentTagRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	// Structured document tag parameters.
	StructuredDocumentTag IStructuredDocumentTagUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateStructuredDocumentTagRequest contains request data for WordsApiService.UpdateStructuredDocumentTag method.

func (*UpdateStructuredDocumentTagRequest) CreateRequestData ¶

func (data *UpdateStructuredDocumentTagRequest) CreateRequestData() (RequestData, error)

func (*UpdateStructuredDocumentTagRequest) CreateResponse ¶

func (data *UpdateStructuredDocumentTagRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateStyleOnlineRequest ¶

type UpdateStyleOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The name of the style.
	StyleName *string
	// Style properties to update.
	StyleUpdate IStyleUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateStyleOnlineRequest contains request data for WordsApiService.UpdateStyleOnline method.

func (*UpdateStyleOnlineRequest) CreateRequestData ¶

func (data *UpdateStyleOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateStyleOnlineRequest) CreateResponse ¶

func (data *UpdateStyleOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateStyleOnlineResponse ¶

type UpdateStyleOnlineResponse struct {
	// The REST response with a style.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/styles/{0}" REST API requests.
	Model IStyleResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateStyleOnlineResponse struct Updates a style in the document.

func (*UpdateStyleOnlineResponse) GetDocument ¶

func (obj *UpdateStyleOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateStyleOnlineResponse) GetModel ¶

func (obj *UpdateStyleOnlineResponse) GetModel() IStyleResponse

func (*UpdateStyleOnlineResponse) SetDocument ¶

func (obj *UpdateStyleOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateStyleOnlineResponse) SetModel ¶

func (obj *UpdateStyleOnlineResponse) SetModel(value IStyleResponse)

type UpdateStyleRequest ¶

type UpdateStyleRequest struct {
	// The filename of the input document.
	Name *string
	// The name of the style.
	StyleName *string
	// Style properties to update.
	StyleUpdate IStyleUpdate
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateStyleRequest contains request data for WordsApiService.UpdateStyle method.

func (*UpdateStyleRequest) CreateRequestData ¶

func (data *UpdateStyleRequest) CreateRequestData() (RequestData, error)

func (*UpdateStyleRequest) CreateResponse ¶

func (data *UpdateStyleRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateTableCellFormatOnlineRequest ¶

type UpdateTableCellFormatOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the table row in the document tree.
	TableRowPath *string
	// The properties.
	Format ITableCellFormat
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateTableCellFormatOnlineRequest contains request data for WordsApiService.UpdateTableCellFormatOnline method.

func (*UpdateTableCellFormatOnlineRequest) CreateRequestData ¶

func (data *UpdateTableCellFormatOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateTableCellFormatOnlineRequest) CreateResponse ¶

func (data *UpdateTableCellFormatOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateTableCellFormatOnlineResponse ¶

type UpdateTableCellFormatOnlineResponse struct {
	// The REST response with the formatting properties of a table cell.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}/rows/{1}/cells/{2}/cellformat" REST API requests.
	Model ITableCellFormatResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateTableCellFormatOnlineResponse struct Updates the formatting properties of a cell in the table row.

func (*UpdateTableCellFormatOnlineResponse) GetDocument ¶

func (obj *UpdateTableCellFormatOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateTableCellFormatOnlineResponse) GetModel ¶

func (*UpdateTableCellFormatOnlineResponse) SetDocument ¶

func (obj *UpdateTableCellFormatOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateTableCellFormatOnlineResponse) SetModel ¶

type UpdateTableCellFormatRequest ¶

type UpdateTableCellFormatRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the table row in the document tree.
	TableRowPath *string
	// Object index.
	Index *int32
	// The properties.
	Format ITableCellFormat
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateTableCellFormatRequest contains request data for WordsApiService.UpdateTableCellFormat method.

func (*UpdateTableCellFormatRequest) CreateRequestData ¶

func (data *UpdateTableCellFormatRequest) CreateRequestData() (RequestData, error)

func (*UpdateTableCellFormatRequest) CreateResponse ¶

func (data *UpdateTableCellFormatRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateTablePropertiesOnlineRequest ¶

type UpdateTablePropertiesOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The properties.
	Properties ITableProperties
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateTablePropertiesOnlineRequest contains request data for WordsApiService.UpdateTablePropertiesOnline method.

func (*UpdateTablePropertiesOnlineRequest) CreateRequestData ¶

func (data *UpdateTablePropertiesOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateTablePropertiesOnlineRequest) CreateResponse ¶

func (data *UpdateTablePropertiesOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateTablePropertiesOnlineResponse ¶

type UpdateTablePropertiesOnlineResponse struct {
	// The REST response with a table.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}/properties" REST API requests.
	Model ITablePropertiesResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateTablePropertiesOnlineResponse struct Updates properties of a table in the document node.

func (*UpdateTablePropertiesOnlineResponse) GetDocument ¶

func (obj *UpdateTablePropertiesOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateTablePropertiesOnlineResponse) GetModel ¶

func (*UpdateTablePropertiesOnlineResponse) SetDocument ¶

func (obj *UpdateTablePropertiesOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateTablePropertiesOnlineResponse) SetModel ¶

type UpdateTablePropertiesRequest ¶

type UpdateTablePropertiesRequest struct {
	// The filename of the input document.
	Name *string
	// Object index.
	Index *int32
	// The properties.
	Properties ITableProperties
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "nodePath" value: (*string) The path to the node in the document tree.
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateTablePropertiesRequest contains request data for WordsApiService.UpdateTableProperties method.

func (*UpdateTablePropertiesRequest) CreateRequestData ¶

func (data *UpdateTablePropertiesRequest) CreateRequestData() (RequestData, error)

func (*UpdateTablePropertiesRequest) CreateResponse ¶

func (data *UpdateTablePropertiesRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateTableRowFormatOnlineRequest ¶

type UpdateTableRowFormatOnlineRequest struct {
	// The document.
	Document io.ReadCloser
	// The path to the table in the document tree.
	TablePath *string
	// Table row format.
	Format ITableRowFormat
	// Object index.
	Index *int32
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateTableRowFormatOnlineRequest contains request data for WordsApiService.UpdateTableRowFormatOnline method.

func (*UpdateTableRowFormatOnlineRequest) CreateRequestData ¶

func (data *UpdateTableRowFormatOnlineRequest) CreateRequestData() (RequestData, error)

func (*UpdateTableRowFormatOnlineRequest) CreateResponse ¶

func (data *UpdateTableRowFormatOnlineRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UpdateTableRowFormatOnlineResponse ¶

type UpdateTableRowFormatOnlineResponse struct {
	// The REST response with the formatting properties of a table row.
	// This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}/rows/{1}/rowformat" REST API requests.
	Model ITableRowFormatResponse

	// The document after modification.
	Document map[string]io.Reader
}

UpdateTableRowFormatOnlineResponse struct Updates the formatting properties of a table row.

func (*UpdateTableRowFormatOnlineResponse) GetDocument ¶

func (obj *UpdateTableRowFormatOnlineResponse) GetDocument() map[string]io.Reader

func (*UpdateTableRowFormatOnlineResponse) GetModel ¶

func (*UpdateTableRowFormatOnlineResponse) SetDocument ¶

func (obj *UpdateTableRowFormatOnlineResponse) SetDocument(value map[string]io.Reader)

func (*UpdateTableRowFormatOnlineResponse) SetModel ¶

type UpdateTableRowFormatRequest ¶

type UpdateTableRowFormatRequest struct {
	// The filename of the input document.
	Name *string
	// The path to the table in the document tree.
	TablePath *string
	// Object index.
	Index *int32
	// Table row format.
	Format ITableRowFormat
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "folder" value: (*string) Original document folder.
	   key: "storage" value: (*string) Original document storage.
	   key: "loadEncoding" value: (*string) Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
	   key: "password" value: (*string) Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
	   key: "encryptedPassword" value: (*string) Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
	   key: "destFileName" value: (*string) Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document.
	   key: "revisionAuthor" value: (*string) Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions.
	   key: "revisionDateTime" value: (*string) The date and time to use for revisions. */
	Optionals map[string]interface{}
}

UpdateTableRowFormatRequest contains request data for WordsApiService.UpdateTableRowFormat method.

func (*UpdateTableRowFormatRequest) CreateRequestData ¶

func (data *UpdateTableRowFormatRequest) CreateRequestData() (RequestData, error)

func (*UpdateTableRowFormatRequest) CreateResponse ¶

func (data *UpdateTableRowFormatRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UploadFileRequest ¶

type UploadFileRequest struct {
	// File to upload.
	FileContent io.ReadCloser
	// Path where to upload including filename and extension e.g. /file.ext or /Folder 1/file.ext If the content is multipart and path does not contains the file name it tries to get them from filename parameter from Content-Disposition header.
	Path *string
	/* optional (nil or map[string]interface{}) with one or more of key / value pairs:
	   key: "storageName" value: (*string) Storage name. */
	Optionals map[string]interface{}
}

UploadFileRequest contains request data for WordsApiService.UploadFile method.

func (*UploadFileRequest) CreateRequestData ¶

func (data *UploadFileRequest) CreateRequestData() (RequestData, error)

func (*UploadFileRequest) CreateResponse ¶

func (data *UploadFileRequest) CreateResponse(reader io.Reader, boundary string) (response interface{}, err error)

type UserInformation ¶

type UserInformation struct {
	// DTO for user information.
	Address *string `json:"Address,omitempty"`

	// DTO for user information.
	Initials *string `json:"Initials,omitempty"`

	// DTO for user information.
	Name *string `json:"Name,omitempty"`
}

func (*UserInformation) CollectFilesContent ¶

func (obj *UserInformation) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*UserInformation) Deserialize ¶

func (obj *UserInformation) Deserialize(json map[string]interface{})

func (*UserInformation) GetAddress ¶

func (obj *UserInformation) GetAddress() *string

func (*UserInformation) GetInitials ¶

func (obj *UserInformation) GetInitials() *string

func (*UserInformation) GetName ¶

func (obj *UserInformation) GetName() *string

func (*UserInformation) Initialize ¶

func (obj *UserInformation) Initialize()

func (UserInformation) IsUserInformation ¶

func (UserInformation) IsUserInformation() bool

func (*UserInformation) SetAddress ¶

func (obj *UserInformation) SetAddress(value *string)

func (*UserInformation) SetInitials ¶

func (obj *UserInformation) SetInitials(value *string)

func (*UserInformation) SetName ¶

func (obj *UserInformation) SetName(value *string)

func (*UserInformation) Validate ¶

func (obj *UserInformation) Validate() error

type WatermarkDataImage ¶

type WatermarkDataImage struct {
	// Class for insert watermark image request building.
	Image IFileReference `json:"Image,omitempty"`

	// Class for insert watermark image request building.
	IsWashout *bool `json:"IsWashout,omitempty"`

	// Class for insert watermark image request building.
	Scale *float64 `json:"Scale,omitempty"`
}

func (*WatermarkDataImage) CollectFilesContent ¶

func (obj *WatermarkDataImage) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*WatermarkDataImage) Deserialize ¶

func (obj *WatermarkDataImage) Deserialize(json map[string]interface{})

func (*WatermarkDataImage) GetImage ¶

func (obj *WatermarkDataImage) GetImage() IFileReference

func (*WatermarkDataImage) GetIsWashout ¶

func (obj *WatermarkDataImage) GetIsWashout() *bool

func (*WatermarkDataImage) GetScale ¶

func (obj *WatermarkDataImage) GetScale() *float64

func (*WatermarkDataImage) Initialize ¶

func (obj *WatermarkDataImage) Initialize()

func (WatermarkDataImage) IsWatermarkDataBase ¶

func (WatermarkDataImage) IsWatermarkDataBase() bool

func (WatermarkDataImage) IsWatermarkDataImage ¶

func (WatermarkDataImage) IsWatermarkDataImage() bool

func (*WatermarkDataImage) SetImage ¶

func (obj *WatermarkDataImage) SetImage(value IFileReference)

func (*WatermarkDataImage) SetIsWashout ¶

func (obj *WatermarkDataImage) SetIsWashout(value *bool)

func (*WatermarkDataImage) SetScale ¶

func (obj *WatermarkDataImage) SetScale(value *float64)

func (*WatermarkDataImage) Validate ¶

func (obj *WatermarkDataImage) Validate() error

type WatermarkDataText ¶

type WatermarkDataText struct {
	// Class for insert watermark text request building.
	Color IXmlColor `json:"Color,omitempty"`

	// Class for insert watermark text request building.
	FontFamily *string `json:"FontFamily,omitempty"`

	// Class for insert watermark text request building.
	FontSize *float64 `json:"FontSize,omitempty"`

	// Class for insert watermark text request building.
	IsSemitrasparent *bool `json:"IsSemitrasparent,omitempty"`

	// Class for insert watermark text request building.
	Layout *string `json:"Layout,omitempty"`

	// Class for insert watermark text request building.
	Text *string `json:"Text,omitempty"`
}

func (*WatermarkDataText) CollectFilesContent ¶

func (obj *WatermarkDataText) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*WatermarkDataText) Deserialize ¶

func (obj *WatermarkDataText) Deserialize(json map[string]interface{})

func (*WatermarkDataText) GetColor ¶

func (obj *WatermarkDataText) GetColor() IXmlColor

func (*WatermarkDataText) GetFontFamily ¶

func (obj *WatermarkDataText) GetFontFamily() *string

func (*WatermarkDataText) GetFontSize ¶

func (obj *WatermarkDataText) GetFontSize() *float64

func (*WatermarkDataText) GetIsSemitrasparent ¶

func (obj *WatermarkDataText) GetIsSemitrasparent() *bool

func (*WatermarkDataText) GetLayout ¶

func (obj *WatermarkDataText) GetLayout() *string

func (*WatermarkDataText) GetText ¶

func (obj *WatermarkDataText) GetText() *string

func (*WatermarkDataText) Initialize ¶

func (obj *WatermarkDataText) Initialize()

func (WatermarkDataText) IsWatermarkDataBase ¶

func (WatermarkDataText) IsWatermarkDataBase() bool

func (WatermarkDataText) IsWatermarkDataText ¶

func (WatermarkDataText) IsWatermarkDataText() bool

func (*WatermarkDataText) SetColor ¶

func (obj *WatermarkDataText) SetColor(value IXmlColor)

func (*WatermarkDataText) SetFontFamily ¶

func (obj *WatermarkDataText) SetFontFamily(value *string)

func (*WatermarkDataText) SetFontSize ¶

func (obj *WatermarkDataText) SetFontSize(value *float64)

func (*WatermarkDataText) SetIsSemitrasparent ¶

func (obj *WatermarkDataText) SetIsSemitrasparent(value *bool)

func (*WatermarkDataText) SetLayout ¶

func (obj *WatermarkDataText) SetLayout(value *string)

func (*WatermarkDataText) SetText ¶

func (obj *WatermarkDataText) SetText(value *string)

func (*WatermarkDataText) Validate ¶

func (obj *WatermarkDataText) Validate() error

type WatermarkText ¶

type WatermarkText struct {
	// Class for insert watermark text request building.
	RotationAngle *float64 `json:"RotationAngle,omitempty"`

	// Class for insert watermark text request building.
	Text *string `json:"Text,omitempty"`
}

func (*WatermarkText) CollectFilesContent ¶

func (obj *WatermarkText) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*WatermarkText) Deserialize ¶

func (obj *WatermarkText) Deserialize(json map[string]interface{})

func (*WatermarkText) GetRotationAngle ¶

func (obj *WatermarkText) GetRotationAngle() *float64

func (*WatermarkText) GetText ¶

func (obj *WatermarkText) GetText() *string

func (*WatermarkText) Initialize ¶

func (obj *WatermarkText) Initialize()

func (WatermarkText) IsWatermarkText ¶

func (WatermarkText) IsWatermarkText() bool

func (*WatermarkText) SetRotationAngle ¶

func (obj *WatermarkText) SetRotationAngle(value *float64)

func (*WatermarkText) SetText ¶

func (obj *WatermarkText) SetText(value *string)

func (*WatermarkText) Validate ¶

func (obj *WatermarkText) Validate() error

type WordMLSaveOptionsData ¶

type WordMLSaveOptionsData struct {
	// Container class for wml save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for wml save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for wml save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for wml save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for wml save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for wml save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for wml save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for wml save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for wml save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for wml save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for wml save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for wml save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for wml save options.
	PrettyFormat *bool `json:"PrettyFormat,omitempty"`

	// Container class for wml save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*WordMLSaveOptionsData) CollectFilesContent ¶

func (obj *WordMLSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*WordMLSaveOptionsData) Deserialize ¶

func (obj *WordMLSaveOptionsData) Deserialize(json map[string]interface{})

func (*WordMLSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *WordMLSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*WordMLSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *WordMLSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*WordMLSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *WordMLSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*WordMLSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *WordMLSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*WordMLSaveOptionsData) GetDmlRenderingMode ¶

func (obj *WordMLSaveOptionsData) GetDmlRenderingMode() *string

func (*WordMLSaveOptionsData) GetFileName ¶

func (obj *WordMLSaveOptionsData) GetFileName() *string

func (*WordMLSaveOptionsData) GetImlRenderingMode ¶

func (obj *WordMLSaveOptionsData) GetImlRenderingMode() *string

func (*WordMLSaveOptionsData) GetPrettyFormat ¶

func (obj *WordMLSaveOptionsData) GetPrettyFormat() *bool

func (*WordMLSaveOptionsData) GetSaveFormat ¶

func (obj *WordMLSaveOptionsData) GetSaveFormat() *string

func (*WordMLSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *WordMLSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*WordMLSaveOptionsData) GetUpdateFields ¶

func (obj *WordMLSaveOptionsData) GetUpdateFields() *bool

func (*WordMLSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *WordMLSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*WordMLSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *WordMLSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*WordMLSaveOptionsData) GetZipOutput ¶

func (obj *WordMLSaveOptionsData) GetZipOutput() *bool

func (*WordMLSaveOptionsData) Initialize ¶

func (obj *WordMLSaveOptionsData) Initialize()

func (WordMLSaveOptionsData) IsSaveOptionsData ¶

func (WordMLSaveOptionsData) IsSaveOptionsData() bool

func (WordMLSaveOptionsData) IsWordMLSaveOptionsData ¶

func (WordMLSaveOptionsData) IsWordMLSaveOptionsData() bool

func (*WordMLSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *WordMLSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*WordMLSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *WordMLSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*WordMLSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *WordMLSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*WordMLSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *WordMLSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*WordMLSaveOptionsData) SetDmlRenderingMode ¶

func (obj *WordMLSaveOptionsData) SetDmlRenderingMode(value *string)

func (*WordMLSaveOptionsData) SetFileName ¶

func (obj *WordMLSaveOptionsData) SetFileName(value *string)

func (*WordMLSaveOptionsData) SetImlRenderingMode ¶

func (obj *WordMLSaveOptionsData) SetImlRenderingMode(value *string)

func (*WordMLSaveOptionsData) SetPrettyFormat ¶

func (obj *WordMLSaveOptionsData) SetPrettyFormat(value *bool)

func (*WordMLSaveOptionsData) SetSaveFormat ¶

func (obj *WordMLSaveOptionsData) SetSaveFormat(value *string)

func (*WordMLSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *WordMLSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*WordMLSaveOptionsData) SetUpdateFields ¶

func (obj *WordMLSaveOptionsData) SetUpdateFields(value *bool)

func (*WordMLSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *WordMLSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*WordMLSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *WordMLSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*WordMLSaveOptionsData) SetZipOutput ¶

func (obj *WordMLSaveOptionsData) SetZipOutput(value *bool)

func (*WordMLSaveOptionsData) Validate ¶

func (obj *WordMLSaveOptionsData) Validate() error

type WordsApiErrorResponse ¶

type WordsApiErrorResponse struct {
	// The REST response with an API error.
	RequestId *string `json:"RequestId,omitempty"`

	// The REST response with an API error.
	Error_ IApiError `json:"Error,omitempty"`
}

func (*WordsApiErrorResponse) CollectFilesContent ¶

func (obj *WordsApiErrorResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*WordsApiErrorResponse) Deserialize ¶

func (obj *WordsApiErrorResponse) Deserialize(json map[string]interface{})

func (*WordsApiErrorResponse) Error ¶

func (w *WordsApiErrorResponse) Error() string

func (*WordsApiErrorResponse) GetError ¶

func (obj *WordsApiErrorResponse) GetError() IApiError

func (*WordsApiErrorResponse) GetRequestId ¶

func (obj *WordsApiErrorResponse) GetRequestId() *string

func (*WordsApiErrorResponse) Initialize ¶

func (obj *WordsApiErrorResponse) Initialize()

func (WordsApiErrorResponse) IsWordsApiErrorResponse ¶

func (WordsApiErrorResponse) IsWordsApiErrorResponse() bool

func (WordsApiErrorResponse) IsWordsResponse ¶

func (WordsApiErrorResponse) IsWordsResponse() bool

func (*WordsApiErrorResponse) SetError ¶

func (obj *WordsApiErrorResponse) SetError(value IApiError)

func (*WordsApiErrorResponse) SetRequestId ¶

func (obj *WordsApiErrorResponse) SetRequestId(value *string)

func (*WordsApiErrorResponse) Validate ¶

func (obj *WordsApiErrorResponse) Validate() error
type WordsApiLink struct {
	// Provides information for the words API resource link.
	Href *string `json:"Href,omitempty"`

	// Provides information for the words API resource link.
	Rel *string `json:"Rel,omitempty"`

	// Provides information for the words API resource link.
	Title *string `json:"Title,omitempty"`

	// Provides information for the words API resource link.
	Type *string `json:"Type,omitempty"`
}

func (*WordsApiLink) CollectFilesContent ¶

func (obj *WordsApiLink) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*WordsApiLink) Deserialize ¶

func (obj *WordsApiLink) Deserialize(json map[string]interface{})

func (*WordsApiLink) GetHref ¶

func (obj *WordsApiLink) GetHref() *string

func (*WordsApiLink) GetRel ¶

func (obj *WordsApiLink) GetRel() *string

func (*WordsApiLink) GetTitle ¶

func (obj *WordsApiLink) GetTitle() *string

func (*WordsApiLink) GetType ¶

func (obj *WordsApiLink) GetType() *string

func (*WordsApiLink) Initialize ¶

func (obj *WordsApiLink) Initialize()
func (WordsApiLink) IsLink() bool
func (WordsApiLink) IsWordsApiLink() bool

func (*WordsApiLink) SetHref ¶

func (obj *WordsApiLink) SetHref(value *string)

func (*WordsApiLink) SetRel ¶

func (obj *WordsApiLink) SetRel(value *string)

func (*WordsApiLink) SetTitle ¶

func (obj *WordsApiLink) SetTitle(value *string)

func (*WordsApiLink) SetType ¶

func (obj *WordsApiLink) SetType(value *string)

func (*WordsApiLink) Validate ¶

func (obj *WordsApiLink) Validate() error

type WordsResponse ¶

type WordsResponse struct {
	// The base class for all responses.
	RequestId *string `json:"RequestId,omitempty"`
}

func (*WordsResponse) CollectFilesContent ¶

func (obj *WordsResponse) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*WordsResponse) Deserialize ¶

func (obj *WordsResponse) Deserialize(json map[string]interface{})

func (*WordsResponse) GetRequestId ¶

func (obj *WordsResponse) GetRequestId() *string

func (*WordsResponse) Initialize ¶

func (obj *WordsResponse) Initialize()

func (WordsResponse) IsWordsResponse ¶

func (WordsResponse) IsWordsResponse() bool

func (*WordsResponse) SetRequestId ¶

func (obj *WordsResponse) SetRequestId(value *string)

func (*WordsResponse) Validate ¶

func (obj *WordsResponse) Validate() error

type XamlFixedSaveOptionsData ¶

type XamlFixedSaveOptionsData struct {
	// Container class for xaml fixed save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for xaml fixed save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for xaml fixed save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for xaml fixed save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for xaml fixed save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for xaml fixed save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for xaml fixed save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for xaml fixed save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for xaml fixed save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for xaml fixed save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for xaml fixed save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for xaml fixed save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for xaml fixed save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for xaml fixed save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for xaml fixed save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for xaml fixed save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for xaml fixed save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for xaml fixed save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for xaml fixed save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for xaml fixed save options.
	ResourcesFolder *string `json:"ResourcesFolder,omitempty"`

	// Container class for xaml fixed save options.
	ResourcesFolderAlias *string `json:"ResourcesFolderAlias,omitempty"`

	// Container class for xaml fixed save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*XamlFixedSaveOptionsData) CollectFilesContent ¶

func (obj *XamlFixedSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*XamlFixedSaveOptionsData) Deserialize ¶

func (obj *XamlFixedSaveOptionsData) Deserialize(json map[string]interface{})

func (*XamlFixedSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *XamlFixedSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*XamlFixedSaveOptionsData) GetColorMode ¶

func (obj *XamlFixedSaveOptionsData) GetColorMode() *string

func (*XamlFixedSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *XamlFixedSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*XamlFixedSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *XamlFixedSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*XamlFixedSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *XamlFixedSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*XamlFixedSaveOptionsData) GetDmlRenderingMode ¶

func (obj *XamlFixedSaveOptionsData) GetDmlRenderingMode() *string

func (*XamlFixedSaveOptionsData) GetFileName ¶

func (obj *XamlFixedSaveOptionsData) GetFileName() *string

func (*XamlFixedSaveOptionsData) GetImlRenderingMode ¶

func (obj *XamlFixedSaveOptionsData) GetImlRenderingMode() *string

func (*XamlFixedSaveOptionsData) GetJpegQuality ¶

func (obj *XamlFixedSaveOptionsData) GetJpegQuality() *int32

func (*XamlFixedSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *XamlFixedSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*XamlFixedSaveOptionsData) GetNumeralFormat ¶

func (obj *XamlFixedSaveOptionsData) GetNumeralFormat() *string

func (*XamlFixedSaveOptionsData) GetOptimizeOutput ¶

func (obj *XamlFixedSaveOptionsData) GetOptimizeOutput() *bool

func (*XamlFixedSaveOptionsData) GetPageCount ¶

func (obj *XamlFixedSaveOptionsData) GetPageCount() *int32

func (*XamlFixedSaveOptionsData) GetPageIndex ¶

func (obj *XamlFixedSaveOptionsData) GetPageIndex() *int32

func (*XamlFixedSaveOptionsData) GetResourcesFolder ¶

func (obj *XamlFixedSaveOptionsData) GetResourcesFolder() *string

func (*XamlFixedSaveOptionsData) GetResourcesFolderAlias ¶

func (obj *XamlFixedSaveOptionsData) GetResourcesFolderAlias() *string

func (*XamlFixedSaveOptionsData) GetSaveFormat ¶

func (obj *XamlFixedSaveOptionsData) GetSaveFormat() *string

func (*XamlFixedSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *XamlFixedSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*XamlFixedSaveOptionsData) GetUpdateFields ¶

func (obj *XamlFixedSaveOptionsData) GetUpdateFields() *bool

func (*XamlFixedSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *XamlFixedSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*XamlFixedSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *XamlFixedSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*XamlFixedSaveOptionsData) GetZipOutput ¶

func (obj *XamlFixedSaveOptionsData) GetZipOutput() *bool

func (*XamlFixedSaveOptionsData) Initialize ¶

func (obj *XamlFixedSaveOptionsData) Initialize()

func (XamlFixedSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (XamlFixedSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (XamlFixedSaveOptionsData) IsSaveOptionsData ¶

func (XamlFixedSaveOptionsData) IsSaveOptionsData() bool

func (XamlFixedSaveOptionsData) IsXamlFixedSaveOptionsData ¶

func (XamlFixedSaveOptionsData) IsXamlFixedSaveOptionsData() bool

func (*XamlFixedSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *XamlFixedSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*XamlFixedSaveOptionsData) SetColorMode ¶

func (obj *XamlFixedSaveOptionsData) SetColorMode(value *string)

func (*XamlFixedSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *XamlFixedSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*XamlFixedSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *XamlFixedSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*XamlFixedSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *XamlFixedSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*XamlFixedSaveOptionsData) SetDmlRenderingMode ¶

func (obj *XamlFixedSaveOptionsData) SetDmlRenderingMode(value *string)

func (*XamlFixedSaveOptionsData) SetFileName ¶

func (obj *XamlFixedSaveOptionsData) SetFileName(value *string)

func (*XamlFixedSaveOptionsData) SetImlRenderingMode ¶

func (obj *XamlFixedSaveOptionsData) SetImlRenderingMode(value *string)

func (*XamlFixedSaveOptionsData) SetJpegQuality ¶

func (obj *XamlFixedSaveOptionsData) SetJpegQuality(value *int32)

func (*XamlFixedSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *XamlFixedSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*XamlFixedSaveOptionsData) SetNumeralFormat ¶

func (obj *XamlFixedSaveOptionsData) SetNumeralFormat(value *string)

func (*XamlFixedSaveOptionsData) SetOptimizeOutput ¶

func (obj *XamlFixedSaveOptionsData) SetOptimizeOutput(value *bool)

func (*XamlFixedSaveOptionsData) SetPageCount ¶

func (obj *XamlFixedSaveOptionsData) SetPageCount(value *int32)

func (*XamlFixedSaveOptionsData) SetPageIndex ¶

func (obj *XamlFixedSaveOptionsData) SetPageIndex(value *int32)

func (*XamlFixedSaveOptionsData) SetResourcesFolder ¶

func (obj *XamlFixedSaveOptionsData) SetResourcesFolder(value *string)

func (*XamlFixedSaveOptionsData) SetResourcesFolderAlias ¶

func (obj *XamlFixedSaveOptionsData) SetResourcesFolderAlias(value *string)

func (*XamlFixedSaveOptionsData) SetSaveFormat ¶

func (obj *XamlFixedSaveOptionsData) SetSaveFormat(value *string)

func (*XamlFixedSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *XamlFixedSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*XamlFixedSaveOptionsData) SetUpdateFields ¶

func (obj *XamlFixedSaveOptionsData) SetUpdateFields(value *bool)

func (*XamlFixedSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *XamlFixedSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*XamlFixedSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *XamlFixedSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*XamlFixedSaveOptionsData) SetZipOutput ¶

func (obj *XamlFixedSaveOptionsData) SetZipOutput(value *bool)

func (*XamlFixedSaveOptionsData) Validate ¶

func (obj *XamlFixedSaveOptionsData) Validate() error

type XamlFlowPackSaveOptionsData ¶

type XamlFlowPackSaveOptionsData struct {
	// Container class for xamlflow_pack save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for xamlflow_pack save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for xamlflow_pack save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for xamlflow_pack save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for xamlflow_pack save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for xamlflow_pack save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for xamlflow_pack save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for xamlflow_pack save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for xamlflow_pack save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for xamlflow_pack save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for xamlflow_pack save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for xamlflow_pack save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for xamlflow_pack save options.
	ImagesFolder *string `json:"ImagesFolder,omitempty"`

	// Container class for xamlflow_pack save options.
	ImagesFolderAlias *string `json:"ImagesFolderAlias,omitempty"`

	// Container class for xamlflow_pack save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*XamlFlowPackSaveOptionsData) CollectFilesContent ¶

func (obj *XamlFlowPackSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*XamlFlowPackSaveOptionsData) Deserialize ¶

func (obj *XamlFlowPackSaveOptionsData) Deserialize(json map[string]interface{})

func (*XamlFlowPackSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *XamlFlowPackSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*XamlFlowPackSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *XamlFlowPackSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*XamlFlowPackSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *XamlFlowPackSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*XamlFlowPackSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *XamlFlowPackSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*XamlFlowPackSaveOptionsData) GetDmlRenderingMode ¶

func (obj *XamlFlowPackSaveOptionsData) GetDmlRenderingMode() *string

func (*XamlFlowPackSaveOptionsData) GetFileName ¶

func (obj *XamlFlowPackSaveOptionsData) GetFileName() *string

func (*XamlFlowPackSaveOptionsData) GetImagesFolder ¶

func (obj *XamlFlowPackSaveOptionsData) GetImagesFolder() *string

func (*XamlFlowPackSaveOptionsData) GetImagesFolderAlias ¶

func (obj *XamlFlowPackSaveOptionsData) GetImagesFolderAlias() *string

func (*XamlFlowPackSaveOptionsData) GetImlRenderingMode ¶

func (obj *XamlFlowPackSaveOptionsData) GetImlRenderingMode() *string

func (*XamlFlowPackSaveOptionsData) GetSaveFormat ¶

func (obj *XamlFlowPackSaveOptionsData) GetSaveFormat() *string

func (*XamlFlowPackSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *XamlFlowPackSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*XamlFlowPackSaveOptionsData) GetUpdateFields ¶

func (obj *XamlFlowPackSaveOptionsData) GetUpdateFields() *bool

func (*XamlFlowPackSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *XamlFlowPackSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*XamlFlowPackSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *XamlFlowPackSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*XamlFlowPackSaveOptionsData) GetZipOutput ¶

func (obj *XamlFlowPackSaveOptionsData) GetZipOutput() *bool

func (*XamlFlowPackSaveOptionsData) Initialize ¶

func (obj *XamlFlowPackSaveOptionsData) Initialize()

func (XamlFlowPackSaveOptionsData) IsSaveOptionsData ¶

func (XamlFlowPackSaveOptionsData) IsSaveOptionsData() bool

func (XamlFlowPackSaveOptionsData) IsXamlFlowPackSaveOptionsData ¶

func (XamlFlowPackSaveOptionsData) IsXamlFlowPackSaveOptionsData() bool

func (XamlFlowPackSaveOptionsData) IsXamlFlowSaveOptionsData ¶

func (XamlFlowPackSaveOptionsData) IsXamlFlowSaveOptionsData() bool

func (*XamlFlowPackSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *XamlFlowPackSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*XamlFlowPackSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *XamlFlowPackSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*XamlFlowPackSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *XamlFlowPackSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*XamlFlowPackSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *XamlFlowPackSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*XamlFlowPackSaveOptionsData) SetDmlRenderingMode ¶

func (obj *XamlFlowPackSaveOptionsData) SetDmlRenderingMode(value *string)

func (*XamlFlowPackSaveOptionsData) SetFileName ¶

func (obj *XamlFlowPackSaveOptionsData) SetFileName(value *string)

func (*XamlFlowPackSaveOptionsData) SetImagesFolder ¶

func (obj *XamlFlowPackSaveOptionsData) SetImagesFolder(value *string)

func (*XamlFlowPackSaveOptionsData) SetImagesFolderAlias ¶

func (obj *XamlFlowPackSaveOptionsData) SetImagesFolderAlias(value *string)

func (*XamlFlowPackSaveOptionsData) SetImlRenderingMode ¶

func (obj *XamlFlowPackSaveOptionsData) SetImlRenderingMode(value *string)

func (*XamlFlowPackSaveOptionsData) SetSaveFormat ¶

func (obj *XamlFlowPackSaveOptionsData) SetSaveFormat(value *string)

func (*XamlFlowPackSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *XamlFlowPackSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*XamlFlowPackSaveOptionsData) SetUpdateFields ¶

func (obj *XamlFlowPackSaveOptionsData) SetUpdateFields(value *bool)

func (*XamlFlowPackSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *XamlFlowPackSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*XamlFlowPackSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *XamlFlowPackSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*XamlFlowPackSaveOptionsData) SetZipOutput ¶

func (obj *XamlFlowPackSaveOptionsData) SetZipOutput(value *bool)

func (*XamlFlowPackSaveOptionsData) Validate ¶

func (obj *XamlFlowPackSaveOptionsData) Validate() error

type XamlFlowSaveOptionsData ¶

type XamlFlowSaveOptionsData struct {
	// Container class for xaml flow save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for xaml flow save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for xaml flow save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for xaml flow save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for xaml flow save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for xaml flow save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for xaml flow save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for xaml flow save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for xaml flow save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for xaml flow save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for xaml flow save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for xaml flow save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for xaml flow save options.
	ImagesFolder *string `json:"ImagesFolder,omitempty"`

	// Container class for xaml flow save options.
	ImagesFolderAlias *string `json:"ImagesFolderAlias,omitempty"`

	// Container class for xaml flow save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*XamlFlowSaveOptionsData) CollectFilesContent ¶

func (obj *XamlFlowSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*XamlFlowSaveOptionsData) Deserialize ¶

func (obj *XamlFlowSaveOptionsData) Deserialize(json map[string]interface{})

func (*XamlFlowSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *XamlFlowSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*XamlFlowSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *XamlFlowSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*XamlFlowSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *XamlFlowSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*XamlFlowSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *XamlFlowSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*XamlFlowSaveOptionsData) GetDmlRenderingMode ¶

func (obj *XamlFlowSaveOptionsData) GetDmlRenderingMode() *string

func (*XamlFlowSaveOptionsData) GetFileName ¶

func (obj *XamlFlowSaveOptionsData) GetFileName() *string

func (*XamlFlowSaveOptionsData) GetImagesFolder ¶

func (obj *XamlFlowSaveOptionsData) GetImagesFolder() *string

func (*XamlFlowSaveOptionsData) GetImagesFolderAlias ¶

func (obj *XamlFlowSaveOptionsData) GetImagesFolderAlias() *string

func (*XamlFlowSaveOptionsData) GetImlRenderingMode ¶

func (obj *XamlFlowSaveOptionsData) GetImlRenderingMode() *string

func (*XamlFlowSaveOptionsData) GetSaveFormat ¶

func (obj *XamlFlowSaveOptionsData) GetSaveFormat() *string

func (*XamlFlowSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *XamlFlowSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*XamlFlowSaveOptionsData) GetUpdateFields ¶

func (obj *XamlFlowSaveOptionsData) GetUpdateFields() *bool

func (*XamlFlowSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *XamlFlowSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*XamlFlowSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *XamlFlowSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*XamlFlowSaveOptionsData) GetZipOutput ¶

func (obj *XamlFlowSaveOptionsData) GetZipOutput() *bool

func (*XamlFlowSaveOptionsData) Initialize ¶

func (obj *XamlFlowSaveOptionsData) Initialize()

func (XamlFlowSaveOptionsData) IsSaveOptionsData ¶

func (XamlFlowSaveOptionsData) IsSaveOptionsData() bool

func (XamlFlowSaveOptionsData) IsXamlFlowSaveOptionsData ¶

func (XamlFlowSaveOptionsData) IsXamlFlowSaveOptionsData() bool

func (*XamlFlowSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *XamlFlowSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*XamlFlowSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *XamlFlowSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*XamlFlowSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *XamlFlowSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*XamlFlowSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *XamlFlowSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*XamlFlowSaveOptionsData) SetDmlRenderingMode ¶

func (obj *XamlFlowSaveOptionsData) SetDmlRenderingMode(value *string)

func (*XamlFlowSaveOptionsData) SetFileName ¶

func (obj *XamlFlowSaveOptionsData) SetFileName(value *string)

func (*XamlFlowSaveOptionsData) SetImagesFolder ¶

func (obj *XamlFlowSaveOptionsData) SetImagesFolder(value *string)

func (*XamlFlowSaveOptionsData) SetImagesFolderAlias ¶

func (obj *XamlFlowSaveOptionsData) SetImagesFolderAlias(value *string)

func (*XamlFlowSaveOptionsData) SetImlRenderingMode ¶

func (obj *XamlFlowSaveOptionsData) SetImlRenderingMode(value *string)

func (*XamlFlowSaveOptionsData) SetSaveFormat ¶

func (obj *XamlFlowSaveOptionsData) SetSaveFormat(value *string)

func (*XamlFlowSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *XamlFlowSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*XamlFlowSaveOptionsData) SetUpdateFields ¶

func (obj *XamlFlowSaveOptionsData) SetUpdateFields(value *bool)

func (*XamlFlowSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *XamlFlowSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*XamlFlowSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *XamlFlowSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*XamlFlowSaveOptionsData) SetZipOutput ¶

func (obj *XamlFlowSaveOptionsData) SetZipOutput(value *bool)

func (*XamlFlowSaveOptionsData) Validate ¶

func (obj *XamlFlowSaveOptionsData) Validate() error

type XmlColor ¶

type XmlColor struct {
	// Utility class for Color serialization.
	Alpha *int32 `json:"Alpha,omitempty"`

	// Utility class for Color serialization.
	Web *string `json:"Web,omitempty"`
}

func (*XmlColor) CollectFilesContent ¶

func (obj *XmlColor) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*XmlColor) Deserialize ¶

func (obj *XmlColor) Deserialize(json map[string]interface{})

func (*XmlColor) GetAlpha ¶

func (obj *XmlColor) GetAlpha() *int32

func (*XmlColor) GetWeb ¶

func (obj *XmlColor) GetWeb() *string

func (*XmlColor) Initialize ¶

func (obj *XmlColor) Initialize()

func (XmlColor) IsXmlColor ¶

func (XmlColor) IsXmlColor() bool

func (*XmlColor) SetAlpha ¶

func (obj *XmlColor) SetAlpha(value *int32)

func (*XmlColor) SetWeb ¶

func (obj *XmlColor) SetWeb(value *string)

func (*XmlColor) Validate ¶

func (obj *XmlColor) Validate() error

type XmlDataLoadOptions ¶

type XmlDataLoadOptions struct {
	// Represents options for XML data loading.
	// To learn more, visit the LINQ Reporting Engine documentation article.
	// An instance of this class can be passed into constructors of XmlDataSource.
	AlwaysGenerateRootObject *bool `json:"AlwaysGenerateRootObject,omitempty"`
}

func (*XmlDataLoadOptions) CollectFilesContent ¶

func (obj *XmlDataLoadOptions) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*XmlDataLoadOptions) Deserialize ¶

func (obj *XmlDataLoadOptions) Deserialize(json map[string]interface{})

func (*XmlDataLoadOptions) GetAlwaysGenerateRootObject ¶

func (obj *XmlDataLoadOptions) GetAlwaysGenerateRootObject() *bool

func (*XmlDataLoadOptions) Initialize ¶

func (obj *XmlDataLoadOptions) Initialize()

func (XmlDataLoadOptions) IsXmlDataLoadOptions ¶

func (XmlDataLoadOptions) IsXmlDataLoadOptions() bool

func (*XmlDataLoadOptions) SetAlwaysGenerateRootObject ¶

func (obj *XmlDataLoadOptions) SetAlwaysGenerateRootObject(value *bool)

func (*XmlDataLoadOptions) Validate ¶

func (obj *XmlDataLoadOptions) Validate() error

type XpsSaveOptionsData ¶

type XpsSaveOptionsData struct {
	// Container class for xps save options.
	AllowEmbeddingPostScriptFonts *bool `json:"AllowEmbeddingPostScriptFonts,omitempty"`

	// Container class for xps save options.
	CustomTimeZoneInfoData ITimeZoneInfoData `json:"CustomTimeZoneInfoData,omitempty"`

	// Container class for xps save options.
	Dml3DEffectsRenderingMode *string `json:"Dml3DEffectsRenderingMode,omitempty"`

	// Container class for xps save options.
	DmlEffectsRenderingMode *string `json:"DmlEffectsRenderingMode,omitempty"`

	// Container class for xps save options.
	DmlRenderingMode *string `json:"DmlRenderingMode,omitempty"`

	// Container class for xps save options.
	FileName *string `json:"FileName,omitempty"`

	// Container class for xps save options.
	ImlRenderingMode *string `json:"ImlRenderingMode,omitempty"`

	// Container class for xps save options.
	UpdateCreatedTimeProperty *bool `json:"UpdateCreatedTimeProperty,omitempty"`

	// Container class for xps save options.
	UpdateFields *bool `json:"UpdateFields,omitempty"`

	// Container class for xps save options.
	UpdateLastPrintedProperty *bool `json:"UpdateLastPrintedProperty,omitempty"`

	// Container class for xps save options.
	UpdateLastSavedTimeProperty *bool `json:"UpdateLastSavedTimeProperty,omitempty"`

	// Container class for xps save options.
	ZipOutput *bool `json:"ZipOutput,omitempty"`

	// Container class for xps save options.
	ColorMode *string `json:"ColorMode,omitempty"`

	// Container class for xps save options.
	JpegQuality *int32 `json:"JpegQuality,omitempty"`

	// Container class for xps save options.
	MetafileRenderingOptions IMetafileRenderingOptionsData `json:"MetafileRenderingOptions,omitempty"`

	// Container class for xps save options.
	NumeralFormat *string `json:"NumeralFormat,omitempty"`

	// Container class for xps save options.
	OptimizeOutput *bool `json:"OptimizeOutput,omitempty"`

	// Container class for xps save options.
	PageCount *int32 `json:"PageCount,omitempty"`

	// Container class for xps save options.
	PageIndex *int32 `json:"PageIndex,omitempty"`

	// Container class for xps save options.
	BookmarksOutlineLevel *int32 `json:"BookmarksOutlineLevel,omitempty"`

	// Container class for xps save options.
	HeadingsOutlineLevels *int32 `json:"HeadingsOutlineLevels,omitempty"`

	// Container class for xps save options.
	OutlineOptions IOutlineOptionsData `json:"OutlineOptions,omitempty"`

	// Container class for xps save options.
	UseBookFoldPrintingSettings *bool `json:"UseBookFoldPrintingSettings,omitempty"`

	// Container class for xps save options.
	SaveFormat *string `json:"SaveFormat,omitempty"`
}

func (*XpsSaveOptionsData) CollectFilesContent ¶

func (obj *XpsSaveOptionsData) CollectFilesContent(resultFilesContent []FileReference) []FileReference

func (*XpsSaveOptionsData) Deserialize ¶

func (obj *XpsSaveOptionsData) Deserialize(json map[string]interface{})

func (*XpsSaveOptionsData) GetAllowEmbeddingPostScriptFonts ¶

func (obj *XpsSaveOptionsData) GetAllowEmbeddingPostScriptFonts() *bool

func (*XpsSaveOptionsData) GetBookmarksOutlineLevel ¶

func (obj *XpsSaveOptionsData) GetBookmarksOutlineLevel() *int32

func (*XpsSaveOptionsData) GetColorMode ¶

func (obj *XpsSaveOptionsData) GetColorMode() *string

func (*XpsSaveOptionsData) GetCustomTimeZoneInfoData ¶

func (obj *XpsSaveOptionsData) GetCustomTimeZoneInfoData() ITimeZoneInfoData

func (*XpsSaveOptionsData) GetDml3DEffectsRenderingMode ¶

func (obj *XpsSaveOptionsData) GetDml3DEffectsRenderingMode() *string

func (*XpsSaveOptionsData) GetDmlEffectsRenderingMode ¶

func (obj *XpsSaveOptionsData) GetDmlEffectsRenderingMode() *string

func (*XpsSaveOptionsData) GetDmlRenderingMode ¶

func (obj *XpsSaveOptionsData) GetDmlRenderingMode() *string

func (*XpsSaveOptionsData) GetFileName ¶

func (obj *XpsSaveOptionsData) GetFileName() *string

func (*XpsSaveOptionsData) GetHeadingsOutlineLevels ¶

func (obj *XpsSaveOptionsData) GetHeadingsOutlineLevels() *int32

func (*XpsSaveOptionsData) GetImlRenderingMode ¶

func (obj *XpsSaveOptionsData) GetImlRenderingMode() *string

func (*XpsSaveOptionsData) GetJpegQuality ¶

func (obj *XpsSaveOptionsData) GetJpegQuality() *int32

func (*XpsSaveOptionsData) GetMetafileRenderingOptions ¶

func (obj *XpsSaveOptionsData) GetMetafileRenderingOptions() IMetafileRenderingOptionsData

func (*XpsSaveOptionsData) GetNumeralFormat ¶

func (obj *XpsSaveOptionsData) GetNumeralFormat() *string

func (*XpsSaveOptionsData) GetOptimizeOutput ¶

func (obj *XpsSaveOptionsData) GetOptimizeOutput() *bool

func (*XpsSaveOptionsData) GetOutlineOptions ¶

func (obj *XpsSaveOptionsData) GetOutlineOptions() IOutlineOptionsData

func (*XpsSaveOptionsData) GetPageCount ¶

func (obj *XpsSaveOptionsData) GetPageCount() *int32

func (*XpsSaveOptionsData) GetPageIndex ¶

func (obj *XpsSaveOptionsData) GetPageIndex() *int32

func (*XpsSaveOptionsData) GetSaveFormat ¶

func (obj *XpsSaveOptionsData) GetSaveFormat() *string

func (*XpsSaveOptionsData) GetUpdateCreatedTimeProperty ¶

func (obj *XpsSaveOptionsData) GetUpdateCreatedTimeProperty() *bool

func (*XpsSaveOptionsData) GetUpdateFields ¶

func (obj *XpsSaveOptionsData) GetUpdateFields() *bool

func (*XpsSaveOptionsData) GetUpdateLastPrintedProperty ¶

func (obj *XpsSaveOptionsData) GetUpdateLastPrintedProperty() *bool

func (*XpsSaveOptionsData) GetUpdateLastSavedTimeProperty ¶

func (obj *XpsSaveOptionsData) GetUpdateLastSavedTimeProperty() *bool

func (*XpsSaveOptionsData) GetUseBookFoldPrintingSettings ¶

func (obj *XpsSaveOptionsData) GetUseBookFoldPrintingSettings() *bool

func (*XpsSaveOptionsData) GetZipOutput ¶

func (obj *XpsSaveOptionsData) GetZipOutput() *bool

func (*XpsSaveOptionsData) Initialize ¶

func (obj *XpsSaveOptionsData) Initialize()

func (XpsSaveOptionsData) IsFixedPageSaveOptionsData ¶

func (XpsSaveOptionsData) IsFixedPageSaveOptionsData() bool

func (XpsSaveOptionsData) IsSaveOptionsData ¶

func (XpsSaveOptionsData) IsSaveOptionsData() bool

func (XpsSaveOptionsData) IsXpsSaveOptionsData ¶

func (XpsSaveOptionsData) IsXpsSaveOptionsData() bool

func (*XpsSaveOptionsData) SetAllowEmbeddingPostScriptFonts ¶

func (obj *XpsSaveOptionsData) SetAllowEmbeddingPostScriptFonts(value *bool)

func (*XpsSaveOptionsData) SetBookmarksOutlineLevel ¶

func (obj *XpsSaveOptionsData) SetBookmarksOutlineLevel(value *int32)

func (*XpsSaveOptionsData) SetColorMode ¶

func (obj *XpsSaveOptionsData) SetColorMode(value *string)

func (*XpsSaveOptionsData) SetCustomTimeZoneInfoData ¶

func (obj *XpsSaveOptionsData) SetCustomTimeZoneInfoData(value ITimeZoneInfoData)

func (*XpsSaveOptionsData) SetDml3DEffectsRenderingMode ¶

func (obj *XpsSaveOptionsData) SetDml3DEffectsRenderingMode(value *string)

func (*XpsSaveOptionsData) SetDmlEffectsRenderingMode ¶

func (obj *XpsSaveOptionsData) SetDmlEffectsRenderingMode(value *string)

func (*XpsSaveOptionsData) SetDmlRenderingMode ¶

func (obj *XpsSaveOptionsData) SetDmlRenderingMode(value *string)

func (*XpsSaveOptionsData) SetFileName ¶

func (obj *XpsSaveOptionsData) SetFileName(value *string)

func (*XpsSaveOptionsData) SetHeadingsOutlineLevels ¶

func (obj *XpsSaveOptionsData) SetHeadingsOutlineLevels(value *int32)

func (*XpsSaveOptionsData) SetImlRenderingMode ¶

func (obj *XpsSaveOptionsData) SetImlRenderingMode(value *string)

func (*XpsSaveOptionsData) SetJpegQuality ¶

func (obj *XpsSaveOptionsData) SetJpegQuality(value *int32)

func (*XpsSaveOptionsData) SetMetafileRenderingOptions ¶

func (obj *XpsSaveOptionsData) SetMetafileRenderingOptions(value IMetafileRenderingOptionsData)

func (*XpsSaveOptionsData) SetNumeralFormat ¶

func (obj *XpsSaveOptionsData) SetNumeralFormat(value *string)

func (*XpsSaveOptionsData) SetOptimizeOutput ¶

func (obj *XpsSaveOptionsData) SetOptimizeOutput(value *bool)

func (*XpsSaveOptionsData) SetOutlineOptions ¶

func (obj *XpsSaveOptionsData) SetOutlineOptions(value IOutlineOptionsData)

func (*XpsSaveOptionsData) SetPageCount ¶

func (obj *XpsSaveOptionsData) SetPageCount(value *int32)

func (*XpsSaveOptionsData) SetPageIndex ¶

func (obj *XpsSaveOptionsData) SetPageIndex(value *int32)

func (*XpsSaveOptionsData) SetSaveFormat ¶

func (obj *XpsSaveOptionsData) SetSaveFormat(value *string)

func (*XpsSaveOptionsData) SetUpdateCreatedTimeProperty ¶

func (obj *XpsSaveOptionsData) SetUpdateCreatedTimeProperty(value *bool)

func (*XpsSaveOptionsData) SetUpdateFields ¶

func (obj *XpsSaveOptionsData) SetUpdateFields(value *bool)

func (*XpsSaveOptionsData) SetUpdateLastPrintedProperty ¶

func (obj *XpsSaveOptionsData) SetUpdateLastPrintedProperty(value *bool)

func (*XpsSaveOptionsData) SetUpdateLastSavedTimeProperty ¶

func (obj *XpsSaveOptionsData) SetUpdateLastSavedTimeProperty(value *bool)

func (*XpsSaveOptionsData) SetUseBookFoldPrintingSettings ¶

func (obj *XpsSaveOptionsData) SetUseBookFoldPrintingSettings(value *bool)

func (*XpsSaveOptionsData) SetZipOutput ¶

func (obj *XpsSaveOptionsData) SetZipOutput(value *bool)

func (*XpsSaveOptionsData) Validate ¶

func (obj *XpsSaveOptionsData) Validate() error

Source Files ¶

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL