Skip to content

Commit

Permalink
Add gateway object to StorefrontTransaction (#1736)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikram-patah authored Jan 15, 2024
1 parent e8eaf9a commit 9577a26
Showing 1 changed file with 82 additions and 0 deletions.
82 changes: 82 additions & 0 deletions openapi/components/schemas/StorefrontTransaction.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,88 @@ properties:
x-basic: true
allOf:
- $ref: ./GatewayName.yaml
gateway:
type: object
description: Related gateway information.
readOnly: true
properties:
response:
description: Gateway response.
type: object
properties:
code:
description: Gateway response code.
type:
- 'string'
- 'null'
message:
description: Gateway response message.
type:
- 'string'
- 'null'
type:
description: Gateway response type.
type:
- 'string'
- 'null'
originalCode:
description: Raw, unmapped gateway response code.
type:
- 'string'
- 'null'
originalMessage:
description: Raw, unmapped gateway response message.
type:
- 'string'
- 'null'
avsResponse:
description: Gateway Address Verification System (AVS) response.
type: object
properties:
code:
description: Response code.
type:
- 'string'
- 'null'
message:
description: Response message.
type:
- 'string'
- 'null'
originalCode:
description: Raw response code.
type:
- 'string'
- 'null'
originalMessage:
description: Raw response message.
type:
- 'string'
- 'null'
cvvResponse:
description: Gateway Card Verification Value (CVV) response.
type: object
properties:
code:
description: Response code.
type:
- 'string'
- 'null'
message:
description: Response message.
type:
- 'string'
- 'null'
originalCode:
description: Raw response code.
type:
- 'string'
- 'null'
originalMessage:
description: Raw response message.
type:
- 'string'
- 'null'
customFields:
$ref: ./ResourceCustomFields.yaml
processedTime:
Expand Down

0 comments on commit 9577a26

Please sign in to comment.