Skip to content

Commit 40f360c

Browse files
feat(spec): update OpenAPI to 1.105.0 — localized prices
Stainless-Generated-From: fe55f75
1 parent ec3f0be commit 40f360c

12 files changed

Lines changed: 216 additions & 24 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- x-release-please-start-version -->
44

55
[![Maven Central](https://img.shields.io/maven-central/v/com.dodopayments.api/dodo-payments-java)](https://central.sonatype.com/artifact/com.dodopayments.api/dodo-payments-java/1.103.0)
6-
[![javadoc](https://javadoc.io/badge2/com.dodopayments.api/dodo-payments-java/1.103.0/javadoc.svg)](https://javadoc.io/doc/com.dodopayments.api/dodo-payments-java/1.102.1)
6+
[![javadoc](https://javadoc.io/badge2/com.dodopayments.api/dodo-payments-java/1.103.0/javadoc.svg)](https://javadoc.io/doc/com.dodopayments.api/dodo-payments-java/1.103.0)
77

88
<!-- x-release-please-end -->
99

dodo-payments-java-core/src/main/kotlin/com/dodopayments/api/models/customers/CustomerRetrievePaymentMethodsResponse.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ private constructor(
251251
fun lastUsedAt(): Optional<OffsetDateTime> = lastUsedAt.getOptional("last_used_at")
252252

253253
/**
254-
* All supported payment method types (from Hyperswitch).
254+
* All supported payment method types.
255255
*
256256
* Used for disabled-payment-methods filtering and validation.
257257
*
@@ -433,7 +433,7 @@ private constructor(
433433
}
434434

435435
/**
436-
* All supported payment method types (from Hyperswitch).
436+
* All supported payment method types.
437437
*
438438
* Used for disabled-payment-methods filtering and validation.
439439
*/

dodo-payments-java-core/src/main/kotlin/com/dodopayments/api/models/disputes/DisputeListResponse.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ private constructor(
139139

140140
/**
141141
* Which processor handled the underlying payment. `stripe` / `adyen` for BYOP routes (the
142-
* merchant's own Hyperswitch connector); `dodo` for everything Dodo processed itself.
142+
* merchant's own payment connector); `dodo` for everything Dodo processed itself.
143143
*
144144
* @throws DodoPaymentsInvalidDataException if the JSON field has an unexpected type or is
145145
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -397,7 +397,7 @@ private constructor(
397397

398398
/**
399399
* Which processor handled the underlying payment. `stripe` / `adyen` for BYOP routes (the
400-
* merchant's own Hyperswitch connector); `dodo` for everything Dodo processed itself.
400+
* merchant's own payment connector); `dodo` for everything Dodo processed itself.
401401
*/
402402
fun paymentProvider(paymentProvider: PaymentProvider) =
403403
paymentProvider(JsonField.of(paymentProvider))
@@ -550,7 +550,7 @@ private constructor(
550550

551551
/**
552552
* Which processor handled the underlying payment. `stripe` / `adyen` for BYOP routes (the
553-
* merchant's own Hyperswitch connector); `dodo` for everything Dodo processed itself.
553+
* merchant's own payment connector); `dodo` for everything Dodo processed itself.
554554
*/
555555
class PaymentProvider @JsonCreator private constructor(private val value: JsonField<String>) :
556556
Enum {

dodo-payments-java-core/src/main/kotlin/com/dodopayments/api/models/disputes/GetDispute.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ private constructor(
170170

171171
/**
172172
* Which processor handled the underlying payment. `stripe` / `adyen` for BYOP routes (the
173-
* merchant's own Hyperswitch connector); `dodo` for everything Dodo processed itself.
173+
* merchant's own payment connector); `dodo` for everything Dodo processed itself.
174174
*
175175
* @throws DodoPaymentsInvalidDataException if the JSON field has an unexpected type or is
176176
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -509,7 +509,7 @@ private constructor(
509509

510510
/**
511511
* Which processor handled the underlying payment. `stripe` / `adyen` for BYOP routes (the
512-
* merchant's own Hyperswitch connector); `dodo` for everything Dodo processed itself.
512+
* merchant's own payment connector); `dodo` for everything Dodo processed itself.
513513
*/
514514
fun paymentProvider(paymentProvider: PaymentProvider) =
515515
paymentProvider(JsonField.of(paymentProvider))
@@ -704,7 +704,7 @@ private constructor(
704704

705705
/**
706706
* Which processor handled the underlying payment. `stripe` / `adyen` for BYOP routes (the
707-
* merchant's own Hyperswitch connector); `dodo` for everything Dodo processed itself.
707+
* merchant's own payment connector); `dodo` for everything Dodo processed itself.
708708
*/
709709
class PaymentProvider @JsonCreator private constructor(private val value: JsonField<String>) :
710710
Enum {

dodo-payments-java-core/src/main/kotlin/com/dodopayments/api/models/payments/Payment.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ private constructor(
297297

298298
/**
299299
* Which processor handled this payment. `stripe` / `adyen` for BYOP routes (the merchant's own
300-
* Hyperswitch connector); `dodo` for everything Dodo processed itself.
300+
* payment connector); `dodo` for everything Dodo processed itself.
301301
*
302302
* @throws DodoPaymentsInvalidDataException if the JSON field has an unexpected type or is
303303
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -1139,7 +1139,7 @@ private constructor(
11391139

11401140
/**
11411141
* Which processor handled this payment. `stripe` / `adyen` for BYOP routes (the merchant's
1142-
* own Hyperswitch connector); `dodo` for everything Dodo processed itself.
1142+
* own payment connector); `dodo` for everything Dodo processed itself.
11431143
*/
11441144
fun paymentProvider(paymentProvider: PaymentProvider) =
11451145
paymentProvider(JsonField.of(paymentProvider))
@@ -2017,7 +2017,7 @@ private constructor(
20172017

20182018
/**
20192019
* Which processor handled this payment. `stripe` / `adyen` for BYOP routes (the merchant's own
2020-
* Hyperswitch connector); `dodo` for everything Dodo processed itself.
2020+
* payment connector); `dodo` for everything Dodo processed itself.
20212021
*/
20222022
class PaymentProvider @JsonCreator private constructor(private val value: JsonField<String>) :
20232023
Enum {

dodo-payments-java-core/src/main/kotlin/com/dodopayments/api/models/payments/PaymentListResponse.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ private constructor(
173173

174174
/**
175175
* Which processor handled this payment. `stripe` / `adyen` for BYOP routes (the merchant's own
176-
* Hyperswitch connector); `dodo` for everything Dodo processed itself.
176+
* payment connector); `dodo` for everything Dodo processed itself.
177177
*
178178
* @throws DodoPaymentsInvalidDataException if the JSON field has an unexpected type or is
179179
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
@@ -604,7 +604,7 @@ private constructor(
604604

605605
/**
606606
* Which processor handled this payment. `stripe` / `adyen` for BYOP routes (the merchant's
607-
* own Hyperswitch connector); `dodo` for everything Dodo processed itself.
607+
* own payment connector); `dodo` for everything Dodo processed itself.
608608
*/
609609
fun paymentProvider(paymentProvider: PaymentProvider) =
610610
paymentProvider(JsonField.of(paymentProvider))
@@ -1048,7 +1048,7 @@ private constructor(
10481048

10491049
/**
10501050
* Which processor handled this payment. `stripe` / `adyen` for BYOP routes (the merchant's own
1051-
* Hyperswitch connector); `dodo` for everything Dodo processed itself.
1051+
* payment connector); `dodo` for everything Dodo processed itself.
10521052
*/
10531053
class PaymentProvider @JsonCreator private constructor(private val value: JsonField<String>) :
10541054
Enum {

dodo-payments-java-core/src/main/kotlin/com/dodopayments/api/models/payments/PaymentMethodTypes.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import com.dodopayments.api.errors.DodoPaymentsInvalidDataException
88
import com.fasterxml.jackson.annotation.JsonCreator
99

1010
/**
11-
* All supported payment method types (from Hyperswitch).
11+
* All supported payment method types.
1212
*
1313
* Used for disabled-payment-methods filtering and validation.
1414
*/

0 commit comments

Comments
 (0)