Skip to content

Commit bb604fb

Browse files
chore: Rework event type generation to support spec splitting
1 parent e9f3ae9 commit bb604fb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 176
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-64e9dd6979ae45f1bb6e77b40e8244ee46673332112ebf33fe2f3a287467ce85.yml
3-
openapi_spec_hash: ce885445b66e95c5671ee72c01882d79
4-
config_hash: 07f0e0f3036a4a5825cee527bc46b0b6
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-6e800837b020104545778d65b7b16bae277e6667d98044e83f3bfeacebdb489b.yml
3+
openapi_spec_hash: 94788968e119e8665a1b0d4742565984
4+
config_hash: 2af43c32faa12490c9c9caa2ce62bccb

lithic-java-core/src/main/kotlin/com/lithic/api/models/PaymentCreateParams.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,7 @@ private constructor(
10971097
@JsonProperty("sec_code")
10981098
@ExcludeMissing
10991099
secCode: JsonField<SecCode> = JsonMissing.of(),
1100-
@JsonProperty("ach_hold_period")
1100+
@JsonProperty("ach_hold__period")
11011101
@ExcludeMissing
11021102
achHoldPeriod: JsonField<Long> = JsonMissing.of(),
11031103
@JsonProperty("addenda") @ExcludeMissing addenda: JsonField<String> = JsonMissing.of(),
@@ -1115,7 +1115,7 @@ private constructor(
11151115
* @throws LithicInvalidDataException if the JSON field has an unexpected type (e.g. if the
11161116
* server responded with an unexpected value).
11171117
*/
1118-
fun achHoldPeriod(): Optional<Long> = achHoldPeriod.getOptional("ach_hold_period")
1118+
fun achHoldPeriod(): Optional<Long> = achHoldPeriod.getOptional("ach_hold__period")
11191119

11201120
/**
11211121
* @throws LithicInvalidDataException if the JSON field has an unexpected type (e.g. if the
@@ -1136,7 +1136,7 @@ private constructor(
11361136
* Unlike [achHoldPeriod], this method doesn't throw if the JSON field has an unexpected
11371137
* type.
11381138
*/
1139-
@JsonProperty("ach_hold_period")
1139+
@JsonProperty("ach_hold__period")
11401140
@ExcludeMissing
11411141
fun _achHoldPeriod(): JsonField<Long> = achHoldPeriod
11421142

0 commit comments

Comments
 (0)