-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BTA-13953: Migrate GHA Runner from MacOS-12 to Windows-2019 (#10)
Changes: Migrated GitHub Action Runner OS from MacOS-12 to Windows-2019 due to missing microsoft build dll. This library is required in the nuget release of transferzero dotnet sdk.
- Loading branch information
CodeBuild
committed
Jan 20, 2025
1 parent
f233403
commit 1edf0e2
Showing
9 changed files
with
350 additions
and
10 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
# TransferZero.Sdk.Model.PayoutMethodDetailsGHSMobile | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**FirstName** | **string** | | | ||
**LastName** | **string** | | | ||
**PhoneNumber** | **string** | | | ||
**MobileProvider** | [**PayoutMethodMobileProviderEnum**](PayoutMethodMobileProviderEnum.md) | | [optional] | ||
**TransferReason** | [**PayoutMethodTransferReasonEnum**](PayoutMethodTransferReasonEnum.md) | | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) | ||
[[Back to API list]](../README.md#documentation-for-api-endpoints) | ||
[[Back to README]](../README.md) | ||
|
112 changes: 112 additions & 0 deletions
112
src/TransferZero.Sdk.Test/Model/PayoutMethodDetailsGHSMobileTests.cs
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,112 @@ | ||
/* | ||
* TransferZero API | ||
* | ||
* Reference documentation for the TransferZero API V1 | ||
* | ||
* OpenAPI spec version: 1.0 | ||
* | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
||
|
||
using NUnit.Framework; | ||
|
||
using System; | ||
using System.Linq; | ||
using System.IO; | ||
using System.Collections.Generic; | ||
using TransferZero.Sdk.Api; | ||
using TransferZero.Sdk.Model; | ||
using TransferZero.Sdk.Client; | ||
using System.Reflection; | ||
using Newtonsoft.Json; | ||
|
||
namespace TransferZero.Sdk.Test | ||
{ | ||
/// <summary> | ||
/// Class for testing PayoutMethodDetailsGHSMobile | ||
/// </summary> | ||
/// <remarks> | ||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech). | ||
/// Please update the test case below to test the model. | ||
/// </remarks> | ||
[TestFixture] | ||
public class PayoutMethodDetailsGHSMobileTests | ||
{ | ||
// TODO uncomment below to declare an instance variable for PayoutMethodDetailsGHSMobile | ||
//private PayoutMethodDetailsGHSMobile instance; | ||
|
||
/// <summary> | ||
/// Setup before each test | ||
/// </summary> | ||
[SetUp] | ||
public void Init() | ||
{ | ||
// TODO uncomment below to create an instance of PayoutMethodDetailsGHSMobile | ||
//instance = new PayoutMethodDetailsGHSMobile(); | ||
} | ||
|
||
/// <summary> | ||
/// Clean up after each test | ||
/// </summary> | ||
[TearDown] | ||
public void Cleanup() | ||
{ | ||
|
||
} | ||
|
||
/// <summary> | ||
/// Test an instance of PayoutMethodDetailsGHSMobile | ||
/// </summary> | ||
[Test] | ||
public void PayoutMethodDetailsGHSMobileInstanceTest() | ||
{ | ||
// TODO uncomment below to test "IsInstanceOfType" PayoutMethodDetailsGHSMobile | ||
//Assert.IsInstanceOfType<PayoutMethodDetailsGHSMobile> (instance, "variable 'instance' is a PayoutMethodDetailsGHSMobile"); | ||
} | ||
|
||
|
||
/// <summary> | ||
/// Test the property 'FirstName' | ||
/// </summary> | ||
[Test] | ||
public void FirstNameTest() | ||
{ | ||
// TODO unit test for the property 'FirstName' | ||
} | ||
/// <summary> | ||
/// Test the property 'LastName' | ||
/// </summary> | ||
[Test] | ||
public void LastNameTest() | ||
{ | ||
// TODO unit test for the property 'LastName' | ||
} | ||
/// <summary> | ||
/// Test the property 'PhoneNumber' | ||
/// </summary> | ||
[Test] | ||
public void PhoneNumberTest() | ||
{ | ||
// TODO unit test for the property 'PhoneNumber' | ||
} | ||
/// <summary> | ||
/// Test the property 'MobileProvider' | ||
/// </summary> | ||
[Test] | ||
public void MobileProviderTest() | ||
{ | ||
// TODO unit test for the property 'MobileProvider' | ||
} | ||
/// <summary> | ||
/// Test the property 'TransferReason' | ||
/// </summary> | ||
[Test] | ||
public void TransferReasonTest() | ||
{ | ||
// TODO unit test for the property 'TransferReason' | ||
} | ||
|
||
} | ||
|
||
} |
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.