public void getNotesSlideShapesTest()
        {
            ShapeListResponse response = null;

            try
            {
                GetNotesSlideShapesRequest request = createGetNotesSlideShapesRequest();
                response = api.GetNotesSlideShapes(request);
                Console.WriteLine(response.Code);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
        public void deleteNotesSlideShapesExample()
        {
            ShapeListResponse response = null;

            try
            {
                DeleteNotesSlideShapesRequest request = createDeleteNotesSlideShapesRequest();
                response = api.DeleteNotesSlideShapes(request);
                Console.WriteLine(response.Code);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }