From ee5b5ba99ae98839f332e3c0097bd4f5d85e9483 Mon Sep 17 00:00:00 2001 From: dara Date: Thu, 2 May 2024 10:36:27 -0400 Subject: [PATCH] Update MobilePay credentials (#1883) * Update MobilePay credentials * Update openapi/components/schemas/GatewayAccountConfig/MobilePay.yaml Co-authored-by: Chris <85164331+noon-dawg@users.noreply.github.com> --------- Co-authored-by: Chris <85164331+noon-dawg@users.noreply.github.com> --- .../schemas/GatewayAccountConfig/MobilePay.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/openapi/components/schemas/GatewayAccountConfig/MobilePay.yaml b/openapi/components/schemas/GatewayAccountConfig/MobilePay.yaml index 11832161d0..1fbd720a91 100644 --- a/openapi/components/schemas/GatewayAccountConfig/MobilePay.yaml +++ b/openapi/components/schemas/GatewayAccountConfig/MobilePay.yaml @@ -8,12 +8,12 @@ allOf: credentials: type: object properties: - providerId: + merchantSerialNumber: type: string - description: ID of the MobilePay provider. - merchantVat: + description: Serial number of the MobilePay merchant. + subscriptionKey: type: string - description: VAT number of the MobilePay merchant. + description: Subscription key of the MobilePay merchant. clientId: type: string description: ID of the MobilePay client. @@ -23,7 +23,7 @@ allOf: format: password writeOnly: true required: - - providerId - - merchantVat + - merchantSerialNumber + - subscriptionKey - clientId - clientSecret