Skip to content

Commit f0a76fd

Browse files
author
devexperience
committed
Generated version 0.32.0
This commit was automatically created by a GitHub Action to generate version 0.32.0 of this library.
1 parent 54c5b4a commit f0a76fd

8 files changed

Lines changed: 77 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", "{598C14C4-3577-420E-9330-64282A089AB5}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MX.Platform.CSharp", "src\MX.Platform.CSharp\MX.Platform.CSharp.csproj", "{B79D50A8-D4A1-4B46-980E-63E9FD21A072}"
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-
{598C14C4-3577-420E-9330-64282A089AB5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{598C14C4-3577-420E-9330-64282A089AB5}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{598C14C4-3577-420E-9330-64282A089AB5}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{598C14C4-3577-420E-9330-64282A089AB5}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{B79D50A8-D4A1-4B46-980E-63E9FD21A072}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{B79D50A8-D4A1-4B46-980E-63E9FD21A072}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{B79D50A8-D4A1-4B46-980E-63E9FD21A072}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{B79D50A8-D4A1-4B46-980E-63E9FD21A072}.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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5359,6 +5359,10 @@ components:
53595359
example: U.S. DEPARTMENT OF EDUCATION
53605360
nullable: true
53615361
type: string
5362+
loan_reference_number:
5363+
example: "123456789012345"
5364+
nullable: true
5365+
type: string
53625366
institution_number:
53635367
example: "123"
53645368
nullable: true
@@ -5375,6 +5379,10 @@ components:
53755379
example: "68899990000000"
53765380
nullable: true
53775381
type: string
5382+
sequence_number:
5383+
example: 1-01
5384+
nullable: true
5385+
type: string
53785386
transit_number:
53795387
example: "12345"
53805388
nullable: true

docs/AccountNumberResponse.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ Name | Type | Description | Notes
88
**AccountNumber** | **string** | | [optional]
99
**Guid** | **string** | | [optional]
1010
**LoanGuarantor** | **string** | | [optional]
11+
**LoanReferenceNumber** | **string** | | [optional]
1112
**InstitutionNumber** | **string** | | [optional]
1213
**MemberGuid** | **string** | | [optional]
1314
**PassedValidation** | **bool?** | | [optional]
1415
**RoutingNumber** | **string** | | [optional]
16+
**SequenceNumber** | **string** | | [optional]
1517
**TransitNumber** | **string** | | [optional]
1618
**UserGuid** | **string** | | [optional]
1719

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.31.0
3+
packageVersion: 0.32.0

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,15 @@ public void LoanGuarantorTest()
9090
// TODO unit test for the property 'LoanGuarantor'
9191
}
9292

93+
/// <summary>
94+
/// Test the property 'LoanReferenceNumber'
95+
/// </summary>
96+
[Fact]
97+
public void LoanReferenceNumberTest()
98+
{
99+
// TODO unit test for the property 'LoanReferenceNumber'
100+
}
101+
93102
/// <summary>
94103
/// Test the property 'InstitutionNumber'
95104
/// </summary>
@@ -126,6 +135,15 @@ public void RoutingNumberTest()
126135
// TODO unit test for the property 'RoutingNumber'
127136
}
128137

