Skip to content

Commit

Permalink
spec release
Browse files Browse the repository at this point in the history
  • Loading branch information
Adyen Automation committed Apr 17, 2024
1 parent 1e890ff commit ae18c9f
Show file tree
Hide file tree
Showing 4 changed files with 132 additions and 0 deletions.
37 changes: 37 additions & 0 deletions json/ManagementService-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -15182,6 +15182,33 @@
},
"type" : "object"
},
"AmexInfo" : {
"additionalProperties" : false,
"properties" : {
"midNumber" : {
"description" : "MID number. Format: 10 numeric characters",
"type" : "string"
},
"reuseMidNumber" : {
"default" : false,
"description" : "Indicates whether the Amex Merchant ID is reused from previously setup payment methods",
"type" : "boolean"
},
"serviceLevel" : {
"description" : "Service level",
"enum" : [
"noContract",
"gatewayContract",
"paymentDesignatorContract"
],
"type" : "string"
}
},
"required" : [
"serviceLevel"
],
"type" : "object"
},
"Amount" : {
"additionalProperties" : false,
"properties" : {
Expand Down Expand Up @@ -17804,6 +17831,10 @@
"description" : "Indicates whether receiving payments is allowed. This value is set to **true** by Adyen after screening your merchant account.",
"type" : "boolean"
},
"amex" : {
"description" : "Amex details.",
"$ref" : "#/components/schemas/AmexInfo"
},
"applePay" : {
"description" : "Apple Pay details.",
"$ref" : "#/components/schemas/ApplePayInfo"
Expand Down Expand Up @@ -18003,6 +18034,7 @@
"blik",
"cartebancaire",
"clearpay",
"clicktopay",
"cup",
"diners",
"directdebit_GB",
Expand Down Expand Up @@ -18062,6 +18094,10 @@
"description" : "Afterpay Touch details.",
"$ref" : "#/components/schemas/AfterpayTouchInfo"
},
"amex" : {
"description" : "Amex details.",
"$ref" : "#/components/schemas/AmexInfo"
},
"applePay" : {
"description" : "Apple Pay details.",
"$ref" : "#/components/schemas/ApplePayInfo"
Expand Down Expand Up @@ -18206,6 +18242,7 @@
"blik",
"cartebancaire",
"clearpay",
"clicktopay",
"cup",
"diners",
"directdebit_GB",
Expand Down
37 changes: 37 additions & 0 deletions json/ManagementService-v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -15476,6 +15476,33 @@
},
"type" : "object"
},
"AmexInfo" : {
"additionalProperties" : false,
"properties" : {
"midNumber" : {
"description" : "MID number. Format: 10 numeric characters",
"type" : "string"
},
"reuseMidNumber" : {
"default" : false,
"description" : "Indicates whether the Amex Merchant ID is reused from previously setup payment methods",
"type" : "boolean"
},
"serviceLevel" : {
"description" : "Service level",
"enum" : [
"noContract",
"gatewayContract",
"paymentDesignatorContract"
],
"type" : "string"
}
},
"required" : [
"serviceLevel"
],
"type" : "object"
},
"Amount" : {
"additionalProperties" : false,
"properties" : {
Expand Down Expand Up @@ -18093,6 +18120,10 @@
"description" : "Indicates whether receiving payments is allowed. This value is set to **true** by Adyen after screening your merchant account.",
"type" : "boolean"
},
"amex" : {
"description" : "Amex details.",
"$ref" : "#/components/schemas/AmexInfo"
},
"applePay" : {
"description" : "Apple Pay details.",
"$ref" : "#/components/schemas/ApplePayInfo"
Expand Down Expand Up @@ -18296,6 +18327,7 @@
"blik",
"cartebancaire",
"clearpay",
"clicktopay",
"cup",
"diners",
"directdebit_GB",
Expand Down Expand Up @@ -18355,6 +18387,10 @@
"description" : "Afterpay Touch details.",
"$ref" : "#/components/schemas/AfterpayTouchInfo"
},
"amex" : {
"description" : "Amex details.",
"$ref" : "#/components/schemas/AmexInfo"
},
"applePay" : {
"description" : "Apple Pay details.",
"$ref" : "#/components/schemas/ApplePayInfo"
Expand Down Expand Up @@ -18503,6 +18539,7 @@
"blik",
"cartebancaire",
"clearpay",
"clicktopay",
"cup",
"diners",
"directdebit_GB",
Expand Down
29 changes: 29 additions & 0 deletions yaml/ManagementService-v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9949,6 +9949,27 @@ components:
$ref: '#/components/schemas/AllowedOrigin'
type: array
type: object
AmexInfo:
additionalProperties: false
properties:
midNumber:
description: 'MID number. Format: 10 numeric characters'
type: string
reuseMidNumber:
default: false
description: Indicates whether the Amex Merchant ID is reused from previously
setup payment methods
type: boolean
serviceLevel:
description: Service level
enum:
- noContract
- gatewayContract
- paymentDesignatorContract
type: string
required:
- serviceLevel
type: object
Amount:
additionalProperties: false
properties:
Expand Down Expand Up @@ -12329,6 +12350,9 @@ components:
description: Indicates whether receiving payments is allowed. This value
is set to **true** by Adyen after screening your merchant account.
type: boolean
amex:
description: Amex details.
$ref: '#/components/schemas/AmexInfo'
applePay:
description: Apple Pay details.
$ref: '#/components/schemas/ApplePayInfo'
Expand Down Expand Up @@ -12496,6 +12520,7 @@ components:
- blik
- cartebancaire
- clearpay
- clicktopay
- cup
- diners
- directdebit_GB
Expand Down Expand Up @@ -12548,6 +12573,9 @@ components:
afterpayTouch:
description: Afterpay Touch details.
$ref: '#/components/schemas/AfterpayTouchInfo'
amex:
description: Amex details.
$ref: '#/components/schemas/AmexInfo'
applePay:
description: Apple Pay details.
$ref: '#/components/schemas/ApplePayInfo'
Expand Down Expand Up @@ -12670,6 +12698,7 @@ components:
- blik
- cartebancaire
- clearpay
- clicktopay
- cup
- diners
- directdebit_GB
Expand Down
29 changes: 29 additions & 0 deletions yaml/ManagementService-v3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10136,6 +10136,27 @@ components:
$ref: '#/components/schemas/AllowedOrigin'
type: array
type: object
AmexInfo:
additionalProperties: false
properties:
midNumber:
description: 'MID number. Format: 10 numeric characters'
type: string
reuseMidNumber:
default: false
description: Indicates whether the Amex Merchant ID is reused from previously
setup payment methods
type: boolean
serviceLevel:
description: Service level
enum:
- noContract
- gatewayContract
- paymentDesignatorContract
type: string
required:
- serviceLevel
type: object
Amount:
additionalProperties: false
properties:
Expand Down Expand Up @@ -12514,6 +12535,9 @@ components:
description: Indicates whether receiving payments is allowed. This value
is set to **true** by Adyen after screening your merchant account.
type: boolean
amex:
description: Amex details.
$ref: '#/components/schemas/AmexInfo'
applePay:
description: Apple Pay details.
$ref: '#/components/schemas/ApplePayInfo'
Expand Down Expand Up @@ -12684,6 +12708,7 @@ components:
- blik
- cartebancaire
- clearpay
- clicktopay
- cup
- diners
- directdebit_GB
Expand Down Expand Up @@ -12736,6 +12761,9 @@ components:
afterpayTouch:
description: Afterpay Touch details.
$ref: '#/components/schemas/AfterpayTouchInfo'
amex:
description: Amex details.
$ref: '#/components/schemas/AmexInfo'
applePay:
description: Apple Pay details.
$ref: '#/components/schemas/ApplePayInfo'
Expand Down Expand Up @@ -12861,6 +12889,7 @@ components:
- blik
- cartebancaire
- clearpay
- clicktopay
- cup
- diners
- directdebit_GB
Expand Down

0 comments on commit ae18c9f

Please sign in to comment.