@@ -34778,6 +34778,49 @@ export class PostReverseRequest {
3477834778 }
3477934779
3478034780}
34781+ export class PostRepairRequest {
34782+ /// File to upload
34783+ public file: any;
34784+
34785+ public format: string;
34786+ /// extend query parameter
34787+ public extendQueryParameterMap: any;
34788+
34789+ public constructor(init?: Partial< PostRepairRequest >) {
34790+ Object.assign(this, init);
34791+ }
34792+
34793+ public async createRequestOptions(configuration: Configuration) : Promise<request.Options> {
34794+
34795+ let localVarPath = configuration.getApiBaseUrl() + "/cells/repair";
34796+ const queryParameters: any = {};
34797+ const formParams: any = {};
34798+ localVarPath = addQueryParameterToUrl(localVarPath, queryParameters, "format", this.format);
34799+ if(this.extendQueryParameterMap !== undefined){
34800+ for (var key in this.extendQueryParameterMap){
34801+ localVarPath = addQueryParameterToUrl(localVarPath, queryParameters, key, this.extendQueryParameterMap[key]);
34802+ }
34803+ }
34804+ if (this.file !== undefined) {
34805+ for (var key in this.file){
34806+ formParams[key] = this.file[key];
34807+ }
34808+ }
34809+
34810+ const requestOptions: request.Options = {
34811+ method: "POST",
34812+ qs: queryParameters,
34813+ uri: localVarPath,
34814+ json: true,
34815+ };
34816+
34817+ (requestOptions as any).formData = formParams;
34818+ return Promise.resolve(requestOptions);
34819+
34820+ }
34821+
34822+ }
34823+
3478134824/// Reverse rows or columns of Excel files, save as kinds of format files.
3478234825export class PostRotateRequest {
3478334826 /// File to upload
0 commit comments