diff options
Diffstat (limited to 'src/IOL.VippsEcommerce/IVippsEcommerceService.cs')
| -rw-r--r-- | src/IOL.VippsEcommerce/IVippsEcommerceService.cs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/IOL.VippsEcommerce/IVippsEcommerceService.cs b/src/IOL.VippsEcommerce/IVippsEcommerceService.cs index e21514d..a93080b 100644 --- a/src/IOL.VippsEcommerce/IVippsEcommerceService.cs +++ b/src/IOL.VippsEcommerce/IVippsEcommerceService.cs @@ -10,43 +10,43 @@ namespace IOL.VippsEcommerce public VippsConfiguration Configuration { get; } public Task<VippsInitiatePaymentResponse> InitiatePaymentAsync( - VippsInitiatePaymentRequest payload, - CancellationToken ct = default + VippsInitiatePaymentRequest payload, + CancellationToken ct = default ); public Task<VippsPaymentActionResponse> CapturePaymentAsync( - string orderId, - VippsPaymentActionRequest payload, - CancellationToken ct = default + string orderId, + VippsPaymentActionRequest payload, + CancellationToken ct = default ); public Task<VippsPaymentActionResponse> CancelPaymentAsync( - string orderId, - VippsPaymentActionRequest payload, - CancellationToken ct = default + string orderId, + VippsPaymentActionRequest payload, + CancellationToken ct = default ); public Task<VippsPaymentActionResponse> AuthorizePaymentAsync( - string orderId, - VippsPaymentActionRequest payload, - CancellationToken ct = default + string orderId, + VippsPaymentActionRequest payload, + CancellationToken ct = default ); public Task<VippsPaymentActionResponse> RefundPaymentAsync( - string orderId, - VippsPaymentActionRequest payload, - CancellationToken ct = default + string orderId, + VippsPaymentActionRequest payload, + CancellationToken ct = default ); public Task<bool> ForceApprovePaymentAsync( - string orderId, - VippsForceApproveRequest payload, - CancellationToken ct = default + string orderId, + VippsForceApproveRequest payload, + CancellationToken ct = default ); public Task<VippsGetPaymentDetailsResponse> GetPaymentDetailsAsync( - string orderId, - CancellationToken ct = default + string orderId, + CancellationToken ct = default ); } -}
\ No newline at end of file +} |
