Skip to content

Commit

Permalink
Release Aspose.Cells Cloud SDK 24.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xuejianzhangd committed Oct 23, 2024
1 parent a681042 commit 397cb46
Show file tree
Hide file tree
Showing 16 changed files with 4,288 additions and 8 deletions.
3,763 changes: 3,763 additions & 0 deletions Aspose.Cells.Cloud.SDK/Api/CellsApi.cs

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<RepositoryType>GitHub</RepositoryType>
<Copyright>MIT</Copyright>
<StyleCopTreatErrorsAsWarnings>false</StyleCopTreatErrorsAsWarnings>
<AssemblyVersion>24.9</AssemblyVersion>
<FileVersion>24.9</FileVersion>
<Version>24.9</Version>
<AssemblyVersion>24.10</AssemblyVersion>
<FileVersion>24.10</FileVersion>
<Version>24.10</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>

</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ internal class ApiInvoker
internal ApiInvoker(List<IRequestHandler> requestHandlers)
{
this.AddDefaultHeader(AsposeClientHeaderName, ".net sdk");
this.AddDefaultHeader(AsposeClientVersionHeaderName, "24.9");
this.AddDefaultHeader(AsposeClientVersionHeaderName, "24.10");
this.requestHandlers = requestHandlers;
}

Expand Down
44 changes: 44 additions & 0 deletions Aspose.Cells.Cloud.SDK/Model/CharacterSetsType.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright company="Aspose" file="CharacterSetsType.cs">
// Copyright (c) 2024 Aspose.Cells Cloud
// </copyright>
// <summary>
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace Aspose.Cells.Cloud.SDK.Model
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
using System.Drawing;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

/// <summary>
/// CharacterSetsType.
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public enum CharacterSetsType
{
}
}
72 changes: 72 additions & 0 deletions Aspose.Cells.Cloud.SDK/Model/RemoveCharactersByCharacter.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright company="Aspose" file="RemoveCharactersByCharacter.cs">
// Copyright (c) 2024 Aspose.Cells Cloud
// </copyright>
// <summary>
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace Aspose.Cells.Cloud.SDK.Model
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
using System.Drawing;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

/// <summary>
/// RemoveCharactersByCharacter.
/// </summary>
public class RemoveCharactersByCharacter
{
/// <summary>
///
/// </summary>
public virtual string RemoveTextMethod { get; set; }

/// <summary>
///
/// </summary>
public virtual IList<string> RemoveCharacters { get; set; }

/// <summary>
///
/// </summary>
public virtual string RemoveCharacterSetsType { get; set; }

/// <summary>
/// Get the string presentation of the object.
/// </summary>
/// <returns>String presentation of the object.</returns>
public override string ToString()
{
var sb = new StringBuilder();
sb.Append("class RemoveCharactersByCharacter {\n");
sb.Append(" RemoveTextMethod: ").Append(this.RemoveTextMethod).Append("\n");
sb.Append(" RemoveCharacters: ").Append(this.RemoveCharacters).Append("\n");
sb.Append(" RemoveCharacterSetsType: ").Append(this.RemoveCharacterSetsType).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
}
}
78 changes: 78 additions & 0 deletions Aspose.Cells.Cloud.SDK/Model/RemoveCharactersByPosition.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright company="Aspose" file="RemoveCharactersByPosition.cs">
// Copyright (c) 2024 Aspose.Cells Cloud
// </copyright>
// <summary>
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace Aspose.Cells.Cloud.SDK.Model
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
using System.Drawing;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

/// <summary>
/// RemoveCharactersByPosition.
/// </summary>
public class RemoveCharactersByPosition
{
/// <summary>
///
/// </summary>
public virtual int? TheFirstNCharacters { get; set; }

/// <summary>
///
/// </summary>
public virtual int? TheLastNCharacters { get; set; }

/// <summary>
///
/// </summary>
public virtual string AllCharactersBeforeText { get; set; }

/// <summary>
///
/// </summary>
public virtual string AllCharactersAfterText { get; set; }

/// <summary>
/// Get the string presentation of the object.
/// </summary>
/// <returns>String presentation of the object.</returns>
public override string ToString()
{
var sb = new StringBuilder();
sb.Append("class RemoveCharactersByPosition {\n");
sb.Append(" TheFirstNCharacters: ").Append(this.TheFirstNCharacters).Append("\n");
sb.Append(" TheLastNCharacters: ").Append(this.TheLastNCharacters).Append("\n");
sb.Append(" AllCharactersBeforeText: ").Append(this.AllCharactersBeforeText).Append("\n");
sb.Append(" AllCharactersAfterText: ").Append(this.AllCharactersAfterText).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
}
}
96 changes: 96 additions & 0 deletions Aspose.Cells.Cloud.SDK/Model/RemoveCharactersOptions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright company="Aspose" file="RemoveCharactersOptions.cs">
// Copyright (c) 2024 Aspose.Cells Cloud
// </copyright>
// <summary>
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace Aspose.Cells.Cloud.SDK.Model
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
using System.Drawing;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

/// <summary>
///
/// </summary>
public class RemoveCharactersOptions : BaseOperateOptions
{
/// <summary>
///
/// </summary>
public override string Name { get; set; }

/// <summary>
///
/// </summary>
public virtual DataSource DataSource { get; set; }

/// <summary>
///
/// </summary>
public virtual FileInfo FileInfo { get; set; }

/// <summary>
///
/// </summary>
public virtual string Worksheet { get; set; }

/// <summary>
///
/// </summary>
public virtual string Range { get; set; }

/// <summary>
///
/// </summary>
public virtual RemoveCharactersByCharacter RemoveCharactersByCharacter { get; set; }

/// <summary>
///
/// </summary>
public virtual RemoveCharactersByPosition RemoveCharactersByPosition { get; set; }

/// <summary>
/// Get the string presentation of the object.
/// </summary>
/// <returns>String presentation of the object.</returns>
public override string ToString()
{
var sb = new StringBuilder();
sb.Append("class RemoveCharactersOptions {\n");
sb.Append(" Name: ").Append(this.Name).Append("\n");
sb.Append(" DataSource: ").Append(this.DataSource).Append("\n");
sb.Append(" FileInfo: ").Append(this.FileInfo).Append("\n");
sb.Append(" Worksheet: ").Append(this.Worksheet).Append("\n");
sb.Append(" Range: ").Append(this.Range).Append("\n");
sb.Append(" RemoveCharactersByCharacter: ").Append(this.RemoveCharactersByCharacter).Append("\n");
sb.Append(" RemoveCharactersByPosition: ").Append(this.RemoveCharactersByPosition).Append("\n");
sb.Append("}\n");
return sb.ToString();
}
}
}
44 changes: 44 additions & 0 deletions Aspose.Cells.Cloud.SDK/Model/RemoveTextMethodType.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright company="Aspose" file="RemoveTextMethodType.cs">
// Copyright (c) 2024 Aspose.Cells Cloud
// </copyright>
// <summary>
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// </summary>
// --------------------------------------------------------------------------------------------------------------------

namespace Aspose.Cells.Cloud.SDK.Model
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
using System.Drawing;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

/// <summary>
/// RemoveTextMethodType.
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public enum RemoveTextMethodType
{
}
}
Loading

0 comments on commit 397cb46

Please sign in to comment.