/// <summary> /// Removes a shape, specified shapes or all shapes. /// </summary> /// <param name="request">Request. <see cref="DeleteNotesSlideParagraphsRequest" /></param> /// <returns><see cref="ParagraphListResponse"/></returns> public ParagraphListResponse DeleteNotesSlideParagraphs(DeleteNotesSlideParagraphsRequest request) { // verify the required parameter 'name' is set if (request.Name == null) { throw new ApiException(400, "Missing required parameter 'name' when calling DeleteNotesSlideParagraphs"); } // verify the required parameter 'path' is set if (request.Path == null) { throw new ApiException(400, "Missing required parameter 'path' when calling DeleteNotesSlideParagraphs"); } // create path and map variables string resourcePath = GetResourceUrl("/slides/{name}/slides/{slideIndex}/notesSlide/shapes/{path}/{shapeIndex}/paragraphs"); resourcePath = UrlHelper.AddPathParameter(resourcePath, "name", request.Name); resourcePath = UrlHelper.AddPathParameter(resourcePath, "slideIndex", request.SlideIndex); resourcePath = UrlHelper.AddPathParameter(resourcePath, "path", request.Path); resourcePath = UrlHelper.AddPathParameter(resourcePath, "shapeIndex", request.ShapeIndex); resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "folder", request.Folder); resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "storage", request.Storage); resourcePath = UrlHelper.AddQueryParameterToUrl(resourcePath, "paragraphs", request.Paragraphs); string contentType = "application/json"; var files = new List <FileInfo>(); PickFiles(files, request); return(InvokeApi <ParagraphListResponse>(resourcePath, "DELETE", null, null, files, contentType)); }
private DeleteNotesSlideParagraphsRequest createDeleteNotesSlideParagraphsRequest() { DeleteNotesSlideParagraphsRequest request = new DeleteNotesSlideParagraphsRequest(); request.Name = "test.pptx"; request.SlideIndex = 1; request.ShapeIndex = 0; return(request); }
public void deleteNotesSlideParagraphsExample() { ParagraphListResponse response = null; try { DeleteNotesSlideParagraphsRequest request = createDeleteNotesSlideParagraphsRequest(); response = api.DeleteNotesSlideParagraphs(request); Console.WriteLine(response.Code); } catch (Exception ex) { Console.WriteLine(ex.Message); } }