File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -909,6 +909,9 @@ public enum InvoiceStateQueryParam
909909 [ EnumMember ( Value = "pending" ) ]
910910 Pending ,
911911
912+ [ EnumMember ( Value = "processing" ) ]
913+ Processing ,
914+
912915 [ EnumMember ( Value = "past_due" ) ]
913916 PastDue ,
914917
@@ -918,6 +921,15 @@ public enum InvoiceStateQueryParam
918921 [ EnumMember ( Value = "failed" ) ]
919922 Failed ,
920923
924+ [ EnumMember ( Value = "open" ) ]
925+ Open ,
926+
927+ [ EnumMember ( Value = "closed" ) ]
928+ Closed ,
929+
930+ [ EnumMember ( Value = "voided" ) ]
931+ Voided ,
932+
921933 } ;
922934
923935 public enum CollectionMethod
@@ -1665,6 +1677,9 @@ public enum PaymentMethod
16651677 [ EnumMember ( Value = "klarna" ) ]
16661678 Klarna ,
16671679
1680+ [ EnumMember ( Value = "braintree_google_pay" ) ]
1681+ BraintreeGooglePay ,
1682+
16681683 } ;
16691684
16701685 public enum CardType
Original file line number Diff line number Diff line change @@ -25243,6 +25243,15 @@ components:
2524325243 "$ref": "#/components/schemas/Transaction/properties/initiator"
2524425244 merchant_reason_code:
2524525245 "$ref": "#/components/schemas/Transaction/properties/merchant_reason_code"
25246+ skip_gateway_fraud:
25247+ type: boolean
25248+ title: Skip Gateway Fraud
25249+ description: When set to `true`, instructs the payment gateway to
25250+ skip fraud checks for this transaction. This is useful for recurring
25251+ transactions where fraud checks have already been performed on the
25252+ initial transaction. Note that not all gateways support this feature.
25253+ For Stripe, this skips Radar fraud rules; for Adyen, this skips
25254+ Risk checks.
2524625255 customer_notes:
2524725256 type: string
2524825257 title: Customer notes
@@ -27241,9 +27250,13 @@ components:
2724127250 default: all
2724227251 enum:
2724327252 - pending
27253+ - processing
2724427254 - past_due
2724527255 - paid
2724627256 - failed
27257+ - open
27258+ - closed
27259+ - voided
2724727260 CollectionMethodEnum:
2724827261 type: string
2724927262 enum:
@@ -27551,6 +27564,7 @@ components:
2755127564 - pix_automatico
2755227565 - mercadopago
2755327566 - klarna
27567+ - braintree_google_pay
2755427568 CardTypeEnum:
2755527569 type: string
2755627570 enum:
You can’t perform that action at this time.
0 commit comments