-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
20200819 update 2 : Release Aspose.Cells Cloud SDK 20.8
- Loading branch information
1 parent
d7daec9
commit fed1b42
Showing
7 changed files
with
1,049 additions
and
969 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright company="Aspose" file="CellsCloudFileInfo.cs"> | ||
// Copyright (c) 2016 Aspose.Cells for 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 Newtonsoft.Json; | ||
using Newtonsoft.Json.Converters; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
[DataContract] | ||
public class CellsCloudFileInfo | ||
{ | ||
/// <summary> | ||
/// Gets or sets Name | ||
/// </summary> | ||
[DataMember(Name="Name", EmitDefaultValue=false)] | ||
public string Name { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets Size | ||
/// </summary> | ||
[DataMember(Name="Size", EmitDefaultValue=false)] | ||
public long? Size { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets Folder | ||
/// </summary> | ||
[DataMember(Name="Folder", EmitDefaultValue=false)] | ||
public string Folder { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets Storage | ||
/// </summary> | ||
[DataMember(Name="Storage", EmitDefaultValue=false)] | ||
public string Storage { 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 CellsCloudFileInfo {\n"); | ||
sb.Append(" Name: ").Append(this.Name).Append("\n"); | ||
sb.Append(" Size: ").Append(this.Size).Append("\n"); | ||
sb.Append(" Folder: ").Append(this.Folder).Append("\n"); | ||
sb.Append(" Storage: ").Append(this.Storage).Append("\n"); | ||
sb.Append("}\n"); | ||
return sb.ToString(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.