Skip to content

Commit e9f3ae9

Browse files
fix(api): Correct field name from ach_hold__period to ach_hold_period
1 parent 6122ecc commit e9f3ae9

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-c06c4d54858775fef1de57e33d471e997cb28fe0c925fd7b08ba45fdd335e938.yml
3-
openapi_spec_hash: 23745357b2171bcdfb5d30bfef1df48d
4-
config_hash: 9dddee5f7af579864599849cb28a0770
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

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)