You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -13956,6 +13965,232 @@ export class ExecuteMailMergeOnlineRequest implements RequestInterface {
13956
13965
}
13957
13966
}
13958
13967
13968
+
/**
13969
+
* Request model for GetAllRevisions operation.
13970
+
* Get all information about revisions.
13971
+
*/
13972
+
export class GetAllRevisionsRequest implements RequestInterface {
13973
+
13974
+
public constructor(init?: Partial< GetAllRevisionsRequest >) {
13975
+
Object.assign(this, init);
13976
+
}
13977
+
13978
+
/**
13979
+
* The filename of the input document.
13980
+
*/
13981
+
public name: string;
13982
+
13983
+
/**
13984
+
* Original document folder.
13985
+
*/
13986
+
public folder: string;
13987
+
13988
+
/**
13989
+
* Original document storage.
13990
+
*/
13991
+
public storage: string;
13992
+
13993
+
/**
13994
+
* Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
13995
+
*/
13996
+
public loadEncoding: string;
13997
+
13998
+
/**
13999
+
* Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
14000
+
*/
14001
+
public password: string;
14002
+
14003
+
/**
14004
+
* Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
14005
+
*/
14006
+
public encryptedPassword: string;
14007
+
14008
+
/**
14009
+
* The value indicates whether OpenType support is on.
14010
+
*/
14011
+
public openTypeSupport: boolean;
14012
+
14013
+
/**
14014
+
* create the requst options for this request
14015
+
* @param configuration a configuration for the request
14016
+
* @param data encryptor
14017
+
*/
14018
+
public async createRequestOptions(configuration: Configuration, _encryptor: Encryptor) : Promise<request.OptionsWithUri> {
14019
+
let localVarPath = configuration.getApiBaseUrl() + "/words/{name}/revisions/getAll"
* Request model for GetAllRevisionsOnline operation.
14088
+
* Get all information about revisions.
14089
+
*/
14090
+
export class GetAllRevisionsOnlineRequest implements RequestInterface {
14091
+
14092
+
public constructor(init?: Partial< GetAllRevisionsOnlineRequest >) {
14093
+
Object.assign(this, init);
14094
+
}
14095
+
14096
+
/**
14097
+
* The document.
14098
+
*/
14099
+
public document: Readable;
14100
+
14101
+
/**
14102
+
* Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML.
14103
+
*/
14104
+
public loadEncoding: string;
14105
+
14106
+
/**
14107
+
* Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don't recommend to use the parameter to pass a plain password for direct call of API.
14108
+
*/
14109
+
public password: string;
14110
+
14111
+
/**
14112
+
* Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details.
14113
+
*/
14114
+
public encryptedPassword: string;
14115
+
14116
+
/**
14117
+
* The value indicates whether OpenType support is on.
14118
+
*/
14119
+
public openTypeSupport: boolean;
14120
+
14121
+
/**
14122
+
* create the requst options for this request
14123
+
* @param configuration a configuration for the request
14124
+
* @param data encryptor
14125
+
*/
14126
+
public async createRequestOptions(configuration: Configuration, _encryptor: Encryptor) : Promise<request.OptionsWithUri> {
14127
+
let localVarPath = configuration.getApiBaseUrl() + "/words/online/get/revisions/getAll"
14128
+
.replace("//", "/");
14129
+
var queryParameters: any = {};
14130
+
var headerParams: any = {};
14131
+
var formParams: any = [];
14132
+
var filesContent: any = [];
14133
+
// verify required parameter 'this.document' is not undefined
14134
+
if (this.document === undefined) {
14135
+
throw new Error('Required parameter "this.document" was undefined when calling getAllRevisionsOnline.');
14136
+
}
14137
+
14138
+
// verify required parameter 'this.document' is not null
14139
+
if (this.document === null) {
14140
+
throw new Error('Required parameter "this.document" was null when calling getAllRevisionsOnline.');
0 commit comments