namespace Aspose.Cells.Cloud.SDK.Tests.Api.Example
{
    using Microsoft.VisualStudio.TestTools.UnitTesting;
    using Aspose.Cells.Cloud.SDK.Request;
    using System.Collections.Generic;
    using Aspose.Cells.Cloud.SDK.Api;
    using Aspose.Cells.Cloud.SDK.Model;
    using System;
    using System.IO;

    [TestClass]
    public class CellsApiExample
    {
          string CellsCloudClientId ="....";//get from https://dashboard.aspose.cloud/#/applications
        string CellsCloudClientSecret="...";//get from https://dashboard.aspose.cloud/#/applications
        private readonly string remoteFolder = "TestData/In";
        string remoteName = "remote_book1.xlsx";
        [TestCategory("Cells")]
        [TestMethod]
        public void Example()
        {

            var request = new DeleteDocumentPropertyRequest(
    name: remoteName,
    propertyName: "Author",
    type: "All",
    folder: remoteFolder,
    storageName: ""
);
cellsApi.DeleteDocumentProperty(request);
        }


    }
}