-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
130b6da
commit f041862
Showing
70 changed files
with
86 additions
and
216 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
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
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
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 |
---|---|---|
@@ -1,42 +1,40 @@ | ||
using System.Threading.Tasks; | ||
using Mollie.Api.Models; | ||
using Mollie.Api.Models.List; | ||
using Mollie.Api.Models.List.Response; | ||
using Mollie.Api.Models.Payment; | ||
using Mollie.Api.Models.PaymentMethod; | ||
using Mollie.Api.Models.PaymentMethod.Response; | ||
using Mollie.Api.Models.Url; | ||
|
||
namespace Mollie.Api.Client.Abstract { | ||
public interface IPaymentMethodClient : IBaseMollieClient { | ||
Task<PaymentMethodResponse> GetPaymentMethodAsync( | ||
string paymentMethod, | ||
bool includeIssuers = false, | ||
string? locale = null, | ||
bool includePricing = false, | ||
string? profileId = null, | ||
bool testmode = false, | ||
string paymentMethod, | ||
bool includeIssuers = false, | ||
string? locale = null, | ||
bool includePricing = false, | ||
string? profileId = null, | ||
bool testmode = false, | ||
string? currency = null); | ||
|
||
Task<ListResponse<PaymentMethodResponse>> GetAllPaymentMethodListAsync( | ||
string? locale = null, | ||
Amount? amount = null, | ||
bool includeIssuers = false, | ||
bool includePricing = false, | ||
string? locale = null, | ||
Amount? amount = null, | ||
bool includeIssuers = false, | ||
bool includePricing = false, | ||
string? profileId = null); | ||
|
||
Task<ListResponse<PaymentMethodResponse>> GetPaymentMethodListAsync( | ||
string? sequenceType = null, | ||
string? locale = null, | ||
Amount? amount = null, | ||
bool includeIssuers = false, | ||
bool includePricing = false, | ||
string? profileId = null, | ||
bool testmode = false, | ||
Resource? resource = null, | ||
string? billingCountry = null, | ||
string? sequenceType = null, | ||
string? locale = null, | ||
Amount? amount = null, | ||
bool includeIssuers = false, | ||
bool includePricing = false, | ||
string? profileId = null, | ||
bool testmode = false, | ||
Resource? resource = null, | ||
string? billingCountry = null, | ||
string? includeWallets = null); | ||
|
||
Task<PaymentMethodResponse> GetPaymentMethodAsync(UrlObjectLink<PaymentMethodResponse> url); | ||
} | ||
} | ||
} |
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
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
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.