Skip to content

Commit 6db2948

Browse files
chore(internal): codegen related update (#448)
1 parent 97cc45e commit 6db2948

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -352,9 +352,9 @@ To set undocumented parameters, call the `putAdditionalHeader`, `putAdditionalQu
352352

353353
```java
354354
import com.tryfinch.api.core.JsonValue;
355-
import com.tryfinch.api.models.AccessTokenCreateParams;
355+
import com.tryfinch.api.models.HrisDirectoryListParams;
356356

357-
AccessTokenCreateParams params = AccessTokenCreateParams.builder()
357+
HrisDirectoryListParams params = HrisDirectoryListParams.builder()
358358
.putAdditionalHeader("Secret-Header", "42")
359359
.putAdditionalQueryParam("secret_query_param", "42")
360360
.putAdditionalBodyProperty("secretProperty", JsonValue.from("42"))
@@ -366,10 +366,9 @@ These can be accessed on the built object later using the `_additionalHeaders()`
366366
To set a documented parameter or property to an undocumented or not yet supported _value_, pass a `JsonValue` object to its setter:
367367

368368
```java
369-
import com.tryfinch.api.models.AccessTokenCreateParams;
370369
import com.tryfinch.api.models.HrisDirectoryListParams;
371370

372-
AccessTokenCreateParams params = HrisDirectoryListParams.builder().build();
371+
HrisDirectoryListParams params = HrisDirectoryListParams.builder().build();
373372
```
374373

375374
### Response properties

0 commit comments

Comments
 (0)