Skip to content

Commit 9f52c7b

Browse files
author
devexperience
committed
Generated version 0.28.0
This commit was automatically created by a GitHub Action to generate version 0.28.0 of this library.
1 parent dc86786 commit 9f52c7b

8 files changed

Lines changed: 44 additions & 11 deletions

File tree

MX.Platform.CSharp.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{DC7B973C-6213-4E89-B9AC-6BAA699506E6}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{08A89A1A-895D-4AFD-9AEE-68AF0B411E74}"
66
EndProject
77
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp.Test", "src\MX.Platform.CSharp.Test\MX.Platform.CSharp.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
88
EndProject
@@ -12,10 +12,10 @@ Global
1212
Release|Any CPU = Release|Any CPU
1313
EndGlobalSection
1414
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15-
{DC7B973C-6213-4E89-B9AC-6BAA699506E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{DC7B973C-6213-4E89-B9AC-6BAA699506E6}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{DC7B973C-6213-4E89-B9AC-6BAA699506E6}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{DC7B973C-6213-4E89-B9AC-6BAA699506E6}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{08A89A1A-895D-4AFD-9AEE-68AF0B411E74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{08A89A1A-895D-4AFD-9AEE-68AF0B411E74}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{08A89A1A-895D-4AFD-9AEE-68AF0B411E74}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{08A89A1A-895D-4AFD-9AEE-68AF0B411E74}.Release|Any CPU.Build.0 = Release|Any CPU
1919
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2020
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
2121
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU

api/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5658,6 +5658,10 @@ components:
56585658
example: 1.0
56595659
nullable: true
56605660
type: number
5661+
total_account_value_ugl:
5662+
example: 1.1
5663+
nullable: true
5664+
type: number
56615665
type:
56625666
example: SAVINGS
56635667
nullable: true

docs/AccountResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Name | Type | Description | Notes
5656
**TodayUglAmount** | **decimal?** | | [optional]
5757
**TodayUglPercentage** | **decimal?** | | [optional]
5858
**TotalAccountValue** | **decimal?** | | [optional]
59+
**TotalAccountValueUgl** | **decimal?** | | [optional]
5960
**Type** | **string** | | [optional]
6061
**UpdatedAt** | **string** | | [optional]
6162
**UserGuid** | **string** | | [optional]

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
22
packageName: MX.Platform.CSharp
3-
packageVersion: 0.27.0
3+
packageVersion: 0.28.0

src/MX.Platform.CSharp.Test/Model/AccountResponseTests.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,15 @@ public void TotalAccountValueTest()
522522
// TODO unit test for the property 'TotalAccountValue'
523523
}
524524

525+
/// <summary>
526+
/// Test the property 'TotalAccountValueUgl'
527+
/// </summary>
528+
[Fact]
529+
public void TotalAccountValueUglTest()
530+
{
531+
// TODO unit test for the property 'TotalAccountValueUgl'
532+
}
533+
525534
/// <summary>
526535
/// Test the property 'Type'
527536
/// </summary>

src/MX.Platform.CSharp/Client/Configuration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class Configuration : IReadableConfiguration
3333
/// Version of the package.
3434
/// </summary>
3535
/// <value>Version of the package.</value>
36-
public const string Version = "0.27.0";
36+
public const string Version = "0.28.0";
3737

3838
/// <summary>
3939
/// Identifier for ISO 8601 DateTime Format
@@ -117,7 +117,7 @@ public class Configuration : IReadableConfiguration
117117
public Configuration()
118118
{
119119
Proxy = null;
120-
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.27.0/csharp");
120+
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.28.0/csharp");
121121
BasePath = "https://api.mx.com";
122122
DefaultHeaders = new ConcurrentDictionary<string, string>();
123123
ApiKey = new ConcurrentDictionary<string, string>();
@@ -546,7 +546,7 @@ public static string ToDebugReport()
546546
report += " OS: " + System.Environment.OSVersion + "\n";
547547
report += " .NET Framework Version: " + System.Environment.Version + "\n";
548548
report += " Version of the API: 0.1.0\n";
549-
report += " SDK Package Version: 0.27.0\n";
549+
report += " SDK Package Version: 0.28.0\n";
550550

551551
return report;
552552
}

src/MX.Platform.CSharp/MX.Platform.CSharp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Description>A library generated from a OpenAPI doc</Description>
1313
<Copyright>No Copyright</Copyright>
1414
<RootNamespace>MX.Platform.CSharp</RootNamespace>
15-
<Version>0.27.0</Version>
15+
<Version>0.28.0</Version>
1616
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\MX.Platform.CSharp.xml</DocumentationFile>
1717
<RepositoryUrl>https://github.com/GIT_USER_ID/GIT_REPO_ID.git</RepositoryUrl>
1818
<RepositoryType>git</RepositoryType>

src/MX.Platform.CSharp/Model/AccountResponse.cs

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,12 @@ public partial class AccountResponse : IEquatable<AccountResponse>, IValidatable
8686
/// <param name="todayUglAmount">todayUglAmount.</param>
8787
/// <param name="todayUglPercentage">todayUglPercentage.</param>
8888
/// <param name="totalAccountValue">totalAccountValue.</param>
89+
/// <param name="totalAccountValueUgl">totalAccountValueUgl.</param>
8990
/// <param name="type">type.</param>
9091
/// <param name="updatedAt">updatedAt.</param>
9192
/// <param name="userGuid">userGuid.</param>
9293
/// <param name="userId">userId.</param>
93-
public AccountResponse(string accountNumber = default(string), string accountOwnership = default(string), string annuityPolicyToDate = default(string), string annuityProvider = default(string), decimal? annuityTermYear = default(decimal?), decimal? apr = default(decimal?), decimal? apy = default(decimal?), decimal? availableBalance = default(decimal?), decimal? availableCredit = default(decimal?), decimal? balance = default(decimal?), decimal? cashBalance = default(decimal?), decimal? cashSurrenderValue = default(decimal?), string createdAt = default(string), decimal? creditLimit = default(decimal?), string currencyCode = default(string), int? dayPaymentIsDue = default(int?), int? deathBenefit = default(int?), string guid = default(string), decimal? holdingsValue = default(decimal?), string id = default(string), string importedAt = default(string), string institutionCode = default(string), string insuredName = default(string), decimal? interestRate = default(decimal?), bool? isClosed = default(bool?), bool? isHidden = default(bool?), bool? isManual = default(bool?), decimal? lastPayment = default(decimal?), string lastPaymentAt = default(string), decimal? loanAmount = default(decimal?), decimal? marginBalance = default(decimal?), string maturesOn = default(string), string memberGuid = default(string), string memberId = default(string), bool? memberIsManagedByUser = default(bool?), string metadata = default(string), decimal? minimumBalance = default(decimal?), decimal? minimumPayment = default(decimal?), string name = default(string), string nickname = default(string), decimal? originalBalance = default(decimal?), decimal? payOutAmount = default(decimal?), string paymentDueAt = default(string), decimal? payoffBalance = default(decimal?), decimal? premiumAmount = default(decimal?), string propertyType = default(string), string routingNumber = default(string), string startedOn = default(string), string subtype = default(string), decimal? todayUglAmount = default(decimal?), decimal? todayUglPercentage = default(decimal?), decimal? totalAccountValue = default(decimal?), string type = default(string), string updatedAt = default(string), string userGuid = default(string), string userId = default(string))
94+
public AccountResponse(string accountNumber = default(string), string accountOwnership = default(string), string annuityPolicyToDate = default(string), string annuityProvider = default(string), decimal? annuityTermYear = default(decimal?), decimal? apr = default(decimal?), decimal? apy = default(decimal?), decimal? availableBalance = default(decimal?), decimal? availableCredit = default(decimal?), decimal? balance = default(decimal?), decimal? cashBalance = default(decimal?), decimal? cashSurrenderValue = default(decimal?), string createdAt = default(string), decimal? creditLimit = default(decimal?), string currencyCode = default(string), int? dayPaymentIsDue = default(int?), int? deathBenefit = default(int?), string guid = default(string), decimal? holdingsValue = default(decimal?), string id = default(string), string importedAt = default(string), string institutionCode = default(string), string insuredName = default(string), decimal? interestRate = default(decimal?), bool? isClosed = default(bool?), bool? isHidden = default(bool?), bool? isManual = default(bool?), decimal? lastPayment = default(decimal?), string lastPaymentAt = default(string), decimal? loanAmount = default(decimal?), decimal? marginBalance = default(decimal?), string maturesOn = default(string), string memberGuid = default(string), string memberId = default(string), bool? memberIsManagedByUser = default(bool?), string metadata = default(string), decimal? minimumBalance = default(decimal?), decimal? minimumPayment = default(decimal?), string name = default(string), string nickname = default(string), decimal? originalBalance = default(decimal?), decimal? payOutAmount = default(decimal?), string paymentDueAt = default(string), decimal? payoffBalance = default(decimal?), decimal? premiumAmount = default(decimal?), string propertyType = default(string), string routingNumber = default(string), string startedOn = default(string), string subtype = default(string), decimal? todayUglAmount = default(decimal?), decimal? todayUglPercentage = default(decimal?), decimal? totalAccountValue = default(decimal?), decimal? totalAccountValueUgl = default(decimal?), string type = default(string), string updatedAt = default(string), string userGuid = default(string), string userId = default(string))
9495
{
9596
this.AccountNumber = accountNumber;
9697
this.AccountOwnership = accountOwnership;
@@ -144,6 +145,7 @@ public partial class AccountResponse : IEquatable<AccountResponse>, IValidatable
144145
this.TodayUglAmount = todayUglAmount;
145146
this.TodayUglPercentage = todayUglPercentage;
146147
this.TotalAccountValue = totalAccountValue;
148+
this.TotalAccountValueUgl = totalAccountValueUgl;
147149
this.Type = type;
148150
this.UpdatedAt = updatedAt;
149151
this.UserGuid = userGuid;
@@ -514,6 +516,13 @@ public partial class AccountResponse : IEquatable<AccountResponse>, IValidatable
514516
[DataMember(Name = "total_account_value", EmitDefaultValue = true)]
515517
public decimal? TotalAccountValue { get; set; }
516518

519+
/// <summary>
520+
/// Gets or Sets TotalAccountValueUgl
521+
/// </summary>
522+
/// <example>1.1</example>
523+
[DataMember(Name = "total_account_value_ugl", EmitDefaultValue = true)]
524+
public decimal? TotalAccountValueUgl { get; set; }
525+
517526
/// <summary>
518527
/// Gets or Sets Type
519528
/// </summary>
@@ -602,6 +611,7 @@ public override string ToString()
602611
sb.Append(" TodayUglAmount: ").Append(TodayUglAmount).Append("\n");
603612
sb.Append(" TodayUglPercentage: ").Append(TodayUglPercentage).Append("\n");
604613
sb.Append(" TotalAccountValue: ").Append(TotalAccountValue).Append("\n");
614+
sb.Append(" TotalAccountValueUgl: ").Append(TotalAccountValueUgl).Append("\n");
605615
sb.Append(" Type: ").Append(Type).Append("\n");
606616
sb.Append(" UpdatedAt: ").Append(UpdatedAt).Append("\n");
607617
sb.Append(" UserGuid: ").Append(UserGuid).Append("\n");
@@ -901,6 +911,11 @@ public bool Equals(AccountResponse input)
901911
(this.TotalAccountValue != null &&
902912
this.TotalAccountValue.Equals(input.TotalAccountValue))
903913
) &&
914+
(
915+
this.TotalAccountValueUgl == input.TotalAccountValueUgl ||
916+
(this.TotalAccountValueUgl != null &&
917+
this.TotalAccountValueUgl.Equals(input.TotalAccountValueUgl))
918+
) &&
904919
(
905920
this.Type == input.Type ||
906921
(this.Type != null &&
@@ -1140,6 +1155,10 @@ public override int GetHashCode()
11401155
{
11411156
hashCode = (hashCode * 59) + this.TotalAccountValue.GetHashCode();
11421157
}
1158+
if (this.TotalAccountValueUgl != null)
1159+
{
1160+
hashCode = (hashCode * 59) + this.TotalAccountValueUgl.GetHashCode();
1161+
}
11431162
if (this.Type != null)
11441163
{
11451164
hashCode = (hashCode * 59) + this.Type.GetHashCode();

0 commit comments

Comments
 (0)