Skip to content

Commit 2e6c34f

Browse files
feat(api): api update
1 parent 91a54b7 commit 2e6c34f

File tree

12 files changed

+3
-1498
lines changed

12 files changed

+3
-1498
lines changed

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 5
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser%2Fcas-parser-38618cc5c938e87eeacf4893d6a6ba4e6ef7da390e6283dc7b50b484a7b97165.yml
3-
openapi_spec_hash: b9e439ecee904ded01aa34efdee88856
1+
configured_endpoints: 4
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser%2Fcas-parser-7e6397bddc220d1a59b5e2c7e7c3ff38f1a6eb174f4e383e03bc49cf78c8c44f.yml
3+
openapi_spec_hash: cb852eeb4ce89c80f4246815cbe21f72
44
config_hash: cb5d75abef6264b5d86448caf7295afa

README.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -476,23 +476,6 @@ JsonValue complexValue = JsonValue.from(Map.of(
476476
));
477477
```
478478

479-
Normally a `Builder` class's `build` method will throw [`IllegalStateException`](https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalStateException.html) if any required parameter or property is unset.
480-
481-
To forcibly omit a required parameter or property, pass [`JsonMissing`](cas-parser-java-core/src/main/kotlin/com/cas_parser/api/core/Values.kt):
482-
483-
```java
484-
import com.cas_parser.api.core.JsonMissing;
485-
import com.cas_parser.api.models.casgenerator.CasGeneratorGenerateCasParams;
486-
import com.cas_parser.api.models.casparser.CasParserSmartParseParams;
487-
488-
CasParserSmartParseParams params = CasGeneratorGenerateCasParams.builder()
489-
.fromDate("2023-01-01")
490-
.password("Abcdefghi12$")
491-
.toDate("2023-12-31")
492-
.email(JsonMissing.of())
493-
.build();
494-
```
495-
496479
### Response properties
497480

498481
To access undocumented response properties, call the `_additionalProperties()` method:

0 commit comments

Comments
 (0)