aboutsummaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce/IVippsEcommerceService.cs
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2021-04-18 23:26:06 +0200
committerivarlovlie <git@ivarlovlie.no>2021-04-18 23:26:06 +0200
commit84ccd406ed7584bcedb71dca68113a58e9072f82 (patch)
treeac4d3bcaf074d2c25beaa421b41859a815b66709 /src/IOL.VippsEcommerce/IVippsEcommerceService.cs
parent1426d12bc26bdfad06d8ac8118d43c3a066e303d (diff)
downloaddotnet-vipps-ecommerce-84ccd406ed7584bcedb71dca68113a58e9072f82.tar.xz
dotnet-vipps-ecommerce-84ccd406ed7584bcedb71dca68113a58e9072f82.zip
Rename VippsConfigurationKeyNames.cs internally, formatting
Diffstat (limited to 'src/IOL.VippsEcommerce/IVippsEcommerceService.cs')
-rw-r--r--src/IOL.VippsEcommerce/IVippsEcommerceService.cs40
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
+}