File tree Expand file tree Collapse file tree
src/GroupDocs.Viewer.Cloud.Sdk Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22<Project Sdk =" Microsoft.NET.Sdk" >
33 <PropertyGroup >
44 <TargetFrameworks >netstandard2.0;net20</TargetFrameworks >
5- <AssemblyVersion >25.3 .0.0</AssemblyVersion >
6- <FileVersion >25.3 .0.0</FileVersion >
7- <Version >25.3 .0</Version >
5+ <AssemblyVersion >25.4 .0.0</AssemblyVersion >
6+ <FileVersion >25.4 .0.0</FileVersion >
7+ <Version >25.4 .0</Version >
88 <StyleCopTreatErrorsAsWarnings >false</StyleCopTreatErrorsAsWarnings >
99 <Company >GroupDocs</Company >
1010 <Authors >GroupDocs Product Team</Authors >
Original file line number Diff line number Diff line change @@ -48,6 +48,11 @@ public class ConsumptionResult
4848 /// </summary>
4949 public decimal ? Quantity { get ; set ; }
5050
51+ /// <summary>
52+ /// Billed API calls number
53+ /// </summary>
54+ public decimal ? BilledApiCalls { get ; set ; }
55+
5156 /// <summary>
5257 /// Get the string presentation of the object
5358 /// </summary>
@@ -58,6 +63,7 @@ public override string ToString()
5863 sb . Append ( "class ConsumptionResult {\n " ) ;
5964 sb . Append ( " Credit: " ) . Append ( this . Credit ) . Append ( "\n " ) ;
6065 sb . Append ( " Quantity: " ) . Append ( this . Quantity ) . Append ( "\n " ) ;
66+ sb . Append ( " BilledApiCalls: " ) . Append ( this . BilledApiCalls ) . Append ( "\n " ) ;
6167 sb . Append ( "}\n " ) ;
6268 return sb . ToString ( ) ;
6369 }
You can’t perform that action at this time.
0 commit comments