138+
/// <summary>
139+
/// Test the property 'SequenceNumber'
140+
/// </summary>
141+
[Fact]
142+
public void SequenceNumberTest()
143+
{
144+
// TODO unit test for the property 'SequenceNumber'
145+
}
146+
129147
/// <summary>
130148
/// Test the property 'TransitNumber'
131149
/// </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.31.0";
36+
public const string Version = "0.32.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.31.0/csharp");
120+
UserAgent = WebUtility.UrlEncode("OpenAPI-Generator/0.32.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.31.0\n";
549+
report += " SDK Package Version: 0.32.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.31.0</Version>
15+
<Version>0.32.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/AccountNumberResponse.cs

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,26 @@ public partial class AccountNumberResponse : IEquatable<AccountNumberResponse>,
3838
/// <param name="accountNumber">accountNumber.</param>
3939
/// <param name="guid">guid.</param>
4040
/// <param name="loanGuarantor">loanGuarantor.</param>
41+
/// <param name="loanReferenceNumber">loanReferenceNumber.</param>
4142
/// <param name="institutionNumber">institutionNumber.</param>
4243
/// <param name="memberGuid">memberGuid.</param>
4344
/// <param name="passedValidation">passedValidation.</param>
4445
/// <param name="routingNumber">routingNumber.</param>
46+
/// <param name="sequenceNumber">sequenceNumber.</param>
4547
/// <param name="transitNumber">transitNumber.</param>
4648
/// <param name="userGuid">userGuid.</param>
47-
public AccountNumberResponse(string accountGuid = default(string), string accountNumber = default(string), string guid = default(string), string loanGuarantor = default(string), string institutionNumber = default(string), string memberGuid = default(string), bool? passedValidation = default(bool?), string routingNumber = default(string), string transitNumber = default(string), string userGuid = default(string))
49+
public AccountNumberResponse(string accountGuid = default(string), string accountNumber = default(string), string guid = default(string), string loanGuarantor = default(string), string loanReferenceNumber = default(string), string institutionNumber = default(string), string memberGuid = default(string), bool? passedValidation = default(bool?), string routingNumber = default(string), string sequenceNumber = default(string), string transitNumber = default(string), string userGuid = default(string))
4850
{
4951
this.AccountGuid = accountGuid;
5052
this.AccountNumber = accountNumber;
5153
this.Guid = guid;
5254
this.LoanGuarantor = loanGuarantor;
55+
this.LoanReferenceNumber = loanReferenceNumber;
5356
this.InstitutionNumber = institutionNumber;
5457
this.MemberGuid = memberGuid;
5558
this.PassedValidation = passedValidation;
5659
this.RoutingNumber = routingNumber;
60+
this.SequenceNumber = sequenceNumber;
5761
this.TransitNumber = transitNumber;
5862
this.UserGuid = userGuid;
5963
}
@@ -86,6 +90,13 @@ public partial class AccountNumberResponse : IEquatable<AccountNumberResponse>,
8690
[DataMember(Name = "loan_guarantor", EmitDefaultValue = true)]
8791
public string LoanGuarantor { get; set; }
8892

93+
/// <summary>
94+
/// Gets or Sets LoanReferenceNumber
95+
/// </summary>
96+
/// <example>123456789012345</example>
97+
[DataMember(Name = "loan_reference_number", EmitDefaultValue = true)]
98+
public string LoanReferenceNumber { get; set; }
99+
89100
/// <summary>
90101
/// Gets or Sets InstitutionNumber
91102
/// </summary>
@@ -114,6 +125,13 @@ public partial class AccountNumberResponse : IEquatable<AccountNumberResponse>,
114125
[DataMember(Name = "routing_number", EmitDefaultValue = true)]
115126
public string RoutingNumber { get; set; }
116127

128+
/// <summary>
129+
/// Gets or Sets SequenceNumber
130+
/// </summary>
131+
/// <example>1-01</example>
132+
[DataMember(Name = "sequence_number", EmitDefaultValue = true)]
133+
public string SequenceNumber { get; set; }
134+
117135
/// <summary>
118136
/// Gets or Sets TransitNumber
119137
/// </summary>
@@ -140,10 +158,12 @@ public override string ToString()
140158
sb.Append(" AccountNumber: ").Append(AccountNumber).Append("\n");
141159
sb.Append(" Guid: ").Append(Guid).Append("\n");
142160
sb.Append(" LoanGuarantor: ").Append(LoanGuarantor).Append("\n");
161+
sb.Append(" LoanReferenceNumber: ").Append(LoanReferenceNumber).Append("\n");
143162
sb.Append(" InstitutionNumber: ").Append(InstitutionNumber).Append("\n");
144163
sb.Append(" MemberGuid: ").Append(MemberGuid).Append("\n");
145164
sb.Append(" PassedValidation: ").Append(PassedValidation).Append("\n");
146165
sb.Append(" RoutingNumber: ").Append(RoutingNumber).Append("\n");
166+
sb.Append(" SequenceNumber: ").Append(SequenceNumber).Append("\n");
147167
sb.Append(" TransitNumber: ").Append(TransitNumber).Append("\n");
148168
sb.Append(" UserGuid: ").Append(UserGuid).Append("\n");
149169
sb.Append("}\n");
@@ -201,6 +221,11 @@ public bool Equals(AccountNumberResponse input)
201221
(this.LoanGuarantor != null &&
202222
this.LoanGuarantor.Equals(input.LoanGuarantor))
203223
) &&
224+
(
225+
this.LoanReferenceNumber == input.LoanReferenceNumber ||
226+
(this.LoanReferenceNumber != null &&
227+
this.LoanReferenceNumber.Equals(input.LoanReferenceNumber))
228+
) &&
204229
(
205230
this.InstitutionNumber == input.InstitutionNumber ||
206231
(this.InstitutionNumber != null &&
@@ -221,6 +246,11 @@ public bool Equals(AccountNumberResponse input)
221246
(this.RoutingNumber != null &&
222247
this.RoutingNumber.Equals(input.RoutingNumber))
223248
) &&
249+
(
250+
this.SequenceNumber == input.SequenceNumber ||
251+
(this.SequenceNumber != null &&
252+
this.SequenceNumber.Equals(input.SequenceNumber))
253+
) &&
224254
(
225255
this.TransitNumber == input.TransitNumber ||
226256
(this.TransitNumber != null &&
@@ -258,6 +288,10 @@ public override int GetHashCode()
258288
{
259289
hashCode = (hashCode * 59) + this.LoanGuarantor.GetHashCode();
260290
}
291+
if (this.LoanReferenceNumber != null)
292+
{
293+
hashCode = (hashCode * 59) + this.LoanReferenceNumber.GetHashCode();
294+
}
261295
if (this.InstitutionNumber != null)
262296
{
263297
hashCode = (hashCode * 59) + this.InstitutionNumber.GetHashCode();
@@ -274,6 +308,10 @@ public override int GetHashCode()
274308
{
275309
hashCode = (hashCode * 59) + this.RoutingNumber.GetHashCode();
276310
}
311+
if (this.SequenceNumber != null)
312+
{
313+
hashCode = (hashCode * 59) + this.SequenceNumber.GetHashCode();
314+
}
277315
if (this.TransitNumber != null)
278316
{
279317
hashCode = (hashCode * 59) + this.TransitNumber.GetHashCode();

0 commit comments

Comments
 (0)