Skip to content

Commit 72495ae

Browse files
Merge pull request #718 from recurly/v3-v2021-02-25-15003716700
Generated Latest Changes for v2021-02-25
2 parents 77ab0ed + e3e0f1d commit 72495ae

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
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

recurly/resources.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ class Transaction(Resource):
788788
The values in this field will vary from gateway to gateway.
789789
id : str
790790
Transaction ID
791-
indicator : str
791+
initiator : str
792792
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`.
793793
invoice : InvoiceMini
794794
Invoice mini details
@@ -870,7 +870,7 @@ class Transaction(Resource):
870870
"gateway_response_time": float,
871871
"gateway_response_values": dict,
872872
"id": str,
873-
"indicator": str,
873+
"initiator": str,
874874
"invoice": "InvoiceMini",
875875
"ip_address_country": str,
876876
"ip_address_v4": str,

0 commit comments

Comments
 (0)