public void getNotesSlideShapeParagraphsExample()
        {
            ParagraphListResponse response = null;

            try
            {
                GetNotesSlideShapeParagraphsRequest request = createGetNotesSlideShapeParagraphsRequest();
                response = api.GetNotesSlideShapeParagraphs(request);
                Console.WriteLine(response.Code);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
        public void deleteNotesSlideParagraphExample()
        {
            ParagraphListResponse response = null;

            try
            {
                DeleteNotesSlideParagraphRequest request = createDeleteNotesSlideParagraphRequest();
                response = api.DeleteNotesSlideParagraph(request);
                Console.WriteLine(response.Code);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }