Skip to content

Commit f95c95f

Browse files
author
Recurly Integrations
authored
Generated Latest Changes for v2021-02-25
1 parent 408f481 commit f95c95f

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

openapi/api.yaml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24279,8 +24279,8 @@ components:
2427924279
maxLength: 13
2428024280
account:
2428124281
"$ref": "#/components/schemas/AccountMini"
24282-
indicator:
24283-
"$ref": "#/components/schemas/TransactionIndicatorEnum"
24282+
initiator:
24283+
"$ref": "#/components/schemas/TransactionInitiatorEnum"
2428424284
invoice:
2428524285
"$ref": "#/components/schemas/InvoiceMini"
2428624286
merchant_reason_code:
@@ -24837,8 +24837,8 @@ components:
2483724837
allOf:
2483824838
- type: object
2483924839
properties:
24840-
indicator:
24841-
"$ref": "#/components/schemas/Transaction/properties/indicator"
24840+
initiator:
24841+
"$ref": "#/components/schemas/Transaction/properties/initiator"
2484224842
merchant_reason_code:
2484324843
"$ref": "#/components/schemas/Transaction/properties/merchant_reason_code"
2484424844
customer_notes:
@@ -26613,8 +26613,6 @@ components:
2661326613
Stripe Gateway or Ebanx UPI.
2661426614
enum:
2661526615
- stripe_confirmation_token
26616-
- stripe_customer
26617-
- stripe_payment_method
2661826616
- upi_vpa
2661926617
GatewayTransactionTypeEnum:
2662026618
type: string
@@ -26978,6 +26976,12 @@ components:
2697826976
- recurring
2697926977
- refunded_externally
2698026978
- transparent
26979+
- token_api
26980+
- api_force_collect
26981+
- api_sub_change
26982+
- api_verify_card
26983+
- refund_balance
26984+
- amazon_v2_ipn
2698126985
TransactionStatusEnum:
2698226986
type: string
2698326987
enum:
@@ -27464,7 +27468,7 @@ components:
2746427468
- service_extension
2746527469
- split_shipment
2746627470
- top_up
27467-
TransactionIndicatorEnum:
27471+
TransactionInitiatorEnum:
2746827472
type: string
2746927473
description: Must be sent for one-time transactions in order to provide context
2747027474
on which entity is submitting the transaction to ensure proper fraud checks

transaction.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type Transaction struct {
2929
Account AccountMini `json:"account,omitempty"`
3030

3131
// Must be sent for one-time transactions in order to provide context on which entity is submitting the transaction to ensure proper fraud checks are observed, such as 3DS. If the customer is in session, send `customer`. If this is a merchant initiated one-time transaction, send `merchant`.
32-
Indicator string `json:"indicator,omitempty"`
32+
Initiator string `json:"initiator,omitempty"`
3333

3434
// Invoice mini details
3535
Invoice InvoiceMini `json:"invoice,omitempty"`

0 commit comments

Comments
 (0)