From 6189892f7652696d15ee8cc81283ae2fab855182 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Mon, 20 May 2024 13:31:41 -0700 Subject: [PATCH 1/7] Updates lowercase java types to uppercase kotlin types --- .../components/schemas/Schema_doc.hbs | 2 +- .../schemas/docschema_fields_field.hbs | 16 +++---- .../components/schemas/docschema_io_types.hbs | 46 +++++++++---------- .../schemas/helpers/payload_renderer.hbs | 2 +- 4 files changed, 33 insertions(+), 33 deletions(-) diff --git a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs index 6a76c303d1f..b17d2b42094 100644 --- a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs +++ b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs @@ -252,7 +252,7 @@ A class that stores String enum values public enum Integer{{../jsonPathPiece.pascalCase}}
extends `Enum` -A class that stores Integer enum values +A class that stores Int enum values {{else}} {{#eq @key "Long"}} {{> src/main/kotlin/packagename/components/_helper_header_from_identifier_pieces headerSize=(join headerSize "#" "") identifierPieces=(append identifierPieces (join "Long" ../jsonPathPiece.pascalCase "") ) }} diff --git a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/docschema_fields_field.hbs b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/docschema_fields_field.hbs index f3d44571e5a..0a2a27a80b5 100644 --- a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/docschema_fields_field.hbs +++ b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/docschema_fields_field.hbs @@ -29,22 +29,22 @@ | BigDecimal | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_multipleOf }} | {{/neq}} {{#neq maxItems null}} -| Integer | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_maxItems }} | +| Int | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_maxItems }} | {{/neq}} {{#neq minItems null}} -| Integer | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_minItems }} | +| Int | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_minItems }} | {{/neq}} {{#neq maxLength null }} -| Integer | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_maxLength }} | +| Int | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_maxLength }} | {{/neq}} {{#neq minLength null }} -| Integer | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_minLength }} | +| Int | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_minLength }} | {{/neq}} {{#neq maxProperties null}} -| Integer | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_maxProperties }} | +| Int | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_maxProperties }} | {{/neq}} {{#neq minProperties null}} -| Integer | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_minProperties }} | +| Int | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_minProperties }} | {{/neq}} {{#if additionalProperties}} | Class | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_additionalProperties }} | @@ -77,10 +77,10 @@ | Class | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_contains }} | {{/if}} {{#neq maxContains null}} -| Integer | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_maxContains }} | +| Int | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_maxContains }} | {{/neq}} {{#neq minContains null}} -| Integer | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_minContains }} | +| Int | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_minContains }} | {{/neq}} {{#if propertyNames}} | Class | {{> src/main/kotlin/packagename/components/schemas/SchemaClass/_propertyNames }} | diff --git a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/docschema_io_types.hbs b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/docschema_io_types.hbs index ad6957e8a82..4b149d1e2ee 100644 --- a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/docschema_io_types.hbs +++ b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/docschema_io_types.hbs @@ -7,19 +7,19 @@ {{#and enumInfo enumInfo.typeToValues.null}} | Nothing? | validate(arg: [Null{{enumInfo.jsonPathPiece.pascalCase}}](#null{{enumInfo.jsonPathPiece.kebabCase}}), configuration: SchemaConfiguration) | {{/and}} -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | {{#and enumInfo enumInfo.typeToValues.boolean}} -| boolean | validate(arg: [Boolean{{enumInfo.jsonPathPiece.pascalCase}}](#boolean{{enumInfo.jsonPathPiece.kebabCase}}), configuration: SchemaConfiguration) | +| Boolean | validate(arg: [Boolean{{enumInfo.jsonPathPiece.pascalCase}}](#boolean{{enumInfo.jsonPathPiece.kebabCase}}), configuration: SchemaConfiguration) | {{/and}} {{#if mapOutputJsonPathPiece }} -| [{{mapOutputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapOutputJsonPathPiece) }}) | validate(arg: [Map<?, ?>](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapInputJsonPathPiece) }}), configuration: SchemaConfiguration) | +| [{{mapOutputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapOutputJsonPathPiece) }}) | validate(arg: [Map<*, *>](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapInputJsonPathPiece) }}), configuration: SchemaConfiguration) | {{else}} -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | {{/if}} {{#if arrayOutputJsonPathPiece}} | [{{arrayOutputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces arrayOutputJsonPathPiece) }}) | validate(arg: [List<*>](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces arrayInputJsonPathPiece) }}), configuration: SchemaConfiguration) | @@ -29,17 +29,17 @@ | [{{jsonPathPiece.pascalCase}}BoxedString](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedstring" ""))}}) | validateAndBox(String, configuration: SchemaConfiguration) | | [{{jsonPathPiece.pascalCase}}BoxedVoid](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedvoid" ""))}}) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [{{jsonPathPiece.pascalCase}}BoxedNumber](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxednumber" ""))}}) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [{{jsonPathPiece.pascalCase}}BoxedBoolean](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedboolean" ""))}}) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [{{jsonPathPiece.pascalCase}}BoxedMap](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedmap" ""))}}) | validateAndBox({{#if mapInputJsonPathPiece}}[Map<?, ?>](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapInputJsonPathPiece) }}){{else}}Map<?, ?>{{/if}}, configuration: SchemaConfiguration) | +| [{{jsonPathPiece.pascalCase}}BoxedBoolean](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedboolean" ""))}}) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [{{jsonPathPiece.pascalCase}}BoxedMap](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedmap" ""))}}) | validateAndBox({{#if mapInputJsonPathPiece}}[Map<*, *>](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapInputJsonPathPiece) }}){{else}}Map<*, *>{{/if}}, configuration: SchemaConfiguration) | | [{{jsonPathPiece.pascalCase}}BoxedList](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedlist" ""))}}) | validateAndBox({{#if arrayInputJsonPathPiece}}[List<*>](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces arrayInputJsonPathPiece) }}){{else}}List<*>{{/if}}, configuration: SchemaConfiguration) | {{else}} {{#each types}} {{#eq this "boolean"}} -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | {{#and ../enumInfo enumInfo.typeToValues.boolean}} -| boolean | validate(arg: [Boolean{{../enumInfo.jsonPathPiece.pascalCase}}](#boolean{{../enumInfo.jsonPathPiece.kebabCase}}), configuration: SchemaConfiguration) | +| Boolean | validate(arg: [Boolean{{../enumInfo.jsonPathPiece.pascalCase}}](#boolean{{../enumInfo.jsonPathPiece.kebabCase}}), configuration: SchemaConfiguration) | {{/and}} -| [{{jsonPathPiece.pascalCase}}BoxedBoolean](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedboolean" ""))}}) | validateAndBox(boolean, configuration: SchemaConfiguration) | +| [{{jsonPathPiece.pascalCase}}BoxedBoolean](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedboolean" ""))}}) | validateAndBox(Boolean, configuration: SchemaConfiguration) | {{else}} {{#eq this "null"}} | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | @@ -65,16 +65,16 @@ | Number | validate(arg: Number, configuration: SchemaConfiguration) | {{else}} {{#eq ../format "float"}} -| float | validate(arg: float, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | {{else}} {{#eq ../format "double"}} -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | {{else}} {{#eq ../format "int32"}} -| int | validate(arg: int, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | {{else}} {{#eq ../format "int64"}} -| long | validate(arg: long, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | {{/eq}} {{/eq}} {{/eq}} @@ -84,12 +84,12 @@ {{else}} {{#eq this "integer"}} {{#eq ../format null}} -| long | validate(arg: long, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | {{else}} {{#eq ../format "int32"}} -| int | validate(arg: int, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | {{else}} -| long | validate(arg: long, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | {{/eq}} {{/eq}} | [{{jsonPathPiece.pascalCase}}BoxedNumber](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxednumber" ""))}}) | validateAndBox(Number, configuration: SchemaConfiguration) | @@ -104,11 +104,11 @@ {{else}} {{#eq this "object"}} {{#if ../mapOutputJsonPathPiece}} -| [{{../mapOutputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces ../mapOutputJsonPathPiece) }}) | validate(arg: [Map<?, ?>](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces ../mapInputJsonPathPiece) }}), configuration: SchemaConfiguration) | +| [{{../mapOutputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces ../mapOutputJsonPathPiece) }}) | validate(arg: [Map<*, *>](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces ../mapInputJsonPathPiece) }}), configuration: SchemaConfiguration) | {{else}} -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | {{/if}} -| [{{jsonPathPiece.pascalCase}}BoxedMap](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedmap" ""))}}) | validateAndBox({{#if mapInputJsonPathPiece}}[Map<?, ?>](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapInputJsonPathPiece) }}){{else}}Map<?, ?>{{/if}}, configuration: SchemaConfiguration) | +| [{{jsonPathPiece.pascalCase}}BoxedMap](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedmap" ""))}}) | validateAndBox({{#if mapInputJsonPathPiece}}[Map<*, *>](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapInputJsonPathPiece) }}){{else}}Map<*, *>{{/if}}, configuration: SchemaConfiguration) | {{/eq}} {{/eq}} {{/eq}} diff --git a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/helpers/payload_renderer.hbs b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/helpers/payload_renderer.hbs index 1ab042bffce..409b4df628c 100644 --- a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/helpers/payload_renderer.hbs +++ b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/helpers/payload_renderer.hbs @@ -77,7 +77,7 @@ listOf{{#eq value.size 0}}{{/eq}}( {{#eq javaType "Double"}} {{value}}{{endChar}} {{else}} -{{value}}{{endChar}}{{! Integer }} +{{value}}{{endChar}}{{! Int }} {{/eq}} {{/eq}} {{/eq}} From fd1258979d1deaecc478a4e5b8471f936c6e5553 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Mon, 20 May 2024 14:03:38 -0700 Subject: [PATCH 2/7] kotlin samples regen --- ...pertiesAllowsASchemaWhichShouldValidate.md | 30 ++--- ...AdditionalpropertiesAreAllowedByDefault.md | 16 +-- .../AdditionalpropertiesCanExistByItself.md | 30 ++--- ...nalpropertiesShouldNotLookInApplicators.md | 32 ++--- .../kotlin/docs/components/schemas/Allof.md | 48 ++++---- .../schemas/AllofCombinedWithAnyofOneof.md | 64 +++++----- .../components/schemas/AllofSimpleTypes.md | 48 ++++---- .../components/schemas/AllofWithBaseSchema.md | 48 ++++---- .../schemas/AllofWithOneEmptySchema.md | 16 +-- .../schemas/AllofWithTheFirstEmptySchema.md | 16 +-- .../schemas/AllofWithTheLastEmptySchema.md | 16 +-- .../schemas/AllofWithTwoEmptySchemas.md | 16 +-- .../kotlin/docs/components/schemas/Anyof.md | 32 ++--- .../components/schemas/AnyofComplexTypes.md | 48 ++++---- .../components/schemas/AnyofWithBaseSchema.md | 60 +++++----- .../schemas/AnyofWithOneEmptySchema.md | 16 +-- .../schemas/ArrayTypeMatchesArrays.md | 26 ++-- .../kotlin/docs/components/schemas/ByInt.md | 16 +-- .../docs/components/schemas/ByNumber.md | 16 +-- .../docs/components/schemas/BySmallNumber.md | 16 +-- .../docs/components/schemas/DateTimeFormat.md | 16 +-- .../docs/components/schemas/EmailFormat.md | 16 +-- .../schemas/EnumWith0DoesNotMatchFalse.md | 26 ++-- .../schemas/EnumWith1DoesNotMatchTrue.md | 26 ++-- .../schemas/EnumWithEscapedCharacters.md | 24 ++-- .../schemas/EnumWithFalseDoesNotMatch0.md | 30 ++--- .../schemas/EnumWithTrueDoesNotMatch1.md | 30 ++--- .../components/schemas/EnumsInProperties.md | 78 ++++++------ .../components/schemas/ForbiddenProperty.md | 16 +-- .../docs/components/schemas/HostnameFormat.md | 16 +-- ...ShouldNotRaiseErrorWhenFloatDivisionInf.md | 26 ++-- .../schemas/InvalidStringValueForDefault.md | 42 +++---- .../docs/components/schemas/Ipv4Format.md | 16 +-- .../docs/components/schemas/Ipv6Format.md | 16 +-- .../components/schemas/JsonPointerFormat.md | 16 +-- .../components/schemas/MaximumValidation.md | 16 +-- .../MaximumValidationWithUnsignedInteger.md | 16 +-- .../components/schemas/MaxitemsValidation.md | 18 +-- .../components/schemas/MaxlengthValidation.md | 18 +-- .../Maxproperties0MeansTheObjectIsEmpty.md | 18 +-- .../schemas/MaxpropertiesValidation.md | 18 +-- .../components/schemas/MinimumValidation.md | 16 +-- .../MinimumValidationWithSignedInteger.md | 16 +-- .../components/schemas/MinitemsValidation.md | 18 +-- .../components/schemas/MinlengthValidation.md | 18 +-- .../schemas/MinpropertiesValidation.md | 18 +-- .../NestedAllofToCheckValidationSemantics.md | 32 ++--- .../NestedAnyofToCheckValidationSemantics.md | 32 ++--- .../docs/components/schemas/NestedItems.md | 104 +++++++--------- .../NestedOneofToCheckValidationSemantics.md | 32 ++--- .../kotlin/docs/components/schemas/Not.md | 16 +-- .../schemas/NotMoreComplexSchema.md | 46 ++++--- .../schemas/NulCharactersInStrings.md | 24 ++-- .../schemas/ObjectPropertiesValidation.md | 16 +-- .../kotlin/docs/components/schemas/Oneof.md | 32 ++--- .../components/schemas/OneofComplexTypes.md | 48 ++++---- .../components/schemas/OneofWithBaseSchema.md | 60 +++++----- .../schemas/OneofWithEmptySchema.md | 16 +-- .../components/schemas/OneofWithRequired.md | 36 +++--- .../schemas/PatternIsNotAnchored.md | 16 +-- .../components/schemas/PatternValidation.md | 16 +-- .../PropertiesWithEscapedCharacters.md | 16 +-- .../PropertyNamedRefThatIsNotAReference.md | 16 +-- .../schemas/RefInAdditionalproperties.md | 30 ++--- .../docs/components/schemas/RefInAllof.md | 16 +-- .../docs/components/schemas/RefInAnyof.md | 16 +-- .../docs/components/schemas/RefInItems.md | 26 ++-- .../docs/components/schemas/RefInNot.md | 16 +-- .../docs/components/schemas/RefInOneof.md | 16 +-- .../docs/components/schemas/RefInProperty.md | 16 +-- .../schemas/RequiredDefaultValidation.md | 16 +-- .../components/schemas/RequiredValidation.md | 16 +-- .../schemas/RequiredWithEmptyArray.md | 16 +-- .../schemas/RequiredWithEscapedCharacters.md | 16 +-- .../schemas/SimpleEnumValidation.md | 26 ++-- ...DoesNotDoAnythingIfThePropertyIsMissing.md | 54 ++++----- .../schemas/UniqueitemsFalseValidation.md | 16 +-- .../schemas/UniqueitemsValidation.md | 16 +-- .../docs/components/schemas/UriFormat.md | 16 +-- .../components/schemas/UriReferenceFormat.md | 16 +-- .../components/schemas/UriTemplateFormat.md | 16 +-- .../schemas/ASchemaGivenForPrefixitems.md | 16 +-- .../AdditionalItemsAreAllowedByDefault.md | 16 +-- ...AdditionalpropertiesAreAllowedByDefault.md | 16 +-- .../AdditionalpropertiesCanExistByItself.md | 30 ++--- ...ionalpropertiesDoesNotLookInApplicators.md | 32 ++--- ...pertiesWithNullValuedInstanceProperties.md | 30 ++--- .../schemas/AdditionalpropertiesWithSchema.md | 30 ++--- .../kotlin/docs/components/schemas/Allof.md | 48 ++++---- .../schemas/AllofCombinedWithAnyofOneof.md | 64 +++++----- .../components/schemas/AllofSimpleTypes.md | 48 ++++---- .../components/schemas/AllofWithBaseSchema.md | 48 ++++---- .../schemas/AllofWithOneEmptySchema.md | 16 +-- .../schemas/AllofWithTheFirstEmptySchema.md | 16 +-- .../schemas/AllofWithTheLastEmptySchema.md | 16 +-- .../schemas/AllofWithTwoEmptySchemas.md | 16 +-- .../kotlin/docs/components/schemas/Anyof.md | 32 ++--- .../components/schemas/AnyofComplexTypes.md | 48 ++++---- .../components/schemas/AnyofWithBaseSchema.md | 60 +++++----- .../schemas/AnyofWithOneEmptySchema.md | 16 +-- .../kotlin/docs/components/schemas/ByInt.md | 16 +-- .../docs/components/schemas/ByNumber.md | 16 +-- .../docs/components/schemas/BySmallNumber.md | 16 +-- .../schemas/ConstNulCharactersInStrings.md | 16 +-- .../schemas/ContainsKeywordValidation.md | 32 ++--- .../ContainsWithNullInstanceElements.md | 16 +-- .../docs/components/schemas/DateFormat.md | 16 +-- .../docs/components/schemas/DateTimeFormat.md | 16 +-- ...chemasDependenciesWithEscapedCharacters.md | 50 ++++---- ...sDependentSubschemaIncompatibleWithRoot.md | 46 ++++--- .../DependentSchemasSingleDependency.md | 32 ++--- .../docs/components/schemas/DurationFormat.md | 16 +-- .../docs/components/schemas/EmailFormat.md | 16 +-- .../components/schemas/EmptyDependents.md | 16 +-- .../schemas/EnumWith0DoesNotMatchFalse.md | 26 ++-- .../schemas/EnumWith1DoesNotMatchTrue.md | 26 ++-- .../schemas/EnumWithEscapedCharacters.md | 24 ++-- .../schemas/EnumWithFalseDoesNotMatch0.md | 30 ++--- .../schemas/EnumWithTrueDoesNotMatch1.md | 30 ++--- .../components/schemas/EnumsInProperties.md | 78 ++++++------ .../schemas/ExclusivemaximumValidation.md | 16 +-- .../schemas/ExclusiveminimumValidation.md | 16 +-- .../components/schemas/FloatDivisionInf.md | 26 ++-- .../components/schemas/ForbiddenProperty.md | 32 ++--- .../docs/components/schemas/HostnameFormat.md | 16 +-- .../docs/components/schemas/IdnEmailFormat.md | 16 +-- .../components/schemas/IdnHostnameFormat.md | 16 +-- .../schemas/IfAndElseWithoutThen.md | 48 ++++---- .../schemas/IfAndThenWithoutElse.md | 48 ++++---- ...WhenSerializedKeywordProcessingSequence.md | 66 +++++------ .../components/schemas/IgnoreElseWithoutIf.md | 32 ++--- .../schemas/IgnoreIfWithoutThenOrElse.md | 32 ++--- .../components/schemas/IgnoreThenWithoutIf.md | 32 ++--- .../docs/components/schemas/Ipv4Format.md | 16 +-- .../docs/components/schemas/Ipv6Format.md | 16 +-- .../docs/components/schemas/IriFormat.md | 16 +-- .../components/schemas/IriReferenceFormat.md | 16 +-- .../docs/components/schemas/ItemsContains.md | 58 +++++---- .../ItemsDoesNotLookInApplicatorsValidCase.md | 42 +++---- .../schemas/ItemsWithNullInstanceElements.md | 26 ++-- .../components/schemas/JsonPointerFormat.md | 16 +-- .../MaxcontainsWithoutContainsIsIgnored.md | 18 +-- .../components/schemas/MaximumValidation.md | 16 +-- .../MaximumValidationWithUnsignedInteger.md | 16 +-- .../components/schemas/MaxitemsValidation.md | 18 +-- .../components/schemas/MaxlengthValidation.md | 18 +-- .../Maxproperties0MeansTheObjectIsEmpty.md | 18 +-- .../schemas/MaxpropertiesValidation.md | 18 +-- .../MincontainsWithoutContainsIsIgnored.md | 18 +-- .../components/schemas/MinimumValidation.md | 16 +-- .../MinimumValidationWithSignedInteger.md | 16 +-- .../components/schemas/MinitemsValidation.md | 18 +-- .../components/schemas/MinlengthValidation.md | 18 +-- .../schemas/MinpropertiesValidation.md | 18 +-- .../schemas/MultipleDependentsRequired.md | 16 +-- ...multaneousPatternpropertiesAreValidated.md | 32 ++--- .../MultipleTypesCanBeSpecifiedInAnArray.md | 30 ++--- .../NestedAllofToCheckValidationSemantics.md | 32 ++--- .../NestedAnyofToCheckValidationSemantics.md | 32 ++--- .../docs/components/schemas/NestedItems.md | 104 +++++++--------- .../NestedOneofToCheckValidationSemantics.md | 32 ++--- ...NonAsciiPatternWithAdditionalproperties.md | 30 ++--- .../NonInterferenceAcrossCombinedSchemas.md | 112 +++++++++--------- .../kotlin/docs/components/schemas/Not.md | 16 +-- .../schemas/NotMoreComplexSchema.md | 46 ++++--- .../components/schemas/NotMultipleTypes.md | 50 ++++---- .../schemas/NulCharactersInStrings.md | 24 ++-- .../schemas/ObjectPropertiesValidation.md | 16 +-- .../kotlin/docs/components/schemas/Oneof.md | 32 ++--- .../components/schemas/OneofComplexTypes.md | 48 ++++---- .../components/schemas/OneofWithBaseSchema.md | 60 +++++----- .../schemas/OneofWithEmptySchema.md | 16 +-- .../components/schemas/OneofWithRequired.md | 36 +++--- .../schemas/PatternIsNotAnchored.md | 16 +-- .../components/schemas/PatternValidation.md | 16 +-- ...ertiesValidatesPropertiesMatchingARegex.md | 16 +-- ...pertiesWithNullValuedInstanceProperties.md | 16 +-- ...lidationAdjustsTheStartingIndexForItems.md | 26 ++-- .../PrefixitemsWithNullInstanceElements.md | 16 +-- ...opertiesAdditionalpropertiesInteraction.md | 50 ++++---- ...seNamesAreJavascriptObjectPropertyNames.md | 32 ++--- .../PropertiesWithEscapedCharacters.md | 16 +-- ...pertiesWithNullValuedInstanceProperties.md | 16 +-- .../PropertyNamedRefThatIsNotAReference.md | 16 +-- .../schemas/PropertynamesValidation.md | 42 +++---- .../docs/components/schemas/RegexFormat.md | 16 +-- ...NotAnchoredByDefaultAndAreCaseSensitive.md | 16 +-- .../schemas/RelativeJsonPointerFormat.md | 16 +-- .../schemas/RequiredDefaultValidation.md | 16 +-- ...seNamesAreJavascriptObjectPropertyNames.md | 16 +-- .../components/schemas/RequiredValidation.md | 16 +-- .../schemas/RequiredWithEmptyArray.md | 16 +-- .../schemas/RequiredWithEscapedCharacters.md | 16 +-- .../schemas/SimpleEnumValidation.md | 26 ++-- .../components/schemas/SingleDependency.md | 16 +-- .../schemas/SmallMultipleOfLargeInteger.md | 26 ++-- .../docs/components/schemas/TimeFormat.md | 16 +-- .../schemas/TypeArrayObjectOrNull.md | 28 ++--- .../components/schemas/TypeArrayOrObject.md | 4 +- .../schemas/UnevaluateditemsAsSchema.md | 16 +-- ...teditemsDependsOnMultipleNestedContains.md | 96 +++++++-------- .../schemas/UnevaluateditemsWithItems.md | 26 ++-- ...nevaluateditemsWithNullInstanceElements.md | 16 +-- ...tedpropertiesNotAffectedByPropertynames.md | 42 +++---- .../schemas/UnevaluatedpropertiesSchema.md | 30 ++--- ...pertiesWithAdjacentAdditionalproperties.md | 30 ++--- ...pertiesWithNullValuedInstanceProperties.md | 16 +-- .../schemas/UniqueitemsFalseValidation.md | 16 +-- .../UniqueitemsFalseWithAnArrayOfItems.md | 16 +-- .../schemas/UniqueitemsValidation.md | 16 +-- .../schemas/UniqueitemsWithAnArrayOfItems.md | 16 +-- .../docs/components/schemas/UriFormat.md | 16 +-- .../components/schemas/UriReferenceFormat.md | 16 +-- .../components/schemas/UriTemplateFormat.md | 16 +-- .../docs/components/schemas/UuidFormat.md | 16 +-- .../ValidateAgainstCorrectBranchThenVsElse.md | 64 +++++----- .../components/schemas/Schema_doc.hbs | 20 ++-- .../schemas/validateSchemaCodeSample.hbs | 32 ++--- 218 files changed, 2809 insertions(+), 3065 deletions(-) diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md index 4cb6a86186d..01d7735d18f 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md @@ -69,29 +69,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.AdditionalpropertiesAllowsASchemaWhichShouldValidate; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.AdditionalpropertiesAllowsASchemaWhichShouldValidate -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidateMap validatedPayload = +val validatedPayload: AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidateMap = AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidate1.validate( - new AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidateMapBuilder() + AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidateMapBuilder() .additionalProperty("someAdditionalProperty", true) .build(), configuration -); +) ``` ### Field Summary @@ -104,8 +100,8 @@ AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsA ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [AdditionalpropertiesAllowsASchemaWhichShouldValidateMap](#additionalpropertiesallowsaschemawhichshouldvalidatemap) | validate(arg: [Map<?, ?>](#additionalpropertiesallowsaschemawhichshouldvalidatemapbuilder), configuration: SchemaConfiguration) | -| [AdditionalpropertiesAllowsASchemaWhichShouldValidate1BoxedMap](#additionalpropertiesallowsaschemawhichshouldvalidate1boxedmap) | validateAndBox([Map<?, ?>](#additionalpropertiesallowsaschemawhichshouldvalidatemapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesAllowsASchemaWhichShouldValidateMap](#additionalpropertiesallowsaschemawhichshouldvalidatemap) | validate(arg: [Map<*, *>](#additionalpropertiesallowsaschemawhichshouldvalidatemapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesAllowsASchemaWhichShouldValidate1BoxedMap](#additionalpropertiesallowsaschemawhichshouldvalidate1boxedmap) | validateAndBox([Map<*, *>](#additionalpropertiesallowsaschemawhichshouldvalidatemapbuilder), configuration: SchemaConfiguration) | | [AdditionalpropertiesAllowsASchemaWhichShouldValidate1Boxed](#additionalpropertiesallowsaschemawhichshouldvalidate1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md index c3785564640..f5ee810d1f5 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md @@ -169,19 +169,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [AdditionalpropertiesAreAllowedByDefaultMap](#additionalpropertiesareallowedbydefaultmap) | validate(arg: [Map<?, ?>](#additionalpropertiesareallowedbydefaultmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [AdditionalpropertiesAreAllowedByDefaultMap](#additionalpropertiesareallowedbydefaultmap) | validate(arg: [Map<*, *>](#additionalpropertiesareallowedbydefaultmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AdditionalpropertiesAreAllowedByDefault1BoxedString](#additionalpropertiesareallowedbydefault1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AdditionalpropertiesAreAllowedByDefault1BoxedVoid](#additionalpropertiesareallowedbydefault1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AdditionalpropertiesAreAllowedByDefault1BoxedNumber](#additionalpropertiesareallowedbydefault1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AdditionalpropertiesAreAllowedByDefault1BoxedBoolean](#additionalpropertiesareallowedbydefault1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AdditionalpropertiesAreAllowedByDefault1BoxedMap](#additionalpropertiesareallowedbydefault1boxedmap) | validateAndBox([Map<?, ?>](#additionalpropertiesareallowedbydefaultmapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesAreAllowedByDefault1BoxedBoolean](#additionalpropertiesareallowedbydefault1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AdditionalpropertiesAreAllowedByDefault1BoxedMap](#additionalpropertiesareallowedbydefault1boxedmap) | validateAndBox([Map<*, *>](#additionalpropertiesareallowedbydefaultmapbuilder), configuration: SchemaConfiguration) | | [AdditionalpropertiesAreAllowedByDefault1BoxedList](#additionalpropertiesareallowedbydefault1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AdditionalpropertiesAreAllowedByDefault1Boxed](#additionalpropertiesareallowedbydefault1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md index fdc764ec2a1..90eab2eba43 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md @@ -53,29 +53,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.AdditionalpropertiesCanExistByItself; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.AdditionalpropertiesCanExistByItself -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMap validatedPayload = +val validatedPayload: AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMap = AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1.validate( - new AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMapBuilder() + AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMapBuilder() .additionalProperty("someAdditionalProperty", true) .build(), configuration -); +) ``` ### Field Summary @@ -87,8 +83,8 @@ AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMap val ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [AdditionalpropertiesCanExistByItselfMap](#additionalpropertiescanexistbyitselfmap) | validate(arg: [Map<?, ?>](#additionalpropertiescanexistbyitselfmapbuilder), configuration: SchemaConfiguration) | -| [AdditionalpropertiesCanExistByItself1BoxedMap](#additionalpropertiescanexistbyitself1boxedmap) | validateAndBox([Map<?, ?>](#additionalpropertiescanexistbyitselfmapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesCanExistByItselfMap](#additionalpropertiescanexistbyitselfmap) | validate(arg: [Map<*, *>](#additionalpropertiescanexistbyitselfmapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesCanExistByItself1BoxedMap](#additionalpropertiescanexistbyitself1boxedmap) | validateAndBox([Map<*, *>](#additionalpropertiescanexistbyitselfmapbuilder), configuration: SchemaConfiguration) | | [AdditionalpropertiesCanExistByItself1Boxed](#additionalpropertiescanexistbyitself1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesShouldNotLookInApplicators.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesShouldNotLookInApplicators.md index 9e7412315c2..9ebee8d5775 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesShouldNotLookInApplicators.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesShouldNotLookInApplicators.md @@ -175,19 +175,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [AdditionalpropertiesShouldNotLookInApplicatorsMap](#additionalpropertiesshouldnotlookinapplicatorsmap) | validate(arg: [Map<?, ?>](#additionalpropertiesshouldnotlookinapplicatorsmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [AdditionalpropertiesShouldNotLookInApplicatorsMap](#additionalpropertiesshouldnotlookinapplicatorsmap) | validate(arg: [Map<*, *>](#additionalpropertiesshouldnotlookinapplicatorsmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AdditionalpropertiesShouldNotLookInApplicators1BoxedString](#additionalpropertiesshouldnotlookinapplicators1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AdditionalpropertiesShouldNotLookInApplicators1BoxedVoid](#additionalpropertiesshouldnotlookinapplicators1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AdditionalpropertiesShouldNotLookInApplicators1BoxedNumber](#additionalpropertiesshouldnotlookinapplicators1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AdditionalpropertiesShouldNotLookInApplicators1BoxedBoolean](#additionalpropertiesshouldnotlookinapplicators1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AdditionalpropertiesShouldNotLookInApplicators1BoxedMap](#additionalpropertiesshouldnotlookinapplicators1boxedmap) | validateAndBox([Map<?, ?>](#additionalpropertiesshouldnotlookinapplicatorsmapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesShouldNotLookInApplicators1BoxedBoolean](#additionalpropertiesshouldnotlookinapplicators1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AdditionalpropertiesShouldNotLookInApplicators1BoxedMap](#additionalpropertiesshouldnotlookinapplicators1boxedmap) | validateAndBox([Map<*, *>](#additionalpropertiesshouldnotlookinapplicatorsmapbuilder), configuration: SchemaConfiguration) | | [AdditionalpropertiesShouldNotLookInApplicators1BoxedList](#additionalpropertiesshouldnotlookinapplicators1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AdditionalpropertiesShouldNotLookInApplicators1Boxed](#additionalpropertiesshouldnotlookinapplicators1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -351,19 +351,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Allof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Allof.md index 5a211961ac4..5815520963b 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Allof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Allof.md @@ -177,19 +177,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Allof1BoxedString](#allof1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Allof1BoxedVoid](#allof1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Allof1BoxedNumber](#allof1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Allof1BoxedBoolean](#allof1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Allof1BoxedMap](#allof1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Allof1BoxedBoolean](#allof1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Allof1BoxedMap](#allof1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Allof1BoxedList](#allof1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Allof1Boxed](#allof1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -325,19 +325,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema1Map](#schema1map) | validate(arg: [Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema1Map](#schema1map) | validate(arg: [Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -562,19 +562,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md index be071761cb0..75cfac35745 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md @@ -175,19 +175,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofCombinedWithAnyofOneof1BoxedString](#allofcombinedwithanyofoneof1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofCombinedWithAnyofOneof1BoxedVoid](#allofcombinedwithanyofoneof1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofCombinedWithAnyofOneof1BoxedNumber](#allofcombinedwithanyofoneof1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofCombinedWithAnyofOneof1BoxedBoolean](#allofcombinedwithanyofoneof1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofCombinedWithAnyofOneof1BoxedMap](#allofcombinedwithanyofoneof1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofCombinedWithAnyofOneof1BoxedBoolean](#allofcombinedwithanyofoneof1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofCombinedWithAnyofOneof1BoxedMap](#allofcombinedwithanyofoneof1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofCombinedWithAnyofOneof1BoxedList](#allofcombinedwithanyofoneof1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofCombinedWithAnyofOneof1Boxed](#allofcombinedwithanyofoneof1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -322,19 +322,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -469,19 +469,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema01BoxedString](#schema01boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema01BoxedVoid](#schema01boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema01BoxedNumber](#schema01boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema01BoxedBoolean](#schema01boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema01BoxedMap](#schema01boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema01BoxedBoolean](#schema01boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema01BoxedMap](#schema01boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema01BoxedList](#schema01boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema01Boxed](#schema01boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -616,19 +616,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema02BoxedString](#schema02boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema02BoxedVoid](#schema02boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema02BoxedNumber](#schema02boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema02BoxedBoolean](#schema02boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema02BoxedMap](#schema02boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema02BoxedBoolean](#schema02boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema02BoxedMap](#schema02boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema02BoxedList](#schema02boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema02Boxed](#schema02boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md index 3797e536800..e0fe3c0cc4f 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md @@ -165,19 +165,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofSimpleTypes1BoxedString](#allofsimpletypes1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofSimpleTypes1BoxedVoid](#allofsimpletypes1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofSimpleTypes1BoxedNumber](#allofsimpletypes1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofSimpleTypes1BoxedBoolean](#allofsimpletypes1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofSimpleTypes1BoxedMap](#allofsimpletypes1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofSimpleTypes1BoxedBoolean](#allofsimpletypes1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofSimpleTypes1BoxedMap](#allofsimpletypes1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofSimpleTypes1BoxedList](#allofsimpletypes1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofSimpleTypes1Boxed](#allofsimpletypes1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -312,19 +312,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -459,19 +459,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md index 2f94b4b3b6a..c3e2a4219f4 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md @@ -184,19 +184,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [AllofWithBaseSchemaMap](#allofwithbaseschemamap) | validate(arg: [Map<?, ?>](#allofwithbaseschemamapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [AllofWithBaseSchemaMap](#allofwithbaseschemamap) | validate(arg: [Map<*, *>](#allofwithbaseschemamapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofWithBaseSchema1BoxedString](#allofwithbaseschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofWithBaseSchema1BoxedVoid](#allofwithbaseschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofWithBaseSchema1BoxedNumber](#allofwithbaseschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofWithBaseSchema1BoxedBoolean](#allofwithbaseschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofWithBaseSchema1BoxedMap](#allofwithbaseschema1boxedmap) | validateAndBox([Map<?, ?>](#allofwithbaseschemamapbuilder), configuration: SchemaConfiguration) | +| [AllofWithBaseSchema1BoxedBoolean](#allofwithbaseschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofWithBaseSchema1BoxedMap](#allofwithbaseschema1boxedmap) | validateAndBox([Map<*, *>](#allofwithbaseschemamapbuilder), configuration: SchemaConfiguration) | | [AllofWithBaseSchema1BoxedList](#allofwithbaseschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofWithBaseSchema1Boxed](#allofwithbaseschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -424,19 +424,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema1Map](#schema1map) | validate(arg: [Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema1Map](#schema1map) | validate(arg: [Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -661,19 +661,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md index 3a4586b5661..8c5d1b108f4 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md @@ -157,19 +157,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofWithOneEmptySchema1BoxedString](#allofwithoneemptyschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofWithOneEmptySchema1BoxedVoid](#allofwithoneemptyschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofWithOneEmptySchema1BoxedNumber](#allofwithoneemptyschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofWithOneEmptySchema1BoxedBoolean](#allofwithoneemptyschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofWithOneEmptySchema1BoxedMap](#allofwithoneemptyschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofWithOneEmptySchema1BoxedBoolean](#allofwithoneemptyschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofWithOneEmptySchema1BoxedMap](#allofwithoneemptyschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofWithOneEmptySchema1BoxedList](#allofwithoneemptyschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofWithOneEmptySchema1Boxed](#allofwithoneemptyschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md index 9e14a960664..26896d1c031 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofWithTheFirstEmptySchema1BoxedString](#allofwiththefirstemptyschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofWithTheFirstEmptySchema1BoxedVoid](#allofwiththefirstemptyschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofWithTheFirstEmptySchema1BoxedNumber](#allofwiththefirstemptyschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofWithTheFirstEmptySchema1BoxedBoolean](#allofwiththefirstemptyschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofWithTheFirstEmptySchema1BoxedMap](#allofwiththefirstemptyschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofWithTheFirstEmptySchema1BoxedBoolean](#allofwiththefirstemptyschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofWithTheFirstEmptySchema1BoxedMap](#allofwiththefirstemptyschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofWithTheFirstEmptySchema1BoxedList](#allofwiththefirstemptyschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofWithTheFirstEmptySchema1Boxed](#allofwiththefirstemptyschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md index b67c14c1c5a..17ba600a8b9 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofWithTheLastEmptySchema1BoxedString](#allofwiththelastemptyschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofWithTheLastEmptySchema1BoxedVoid](#allofwiththelastemptyschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofWithTheLastEmptySchema1BoxedNumber](#allofwiththelastemptyschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofWithTheLastEmptySchema1BoxedBoolean](#allofwiththelastemptyschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofWithTheLastEmptySchema1BoxedMap](#allofwiththelastemptyschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofWithTheLastEmptySchema1BoxedBoolean](#allofwiththelastemptyschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofWithTheLastEmptySchema1BoxedMap](#allofwiththelastemptyschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofWithTheLastEmptySchema1BoxedList](#allofwiththelastemptyschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofWithTheLastEmptySchema1Boxed](#allofwiththelastemptyschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md index 18791b95b8d..ed872f52fe1 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md @@ -165,19 +165,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofWithTwoEmptySchemas1BoxedString](#allofwithtwoemptyschemas1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofWithTwoEmptySchemas1BoxedVoid](#allofwithtwoemptyschemas1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofWithTwoEmptySchemas1BoxedNumber](#allofwithtwoemptyschemas1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofWithTwoEmptySchemas1BoxedBoolean](#allofwithtwoemptyschemas1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofWithTwoEmptySchemas1BoxedMap](#allofwithtwoemptyschemas1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofWithTwoEmptySchemas1BoxedBoolean](#allofwithtwoemptyschemas1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofWithTwoEmptySchemas1BoxedMap](#allofwithtwoemptyschemas1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofWithTwoEmptySchemas1BoxedList](#allofwithtwoemptyschemas1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofWithTwoEmptySchemas1Boxed](#allofwithtwoemptyschemas1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Anyof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Anyof.md index 0b400ccbe95..40574b1aa2c 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Anyof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Anyof.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Anyof1BoxedString](#anyof1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Anyof1BoxedVoid](#anyof1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Anyof1BoxedNumber](#anyof1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Anyof1BoxedBoolean](#anyof1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Anyof1BoxedMap](#anyof1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Anyof1BoxedBoolean](#anyof1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Anyof1BoxedMap](#anyof1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Anyof1BoxedList](#anyof1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Anyof1Boxed](#anyof1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -307,19 +307,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md index fa38731618a..accce6dccfa 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md @@ -177,19 +177,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AnyofComplexTypes1BoxedString](#anyofcomplextypes1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AnyofComplexTypes1BoxedVoid](#anyofcomplextypes1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AnyofComplexTypes1BoxedNumber](#anyofcomplextypes1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AnyofComplexTypes1BoxedBoolean](#anyofcomplextypes1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AnyofComplexTypes1BoxedMap](#anyofcomplextypes1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AnyofComplexTypes1BoxedBoolean](#anyofcomplextypes1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AnyofComplexTypes1BoxedMap](#anyofcomplextypes1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AnyofComplexTypes1BoxedList](#anyofcomplextypes1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AnyofComplexTypes1Boxed](#anyofcomplextypes1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -325,19 +325,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema1Map](#schema1map) | validate(arg: [Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema1Map](#schema1map) | validate(arg: [Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -562,19 +562,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md index d0175fa0d3d..a42940a33cf 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md @@ -62,25 +62,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.AnyofWithBaseSchema; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.AnyofWithBaseSchema -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = AnyofWithBaseSchema.AnyofWithBaseSchema1.validate( +val validatedPayload: String = AnyofWithBaseSchema.AnyofWithBaseSchema1.validate( "a", configuration -); +) ``` ### Field Summary @@ -220,26 +216,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minLength = 4 | +| Int | minLength = 4 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -367,26 +363,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxLength = 2 | +| Int | maxLength = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md index 9dacfd34348..4dc4984ad15 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AnyofWithOneEmptySchema1BoxedString](#anyofwithoneemptyschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AnyofWithOneEmptySchema1BoxedVoid](#anyofwithoneemptyschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AnyofWithOneEmptySchema1BoxedNumber](#anyofwithoneemptyschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AnyofWithOneEmptySchema1BoxedBoolean](#anyofwithoneemptyschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AnyofWithOneEmptySchema1BoxedMap](#anyofwithoneemptyschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AnyofWithOneEmptySchema1BoxedBoolean](#anyofwithoneemptyschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AnyofWithOneEmptySchema1BoxedMap](#anyofwithoneemptyschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AnyofWithOneEmptySchema1BoxedList](#anyofwithoneemptyschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AnyofWithOneEmptySchema1Boxed](#anyofwithoneemptyschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md index c59750a9d4d..1b6cb41537d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md @@ -58,27 +58,23 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.ArrayTypeMatchesArrays; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.ArrayTypeMatchesArrays -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -ArrayTypeMatchesArrays.ArrayTypeMatchesArraysList validatedPayload = +val validatedPayload: ArrayTypeMatchesArrays.ArrayTypeMatchesArraysList = ArrayTypeMatchesArrays.ArrayTypeMatchesArrays1.validate( - new ArrayTypeMatchesArrays.ArrayTypeMatchesArraysListBuilder() + ArrayTypeMatchesArrays.ArrayTypeMatchesArraysListBuilder() .build(), configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByInt.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByInt.md index 1d2e173784f..18177758e2d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByInt.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByInt.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ByInt1BoxedString](#byint1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ByInt1BoxedVoid](#byint1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ByInt1BoxedNumber](#byint1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ByInt1BoxedBoolean](#byint1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ByInt1BoxedMap](#byint1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ByInt1BoxedBoolean](#byint1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ByInt1BoxedMap](#byint1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ByInt1BoxedList](#byint1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ByInt1Boxed](#byint1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByNumber.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByNumber.md index 0ef752b157e..176534986d0 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByNumber.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByNumber.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ByNumber1BoxedString](#bynumber1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ByNumber1BoxedVoid](#bynumber1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ByNumber1BoxedNumber](#bynumber1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ByNumber1BoxedBoolean](#bynumber1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ByNumber1BoxedMap](#bynumber1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ByNumber1BoxedBoolean](#bynumber1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ByNumber1BoxedMap](#bynumber1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ByNumber1BoxedList](#bynumber1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ByNumber1Boxed](#bynumber1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BySmallNumber.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BySmallNumber.md index efb24198916..6fdaee75920 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BySmallNumber.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BySmallNumber.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [BySmallNumber1BoxedString](#bysmallnumber1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [BySmallNumber1BoxedVoid](#bysmallnumber1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [BySmallNumber1BoxedNumber](#bysmallnumber1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [BySmallNumber1BoxedBoolean](#bysmallnumber1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [BySmallNumber1BoxedMap](#bysmallnumber1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [BySmallNumber1BoxedBoolean](#bysmallnumber1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [BySmallNumber1BoxedMap](#bysmallnumber1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [BySmallNumber1BoxedList](#bysmallnumber1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [BySmallNumber1Boxed](#bysmallnumber1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md index 1844f22cea8..dc2e42c4cde 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [DateTimeFormat1BoxedString](#datetimeformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [DateTimeFormat1BoxedVoid](#datetimeformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [DateTimeFormat1BoxedNumber](#datetimeformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [DateTimeFormat1BoxedBoolean](#datetimeformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [DateTimeFormat1BoxedMap](#datetimeformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [DateTimeFormat1BoxedBoolean](#datetimeformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [DateTimeFormat1BoxedMap](#datetimeformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [DateTimeFormat1BoxedList](#datetimeformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [DateTimeFormat1Boxed](#datetimeformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EmailFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EmailFormat.md index 53b4cde33e0..dac13ddd113 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EmailFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EmailFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [EmailFormat1BoxedString](#emailformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [EmailFormat1BoxedVoid](#emailformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [EmailFormat1BoxedNumber](#emailformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [EmailFormat1BoxedBoolean](#emailformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [EmailFormat1BoxedMap](#emailformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [EmailFormat1BoxedBoolean](#emailformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [EmailFormat1BoxedMap](#emailformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [EmailFormat1BoxedList](#emailformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [EmailFormat1Boxed](#emailformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md index b33bd6fd650..8f60cb361bf 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md @@ -51,25 +51,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumWith0DoesNotMatchFalse; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumWith0DoesNotMatchFalse -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1.validate( +val validatedPayload: Int = EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1.validate( 1, configuration -); +) ``` ### Field Summary @@ -90,7 +86,7 @@ int validatedPayload = EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1.va public enum IntegerEnumWith0DoesNotMatchFalseEnums
extends `Enum` -A class that stores Integer enum values +A class that stores Int enum values ### Enum Constant Summary | Enum Constant | Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md index a296b3a613f..5cae0b2c550 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md @@ -51,25 +51,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumWith1DoesNotMatchTrue; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumWith1DoesNotMatchTrue -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1.validate( +val validatedPayload: Int = EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1.validate( 1, configuration -); +) ``` ### Field Summary @@ -90,7 +86,7 @@ int validatedPayload = EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1.vali public enum IntegerEnumWith1DoesNotMatchTrueEnums
extends `Enum` -A class that stores Integer enum values +A class that stores Int enum values ### Enum Constant Summary | Enum Constant | Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md index 54458d5522a..550856ef545 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md @@ -48,25 +48,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumWithEscapedCharacters; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumWithEscapedCharacters -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = EnumWithEscapedCharacters.EnumWithEscapedCharacters1.validate( +val validatedPayload: String = EnumWithEscapedCharacters.EnumWithEscapedCharacters1.validate( "foo\nbar", configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md index 8055fb6b4d9..dd710d242bb 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md @@ -48,25 +48,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumWithFalseDoesNotMatch0; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumWithFalseDoesNotMatch0 -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // boolean validation -boolean validatedPayload = EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01.validate( +val validatedPayload: Boolean = EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01.validate( false, configuration -); +) ``` ### Field Summary @@ -78,9 +74,9 @@ boolean validatedPayload = EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch0 ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| boolean | validate(arg: [BooleanEnumWithFalseDoesNotMatch0Enums](#booleanenumwithfalsedoesnotmatch0enums), configuration: SchemaConfiguration) | -| [EnumWithFalseDoesNotMatch01BoxedBoolean](#enumwithfalsedoesnotmatch01boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| Boolean | validate(arg: [BooleanEnumWithFalseDoesNotMatch0Enums](#booleanenumwithfalsedoesnotmatch0enums), configuration: SchemaConfiguration) | +| [EnumWithFalseDoesNotMatch01BoxedBoolean](#enumwithfalsedoesnotmatch01boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | | [EnumWithFalseDoesNotMatch01Boxed](#enumwithfalsedoesnotmatch01boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md index c22cd9303bb..b6b635b9f0b 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md @@ -48,25 +48,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumWithTrueDoesNotMatch1; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumWithTrueDoesNotMatch1 -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // boolean validation -boolean validatedPayload = EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11.validate( +val validatedPayload: Boolean = EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11.validate( true, configuration -); +) ``` ### Field Summary @@ -78,9 +74,9 @@ boolean validatedPayload = EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11. ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| boolean | validate(arg: [BooleanEnumWithTrueDoesNotMatch1Enums](#booleanenumwithtruedoesnotmatch1enums), configuration: SchemaConfiguration) | -| [EnumWithTrueDoesNotMatch11BoxedBoolean](#enumwithtruedoesnotmatch11boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| Boolean | validate(arg: [BooleanEnumWithTrueDoesNotMatch1Enums](#booleanenumwithtruedoesnotmatch1enums), configuration: SchemaConfiguration) | +| [EnumWithTrueDoesNotMatch11BoxedBoolean](#enumwithtruedoesnotmatch11boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | | [EnumWithTrueDoesNotMatch11Boxed](#enumwithtruedoesnotmatch11boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md index dad4dd136ad..95883b8654d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md @@ -59,31 +59,27 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumsInProperties; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumsInProperties -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -EnumsInProperties.EnumsInPropertiesMap validatedPayload = +val validatedPayload: EnumsInProperties.EnumsInPropertiesMap = EnumsInProperties.EnumsInProperties1.validate( - new EnumsInProperties.EnumsInPropertiesMapBuilder() + EnumsInProperties.EnumsInPropertiesMapBuilder() .bar("bar") .foo("foo") .build(), configuration -); +) ``` ### Field Summary @@ -96,8 +92,8 @@ EnumsInProperties.EnumsInPropertiesMap validatedPayload = ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [EnumsInPropertiesMap](#enumsinpropertiesmap) | validate(arg: [Map<?, ?>](#enumsinpropertiesmapbuilder), configuration: SchemaConfiguration) | -| [EnumsInProperties1BoxedMap](#enumsinproperties1boxedmap) | validateAndBox([Map<?, ?>](#enumsinpropertiesmapbuilder), configuration: SchemaConfiguration) | +| [EnumsInPropertiesMap](#enumsinpropertiesmap) | validate(arg: [Map<*, *>](#enumsinpropertiesmapbuilder), configuration: SchemaConfiguration) | +| [EnumsInProperties1BoxedMap](#enumsinproperties1boxedmap) | validateAndBox([Map<*, *>](#enumsinpropertiesmapbuilder), configuration: SchemaConfiguration) | | [EnumsInProperties1Boxed](#enumsinproperties1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -191,25 +187,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumsInProperties; - -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumsInProperties -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = EnumsInProperties.Bar.validate( +val validatedPayload: String = EnumsInProperties.Bar.validate( "bar", configuration -); +) ``` ### Field Summary @@ -270,25 +262,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumsInProperties; - -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumsInProperties -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = EnumsInProperties.Foo.validate( +val validatedPayload: String = EnumsInProperties.Foo.validate( "foo", configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md index 59362492629..48fcb3c6c33 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md @@ -161,19 +161,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [ForbiddenPropertyMap](#forbiddenpropertymap) | validate(arg: [Map<?, ?>](#forbiddenpropertymapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [ForbiddenPropertyMap](#forbiddenpropertymap) | validate(arg: [Map<*, *>](#forbiddenpropertymapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ForbiddenProperty1BoxedString](#forbiddenproperty1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ForbiddenProperty1BoxedVoid](#forbiddenproperty1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ForbiddenProperty1BoxedNumber](#forbiddenproperty1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ForbiddenProperty1BoxedBoolean](#forbiddenproperty1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ForbiddenProperty1BoxedMap](#forbiddenproperty1boxedmap) | validateAndBox([Map<?, ?>](#forbiddenpropertymapbuilder), configuration: SchemaConfiguration) | +| [ForbiddenProperty1BoxedBoolean](#forbiddenproperty1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ForbiddenProperty1BoxedMap](#forbiddenproperty1boxedmap) | validateAndBox([Map<*, *>](#forbiddenpropertymapbuilder), configuration: SchemaConfiguration) | | [ForbiddenProperty1BoxedList](#forbiddenproperty1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ForbiddenProperty1Boxed](#forbiddenproperty1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/HostnameFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/HostnameFormat.md index 9bfb2c2b465..15f1fa66b05 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/HostnameFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/HostnameFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [HostnameFormat1BoxedString](#hostnameformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [HostnameFormat1BoxedVoid](#hostnameformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [HostnameFormat1BoxedNumber](#hostnameformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [HostnameFormat1BoxedBoolean](#hostnameformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [HostnameFormat1BoxedMap](#hostnameformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [HostnameFormat1BoxedBoolean](#hostnameformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [HostnameFormat1BoxedMap](#hostnameformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [HostnameFormat1BoxedList](#hostnameformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [HostnameFormat1Boxed](#hostnameformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md index 75d8899d5fb..a81729b8ce0 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md @@ -46,25 +46,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf1.validate( +val validatedPayload: Int = InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf1.validate( 1L, configuration -); +) ``` ### Field Summary @@ -77,7 +73,7 @@ int validatedPayload = InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.In ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| long | validate(arg: long, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | | [InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf1BoxedNumber](#invalidinstanceshouldnotraiseerrorwhenfloatdivisioninf1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | | [InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf1Boxed](#invalidinstanceshouldnotraiseerrorwhenfloatdivisioninf1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidStringValueForDefault.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidStringValueForDefault.md index d94689558b8..4eed4133624 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidStringValueForDefault.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidStringValueForDefault.md @@ -156,19 +156,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [InvalidStringValueForDefaultMap](#invalidstringvaluefordefaultmap) | validate(arg: [Map<?, ?>](#invalidstringvaluefordefaultmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [InvalidStringValueForDefaultMap](#invalidstringvaluefordefaultmap) | validate(arg: [Map<*, *>](#invalidstringvaluefordefaultmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [InvalidStringValueForDefault1BoxedString](#invalidstringvaluefordefault1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [InvalidStringValueForDefault1BoxedVoid](#invalidstringvaluefordefault1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [InvalidStringValueForDefault1BoxedNumber](#invalidstringvaluefordefault1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [InvalidStringValueForDefault1BoxedBoolean](#invalidstringvaluefordefault1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [InvalidStringValueForDefault1BoxedMap](#invalidstringvaluefordefault1boxedmap) | validateAndBox([Map<?, ?>](#invalidstringvaluefordefaultmapbuilder), configuration: SchemaConfiguration) | +| [InvalidStringValueForDefault1BoxedBoolean](#invalidstringvaluefordefault1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [InvalidStringValueForDefault1BoxedMap](#invalidstringvaluefordefault1boxedmap) | validateAndBox([Map<*, *>](#invalidstringvaluefordefaultmapbuilder), configuration: SchemaConfiguration) | | [InvalidStringValueForDefault1BoxedList](#invalidstringvaluefordefault1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [InvalidStringValueForDefault1Boxed](#invalidstringvaluefordefault1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -244,32 +244,28 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.InvalidStringValueForDefault; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.InvalidStringValueForDefault -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = InvalidStringValueForDefault.Bar.validate( +val validatedPayload: String = InvalidStringValueForDefault.Bar.validate( "a", configuration -); +) ``` ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | | Set> | type = setOf(
    String::class.java
)
| -| Integer | minLength = 4 | +| Int | minLength = 4 | | Any? | defaultValue = "bad" | ### Method Summary diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv4Format.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv4Format.md index 0ddec8c4233..c783a2b1273 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv4Format.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv4Format.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Ipv4Format1BoxedString](#ipv4format1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Ipv4Format1BoxedVoid](#ipv4format1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Ipv4Format1BoxedNumber](#ipv4format1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Ipv4Format1BoxedBoolean](#ipv4format1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Ipv4Format1BoxedMap](#ipv4format1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Ipv4Format1BoxedBoolean](#ipv4format1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Ipv4Format1BoxedMap](#ipv4format1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Ipv4Format1BoxedList](#ipv4format1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Ipv4Format1Boxed](#ipv4format1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv6Format.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv6Format.md index d78fd50c8b4..17cb88f4fc7 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv6Format.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv6Format.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Ipv6Format1BoxedString](#ipv6format1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Ipv6Format1BoxedVoid](#ipv6format1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Ipv6Format1BoxedNumber](#ipv6format1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Ipv6Format1BoxedBoolean](#ipv6format1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Ipv6Format1BoxedMap](#ipv6format1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Ipv6Format1BoxedBoolean](#ipv6format1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Ipv6Format1BoxedMap](#ipv6format1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Ipv6Format1BoxedList](#ipv6format1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Ipv6Format1Boxed](#ipv6format1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md index 6eddd588dff..586c19a0f14 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [JsonPointerFormat1BoxedString](#jsonpointerformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [JsonPointerFormat1BoxedVoid](#jsonpointerformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [JsonPointerFormat1BoxedNumber](#jsonpointerformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [JsonPointerFormat1BoxedBoolean](#jsonpointerformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [JsonPointerFormat1BoxedMap](#jsonpointerformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [JsonPointerFormat1BoxedBoolean](#jsonpointerformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [JsonPointerFormat1BoxedMap](#jsonpointerformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [JsonPointerFormat1BoxedList](#jsonpointerformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [JsonPointerFormat1Boxed](#jsonpointerformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidation.md index 30da56e71cc..690d7c14985 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MaximumValidation1BoxedString](#maximumvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MaximumValidation1BoxedVoid](#maximumvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MaximumValidation1BoxedNumber](#maximumvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MaximumValidation1BoxedBoolean](#maximumvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MaximumValidation1BoxedMap](#maximumvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MaximumValidation1BoxedBoolean](#maximumvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MaximumValidation1BoxedMap](#maximumvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MaximumValidation1BoxedList](#maximumvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MaximumValidation1Boxed](#maximumvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md index c9730a8592b..4cfa5c3d815 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MaximumValidationWithUnsignedInteger1BoxedString](#maximumvalidationwithunsignedinteger1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MaximumValidationWithUnsignedInteger1BoxedVoid](#maximumvalidationwithunsignedinteger1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MaximumValidationWithUnsignedInteger1BoxedNumber](#maximumvalidationwithunsignedinteger1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MaximumValidationWithUnsignedInteger1BoxedBoolean](#maximumvalidationwithunsignedinteger1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MaximumValidationWithUnsignedInteger1BoxedMap](#maximumvalidationwithunsignedinteger1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MaximumValidationWithUnsignedInteger1BoxedBoolean](#maximumvalidationwithunsignedinteger1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MaximumValidationWithUnsignedInteger1BoxedMap](#maximumvalidationwithunsignedinteger1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MaximumValidationWithUnsignedInteger1BoxedList](#maximumvalidationwithunsignedinteger1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MaximumValidationWithUnsignedInteger1Boxed](#maximumvalidationwithunsignedinteger1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md index 3ea5955c1d2..e16781663ce 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxItems = 2 | +| Int | maxItems = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MaxitemsValidation1BoxedString](#maxitemsvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MaxitemsValidation1BoxedVoid](#maxitemsvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MaxitemsValidation1BoxedNumber](#maxitemsvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MaxitemsValidation1BoxedBoolean](#maxitemsvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MaxitemsValidation1BoxedMap](#maxitemsvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MaxitemsValidation1BoxedBoolean](#maxitemsvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MaxitemsValidation1BoxedMap](#maxitemsvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MaxitemsValidation1BoxedList](#maxitemsvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MaxitemsValidation1Boxed](#maxitemsvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md index bce5aed91d9..0232b8b9973 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxLength = 2 | +| Int | maxLength = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MaxlengthValidation1BoxedString](#maxlengthvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MaxlengthValidation1BoxedVoid](#maxlengthvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MaxlengthValidation1BoxedNumber](#maxlengthvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MaxlengthValidation1BoxedBoolean](#maxlengthvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MaxlengthValidation1BoxedMap](#maxlengthvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MaxlengthValidation1BoxedBoolean](#maxlengthvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MaxlengthValidation1BoxedMap](#maxlengthvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MaxlengthValidation1BoxedList](#maxlengthvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MaxlengthValidation1Boxed](#maxlengthvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md index 06a37326fda..b3137f64e3a 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxProperties = 0 | +| Int | maxProperties = 0 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Maxproperties0MeansTheObjectIsEmpty1BoxedString](#maxproperties0meanstheobjectisempty1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Maxproperties0MeansTheObjectIsEmpty1BoxedVoid](#maxproperties0meanstheobjectisempty1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Maxproperties0MeansTheObjectIsEmpty1BoxedNumber](#maxproperties0meanstheobjectisempty1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Maxproperties0MeansTheObjectIsEmpty1BoxedBoolean](#maxproperties0meanstheobjectisempty1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Maxproperties0MeansTheObjectIsEmpty1BoxedMap](#maxproperties0meanstheobjectisempty1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Maxproperties0MeansTheObjectIsEmpty1BoxedBoolean](#maxproperties0meanstheobjectisempty1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Maxproperties0MeansTheObjectIsEmpty1BoxedMap](#maxproperties0meanstheobjectisempty1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Maxproperties0MeansTheObjectIsEmpty1BoxedList](#maxproperties0meanstheobjectisempty1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Maxproperties0MeansTheObjectIsEmpty1Boxed](#maxproperties0meanstheobjectisempty1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md index 8b04a4d21ac..6d983c0d5df 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxProperties = 2 | +| Int | maxProperties = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MaxpropertiesValidation1BoxedString](#maxpropertiesvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MaxpropertiesValidation1BoxedVoid](#maxpropertiesvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MaxpropertiesValidation1BoxedNumber](#maxpropertiesvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MaxpropertiesValidation1BoxedBoolean](#maxpropertiesvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MaxpropertiesValidation1BoxedMap](#maxpropertiesvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MaxpropertiesValidation1BoxedBoolean](#maxpropertiesvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MaxpropertiesValidation1BoxedMap](#maxpropertiesvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MaxpropertiesValidation1BoxedList](#maxpropertiesvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MaxpropertiesValidation1Boxed](#maxpropertiesvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidation.md index 94694cf69ec..250a3d0e5f2 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MinimumValidation1BoxedString](#minimumvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MinimumValidation1BoxedVoid](#minimumvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MinimumValidation1BoxedNumber](#minimumvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MinimumValidation1BoxedBoolean](#minimumvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MinimumValidation1BoxedMap](#minimumvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MinimumValidation1BoxedBoolean](#minimumvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MinimumValidation1BoxedMap](#minimumvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MinimumValidation1BoxedList](#minimumvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MinimumValidation1Boxed](#minimumvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md index b898faa9cd1..c53ef5a6e3c 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MinimumValidationWithSignedInteger1BoxedString](#minimumvalidationwithsignedinteger1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MinimumValidationWithSignedInteger1BoxedVoid](#minimumvalidationwithsignedinteger1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MinimumValidationWithSignedInteger1BoxedNumber](#minimumvalidationwithsignedinteger1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MinimumValidationWithSignedInteger1BoxedBoolean](#minimumvalidationwithsignedinteger1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MinimumValidationWithSignedInteger1BoxedMap](#minimumvalidationwithsignedinteger1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MinimumValidationWithSignedInteger1BoxedBoolean](#minimumvalidationwithsignedinteger1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MinimumValidationWithSignedInteger1BoxedMap](#minimumvalidationwithsignedinteger1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MinimumValidationWithSignedInteger1BoxedList](#minimumvalidationwithsignedinteger1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MinimumValidationWithSignedInteger1Boxed](#minimumvalidationwithsignedinteger1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md index e095c974cd9..1a60b834c4d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minItems = 1 | +| Int | minItems = 1 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MinitemsValidation1BoxedString](#minitemsvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MinitemsValidation1BoxedVoid](#minitemsvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MinitemsValidation1BoxedNumber](#minitemsvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MinitemsValidation1BoxedBoolean](#minitemsvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MinitemsValidation1BoxedMap](#minitemsvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MinitemsValidation1BoxedBoolean](#minitemsvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MinitemsValidation1BoxedMap](#minitemsvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MinitemsValidation1BoxedList](#minitemsvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MinitemsValidation1Boxed](#minitemsvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md index 3905f4a2411..0d297ac6a05 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minLength = 2 | +| Int | minLength = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MinlengthValidation1BoxedString](#minlengthvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MinlengthValidation1BoxedVoid](#minlengthvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MinlengthValidation1BoxedNumber](#minlengthvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MinlengthValidation1BoxedBoolean](#minlengthvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MinlengthValidation1BoxedMap](#minlengthvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MinlengthValidation1BoxedBoolean](#minlengthvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MinlengthValidation1BoxedMap](#minlengthvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MinlengthValidation1BoxedList](#minlengthvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MinlengthValidation1Boxed](#minlengthvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md index 27161315772..123f8710fb8 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minProperties = 1 | +| Int | minProperties = 1 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MinpropertiesValidation1BoxedString](#minpropertiesvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MinpropertiesValidation1BoxedVoid](#minpropertiesvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MinpropertiesValidation1BoxedNumber](#minpropertiesvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MinpropertiesValidation1BoxedBoolean](#minpropertiesvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MinpropertiesValidation1BoxedMap](#minpropertiesvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MinpropertiesValidation1BoxedBoolean](#minpropertiesvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MinpropertiesValidation1BoxedMap](#minpropertiesvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MinpropertiesValidation1BoxedList](#minpropertiesvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MinpropertiesValidation1Boxed](#minpropertiesvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md index 708628006e4..e03aee22372 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [NestedAllofToCheckValidationSemantics1BoxedString](#nestedalloftocheckvalidationsemantics1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [NestedAllofToCheckValidationSemantics1BoxedVoid](#nestedalloftocheckvalidationsemantics1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [NestedAllofToCheckValidationSemantics1BoxedNumber](#nestedalloftocheckvalidationsemantics1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [NestedAllofToCheckValidationSemantics1BoxedBoolean](#nestedalloftocheckvalidationsemantics1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [NestedAllofToCheckValidationSemantics1BoxedMap](#nestedalloftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [NestedAllofToCheckValidationSemantics1BoxedBoolean](#nestedalloftocheckvalidationsemantics1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [NestedAllofToCheckValidationSemantics1BoxedMap](#nestedalloftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [NestedAllofToCheckValidationSemantics1BoxedList](#nestedalloftocheckvalidationsemantics1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [NestedAllofToCheckValidationSemantics1Boxed](#nestedalloftocheckvalidationsemantics1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -307,19 +307,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md index d145f8fdf0a..69052621055 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [NestedAnyofToCheckValidationSemantics1BoxedString](#nestedanyoftocheckvalidationsemantics1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [NestedAnyofToCheckValidationSemantics1BoxedVoid](#nestedanyoftocheckvalidationsemantics1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [NestedAnyofToCheckValidationSemantics1BoxedNumber](#nestedanyoftocheckvalidationsemantics1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [NestedAnyofToCheckValidationSemantics1BoxedBoolean](#nestedanyoftocheckvalidationsemantics1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [NestedAnyofToCheckValidationSemantics1BoxedMap](#nestedanyoftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [NestedAnyofToCheckValidationSemantics1BoxedBoolean](#nestedanyoftocheckvalidationsemantics1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [NestedAnyofToCheckValidationSemantics1BoxedMap](#nestedanyoftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [NestedAnyofToCheckValidationSemantics1BoxedList](#nestedanyoftocheckvalidationsemantics1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [NestedAnyofToCheckValidationSemantics1Boxed](#nestedanyoftocheckvalidationsemantics1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -307,19 +307,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedItems.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedItems.md index f609bc5ec46..35847c30b79 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedItems.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedItems.md @@ -68,24 +68,20 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NestedItems; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NestedItems -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -NestedItems.NestedItemsList validatedPayload = +val validatedPayload: NestedItems.NestedItemsList = NestedItems.NestedItems1.validate( - new NestedItems.NestedItemsListBuilder() + NestedItems.NestedItemsListBuilder() .add( listOf( listOf( @@ -97,7 +93,7 @@ NestedItems.NestedItemsList validatedPayload = ) .build(), configuration -); +) ``` ### Field Summary @@ -175,24 +171,20 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NestedItems; - -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NestedItems -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -NestedItems.ItemsList2 validatedPayload = +val validatedPayload: NestedItems.ItemsList2 = NestedItems.Items.validate( - new NestedItems.ItemsListBuilder2() + NestedItems.ItemsListBuilder2() .add( listOf( listOf( @@ -202,7 +194,7 @@ NestedItems.ItemsList2 validatedPayload = ) .build(), configuration -); +) ``` ### Field Summary @@ -280,24 +272,20 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NestedItems; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NestedItems -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -NestedItems.ItemsList1 validatedPayload = +val validatedPayload: NestedItems.ItemsList1 = NestedItems.Items1.validate( - new NestedItems.ItemsListBuilder1() + NestedItems.ItemsListBuilder1() .add( listOf( 1 @@ -305,7 +293,7 @@ NestedItems.ItemsList1 validatedPayload = ) .build(), configuration -); +) ``` ### Field Summary @@ -383,29 +371,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NestedItems; - -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NestedItems -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -NestedItems.ItemsList validatedPayload = +val validatedPayload: NestedItems.ItemsList = NestedItems.Items2.validate( - new NestedItems.ItemsListBuilder() + NestedItems.ItemsListBuilder() .add(1) .build(), configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md index 6e78e1ba783..56984b6ed8d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [NestedOneofToCheckValidationSemantics1BoxedString](#nestedoneoftocheckvalidationsemantics1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [NestedOneofToCheckValidationSemantics1BoxedVoid](#nestedoneoftocheckvalidationsemantics1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [NestedOneofToCheckValidationSemantics1BoxedNumber](#nestedoneoftocheckvalidationsemantics1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [NestedOneofToCheckValidationSemantics1BoxedBoolean](#nestedoneoftocheckvalidationsemantics1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [NestedOneofToCheckValidationSemantics1BoxedMap](#nestedoneoftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [NestedOneofToCheckValidationSemantics1BoxedBoolean](#nestedoneoftocheckvalidationsemantics1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [NestedOneofToCheckValidationSemantics1BoxedMap](#nestedoneoftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [NestedOneofToCheckValidationSemantics1BoxedList](#nestedoneoftocheckvalidationsemantics1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [NestedOneofToCheckValidationSemantics1Boxed](#nestedoneoftocheckvalidationsemantics1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -307,19 +307,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Not.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Not.md index 4e1250b94c4..5c7f49889ba 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Not.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Not.md @@ -152,19 +152,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Not1BoxedString](#not1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Not1BoxedVoid](#not1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Not1BoxedNumber](#not1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Not1BoxedBoolean](#not1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Not1BoxedMap](#not1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Not1BoxedBoolean](#not1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Not1BoxedMap](#not1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Not1BoxedList](#not1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Not1Boxed](#not1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md index 2578fcfd7c1..f482909b92e 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md @@ -159,19 +159,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [NotMoreComplexSchema1BoxedString](#notmorecomplexschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [NotMoreComplexSchema1BoxedVoid](#notmorecomplexschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [NotMoreComplexSchema1BoxedNumber](#notmorecomplexschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [NotMoreComplexSchema1BoxedBoolean](#notmorecomplexschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [NotMoreComplexSchema1BoxedMap](#notmorecomplexschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [NotMoreComplexSchema1BoxedBoolean](#notmorecomplexschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [NotMoreComplexSchema1BoxedMap](#notmorecomplexschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [NotMoreComplexSchema1BoxedList](#notmorecomplexschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [NotMoreComplexSchema1Boxed](#notmorecomplexschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -208,29 +208,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NotMoreComplexSchema; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NotMoreComplexSchema -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -NotMoreComplexSchema.NotMap validatedPayload = +val validatedPayload: NotMoreComplexSchema.NotMap = NotMoreComplexSchema.Not.validate( - new NotMoreComplexSchema.NotMapBuilder() + NotMoreComplexSchema.NotMapBuilder() .foo("a") .build(), configuration -); +) ``` ### Field Summary @@ -242,8 +238,8 @@ NotMoreComplexSchema.NotMap validatedPayload = ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [NotMap](#notmap) | validate(arg: [Map<?, ?>](#notmapbuilder), configuration: SchemaConfiguration) | -| [NotBoxedMap](#notboxedmap) | validateAndBox([Map<?, ?>](#notmapbuilder), configuration: SchemaConfiguration) | +| [NotMap](#notmap) | validate(arg: [Map<*, *>](#notmapbuilder), configuration: SchemaConfiguration) | +| [NotBoxedMap](#notboxedmap) | validateAndBox([Map<*, *>](#notmapbuilder), configuration: SchemaConfiguration) | | [NotBoxed](#notboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md index 3fa79cb0018..bb6edb1453a 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md @@ -48,25 +48,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NulCharactersInStrings; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NulCharactersInStrings -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = NulCharactersInStrings.NulCharactersInStrings1.validate( +val validatedPayload: String = NulCharactersInStrings.NulCharactersInStrings1.validate( "hello\u0000there", configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md index a80a93be1e8..0626f8af721 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md @@ -159,19 +159,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [ObjectPropertiesValidationMap](#objectpropertiesvalidationmap) | validate(arg: [Map<?, ?>](#objectpropertiesvalidationmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [ObjectPropertiesValidationMap](#objectpropertiesvalidationmap) | validate(arg: [Map<*, *>](#objectpropertiesvalidationmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ObjectPropertiesValidation1BoxedString](#objectpropertiesvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ObjectPropertiesValidation1BoxedVoid](#objectpropertiesvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ObjectPropertiesValidation1BoxedNumber](#objectpropertiesvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ObjectPropertiesValidation1BoxedBoolean](#objectpropertiesvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ObjectPropertiesValidation1BoxedMap](#objectpropertiesvalidation1boxedmap) | validateAndBox([Map<?, ?>](#objectpropertiesvalidationmapbuilder), configuration: SchemaConfiguration) | +| [ObjectPropertiesValidation1BoxedBoolean](#objectpropertiesvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ObjectPropertiesValidation1BoxedMap](#objectpropertiesvalidation1boxedmap) | validateAndBox([Map<*, *>](#objectpropertiesvalidationmapbuilder), configuration: SchemaConfiguration) | | [ObjectPropertiesValidation1BoxedList](#objectpropertiesvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ObjectPropertiesValidation1Boxed](#objectpropertiesvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Oneof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Oneof.md index c94e5017546..7d78c0ba37f 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Oneof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Oneof.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Oneof1BoxedString](#oneof1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Oneof1BoxedVoid](#oneof1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Oneof1BoxedNumber](#oneof1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Oneof1BoxedBoolean](#oneof1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Oneof1BoxedMap](#oneof1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Oneof1BoxedBoolean](#oneof1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Oneof1BoxedMap](#oneof1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Oneof1BoxedList](#oneof1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Oneof1Boxed](#oneof1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -307,19 +307,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md index 42bf6a2067a..ae89d4929b6 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md @@ -177,19 +177,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [OneofComplexTypes1BoxedString](#oneofcomplextypes1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [OneofComplexTypes1BoxedVoid](#oneofcomplextypes1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [OneofComplexTypes1BoxedNumber](#oneofcomplextypes1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [OneofComplexTypes1BoxedBoolean](#oneofcomplextypes1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [OneofComplexTypes1BoxedMap](#oneofcomplextypes1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [OneofComplexTypes1BoxedBoolean](#oneofcomplextypes1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [OneofComplexTypes1BoxedMap](#oneofcomplextypes1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [OneofComplexTypes1BoxedList](#oneofcomplextypes1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [OneofComplexTypes1Boxed](#oneofcomplextypes1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -325,19 +325,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema1Map](#schema1map) | validate(arg: [Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema1Map](#schema1map) | validate(arg: [Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -562,19 +562,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md index ec2efa5bd7a..1076b3333d6 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md @@ -62,25 +62,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.OneofWithBaseSchema; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.OneofWithBaseSchema -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = OneofWithBaseSchema.OneofWithBaseSchema1.validate( +val validatedPayload: String = OneofWithBaseSchema.OneofWithBaseSchema1.validate( "a", configuration -); +) ``` ### Field Summary @@ -220,26 +216,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxLength = 4 | +| Int | maxLength = 4 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -367,26 +363,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minLength = 2 | +| Int | minLength = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md index 3c41a98cb37..d437a9d04b2 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [OneofWithEmptySchema1BoxedString](#oneofwithemptyschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [OneofWithEmptySchema1BoxedVoid](#oneofwithemptyschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [OneofWithEmptySchema1BoxedNumber](#oneofwithemptyschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [OneofWithEmptySchema1BoxedBoolean](#oneofwithemptyschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [OneofWithEmptySchema1BoxedMap](#oneofwithemptyschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [OneofWithEmptySchema1BoxedBoolean](#oneofwithemptyschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [OneofWithEmptySchema1BoxedMap](#oneofwithemptyschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [OneofWithEmptySchema1BoxedList](#oneofwithemptyschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [OneofWithEmptySchema1Boxed](#oneofwithemptyschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md index 5fb44f316d2..654e75c26c9 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md @@ -75,8 +75,8 @@ A schema class that validates payloads ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | -| [OneofWithRequired1BoxedMap](#oneofwithrequired1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | +| [OneofWithRequired1BoxedMap](#oneofwithrequired1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [OneofWithRequired1Boxed](#oneofwithrequired1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -210,19 +210,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema1Map](#schema1map) | validate(arg: [Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema1Map](#schema1map) | validate(arg: [Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -477,19 +477,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md index db50b22bddc..55e8e387781 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PatternIsNotAnchored1BoxedString](#patternisnotanchored1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PatternIsNotAnchored1BoxedVoid](#patternisnotanchored1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PatternIsNotAnchored1BoxedNumber](#patternisnotanchored1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PatternIsNotAnchored1BoxedBoolean](#patternisnotanchored1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PatternIsNotAnchored1BoxedMap](#patternisnotanchored1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [PatternIsNotAnchored1BoxedBoolean](#patternisnotanchored1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PatternIsNotAnchored1BoxedMap](#patternisnotanchored1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [PatternIsNotAnchored1BoxedList](#patternisnotanchored1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PatternIsNotAnchored1Boxed](#patternisnotanchored1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternValidation.md index 38aabdd0f51..020ca576c3d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PatternValidation1BoxedString](#patternvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PatternValidation1BoxedVoid](#patternvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PatternValidation1BoxedNumber](#patternvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PatternValidation1BoxedBoolean](#patternvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PatternValidation1BoxedMap](#patternvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [PatternValidation1BoxedBoolean](#patternvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PatternValidation1BoxedMap](#patternvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [PatternValidation1BoxedList](#patternvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PatternValidation1Boxed](#patternvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md index 385cc3ca185..b602055af40 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md @@ -171,19 +171,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [PropertiesWithEscapedCharactersMap](#propertieswithescapedcharactersmap) | validate(arg: [Map<?, ?>](#propertieswithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [PropertiesWithEscapedCharactersMap](#propertieswithescapedcharactersmap) | validate(arg: [Map<*, *>](#propertieswithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PropertiesWithEscapedCharacters1BoxedString](#propertieswithescapedcharacters1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PropertiesWithEscapedCharacters1BoxedVoid](#propertieswithescapedcharacters1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PropertiesWithEscapedCharacters1BoxedNumber](#propertieswithescapedcharacters1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PropertiesWithEscapedCharacters1BoxedBoolean](#propertieswithescapedcharacters1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PropertiesWithEscapedCharacters1BoxedMap](#propertieswithescapedcharacters1boxedmap) | validateAndBox([Map<?, ?>](#propertieswithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | +| [PropertiesWithEscapedCharacters1BoxedBoolean](#propertieswithescapedcharacters1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PropertiesWithEscapedCharacters1BoxedMap](#propertieswithescapedcharacters1boxedmap) | validateAndBox([Map<*, *>](#propertieswithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | | [PropertiesWithEscapedCharacters1BoxedList](#propertieswithescapedcharacters1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PropertiesWithEscapedCharacters1Boxed](#propertieswithescapedcharacters1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md index 9a3d24c717a..2cb82e8642d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md @@ -156,19 +156,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [PropertyNamedRefThatIsNotAReferenceMap](#propertynamedrefthatisnotareferencemap) | validate(arg: [Map<?, ?>](#propertynamedrefthatisnotareferencemapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [PropertyNamedRefThatIsNotAReferenceMap](#propertynamedrefthatisnotareferencemap) | validate(arg: [Map<*, *>](#propertynamedrefthatisnotareferencemapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PropertyNamedRefThatIsNotAReference1BoxedString](#propertynamedrefthatisnotareference1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PropertyNamedRefThatIsNotAReference1BoxedVoid](#propertynamedrefthatisnotareference1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PropertyNamedRefThatIsNotAReference1BoxedNumber](#propertynamedrefthatisnotareference1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PropertyNamedRefThatIsNotAReference1BoxedBoolean](#propertynamedrefthatisnotareference1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PropertyNamedRefThatIsNotAReference1BoxedMap](#propertynamedrefthatisnotareference1boxedmap) | validateAndBox([Map<?, ?>](#propertynamedrefthatisnotareferencemapbuilder), configuration: SchemaConfiguration) | +| [PropertyNamedRefThatIsNotAReference1BoxedBoolean](#propertynamedrefthatisnotareference1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PropertyNamedRefThatIsNotAReference1BoxedMap](#propertynamedrefthatisnotareference1boxedmap) | validateAndBox([Map<*, *>](#propertynamedrefthatisnotareferencemapbuilder), configuration: SchemaConfiguration) | | [PropertyNamedRefThatIsNotAReference1BoxedList](#propertynamedrefthatisnotareference1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PropertyNamedRefThatIsNotAReference1Boxed](#propertynamedrefthatisnotareference1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAdditionalproperties.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAdditionalproperties.md index bbb9fea7c84..8124fc1ff16 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAdditionalproperties.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAdditionalproperties.md @@ -50,27 +50,23 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.RefInAdditionalproperties; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.RefInAdditionalproperties -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -RefInAdditionalproperties.RefInAdditionalpropertiesMap validatedPayload = +val validatedPayload: RefInAdditionalproperties.RefInAdditionalpropertiesMap = RefInAdditionalproperties.RefInAdditionalproperties1.validate( - new RefInAdditionalproperties.RefInAdditionalpropertiesMapBuilder() + RefInAdditionalproperties.RefInAdditionalpropertiesMapBuilder() .build(), configuration -); +) ``` ### Field Summary @@ -82,8 +78,8 @@ RefInAdditionalproperties.RefInAdditionalpropertiesMap validatedPayload = ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [RefInAdditionalpropertiesMap](#refinadditionalpropertiesmap) | validate(arg: [Map<?, ?>](#refinadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | -| [RefInAdditionalproperties1BoxedMap](#refinadditionalproperties1boxedmap) | validateAndBox([Map<?, ?>](#refinadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | +| [RefInAdditionalpropertiesMap](#refinadditionalpropertiesmap) | validate(arg: [Map<*, *>](#refinadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | +| [RefInAdditionalproperties1BoxedMap](#refinadditionalproperties1boxedmap) | validateAndBox([Map<*, *>](#refinadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | | [RefInAdditionalproperties1Boxed](#refinadditionalproperties1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAllof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAllof.md index 7342790e9f3..fefdb33e616 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAllof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAllof.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RefInAllof1BoxedString](#refinallof1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RefInAllof1BoxedVoid](#refinallof1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RefInAllof1BoxedNumber](#refinallof1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RefInAllof1BoxedBoolean](#refinallof1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RefInAllof1BoxedMap](#refinallof1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [RefInAllof1BoxedBoolean](#refinallof1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RefInAllof1BoxedMap](#refinallof1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [RefInAllof1BoxedList](#refinallof1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RefInAllof1Boxed](#refinallof1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAnyof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAnyof.md index f7b064e8afc..6b63e22b528 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAnyof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAnyof.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RefInAnyof1BoxedString](#refinanyof1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RefInAnyof1BoxedVoid](#refinanyof1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RefInAnyof1BoxedNumber](#refinanyof1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RefInAnyof1BoxedBoolean](#refinanyof1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RefInAnyof1BoxedMap](#refinanyof1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [RefInAnyof1BoxedBoolean](#refinanyof1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RefInAnyof1BoxedMap](#refinanyof1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [RefInAnyof1BoxedList](#refinanyof1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RefInAnyof1Boxed](#refinanyof1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInItems.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInItems.md index 713b342f973..b5a16a8e740 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInItems.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInItems.md @@ -50,27 +50,23 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.RefInItems; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.RefInItems -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -RefInItems.RefInItemsList validatedPayload = +val validatedPayload: RefInItems.RefInItemsList = RefInItems.RefInItems1.validate( - new RefInItems.RefInItemsListBuilder() + RefInItems.RefInItemsListBuilder() .build(), configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInNot.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInNot.md index a7ff963604f..b398209d45d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInNot.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInNot.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RefInNot1BoxedString](#refinnot1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RefInNot1BoxedVoid](#refinnot1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RefInNot1BoxedNumber](#refinnot1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RefInNot1BoxedBoolean](#refinnot1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RefInNot1BoxedMap](#refinnot1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [RefInNot1BoxedBoolean](#refinnot1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RefInNot1BoxedMap](#refinnot1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [RefInNot1BoxedList](#refinnot1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RefInNot1Boxed](#refinnot1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInOneof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInOneof.md index 641ff36e8c5..304a2d1db72 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInOneof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInOneof.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RefInOneof1BoxedString](#refinoneof1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RefInOneof1BoxedVoid](#refinoneof1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RefInOneof1BoxedNumber](#refinoneof1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RefInOneof1BoxedBoolean](#refinoneof1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RefInOneof1BoxedMap](#refinoneof1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [RefInOneof1BoxedBoolean](#refinoneof1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RefInOneof1BoxedMap](#refinoneof1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [RefInOneof1BoxedList](#refinoneof1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RefInOneof1Boxed](#refinoneof1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInProperty.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInProperty.md index b7402792e0e..a60ec6aa667 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInProperty.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInProperty.md @@ -153,19 +153,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [RefInPropertyMap](#refinpropertymap) | validate(arg: [Map<?, ?>](#refinpropertymapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [RefInPropertyMap](#refinpropertymap) | validate(arg: [Map<*, *>](#refinpropertymapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RefInProperty1BoxedString](#refinproperty1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RefInProperty1BoxedVoid](#refinproperty1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RefInProperty1BoxedNumber](#refinproperty1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RefInProperty1BoxedBoolean](#refinproperty1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RefInProperty1BoxedMap](#refinproperty1boxedmap) | validateAndBox([Map<?, ?>](#refinpropertymapbuilder), configuration: SchemaConfiguration) | +| [RefInProperty1BoxedBoolean](#refinproperty1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RefInProperty1BoxedMap](#refinproperty1boxedmap) | validateAndBox([Map<*, *>](#refinpropertymapbuilder), configuration: SchemaConfiguration) | | [RefInProperty1BoxedList](#refinproperty1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RefInProperty1Boxed](#refinproperty1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md index 7b71ca0e3f6..3dc803a4186 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md @@ -161,19 +161,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [RequiredDefaultValidationMap](#requireddefaultvalidationmap) | validate(arg: [Map<?, ?>](#requireddefaultvalidationmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [RequiredDefaultValidationMap](#requireddefaultvalidationmap) | validate(arg: [Map<*, *>](#requireddefaultvalidationmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RequiredDefaultValidation1BoxedString](#requireddefaultvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RequiredDefaultValidation1BoxedVoid](#requireddefaultvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RequiredDefaultValidation1BoxedNumber](#requireddefaultvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RequiredDefaultValidation1BoxedBoolean](#requireddefaultvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RequiredDefaultValidation1BoxedMap](#requireddefaultvalidation1boxedmap) | validateAndBox([Map<?, ?>](#requireddefaultvalidationmapbuilder), configuration: SchemaConfiguration) | +| [RequiredDefaultValidation1BoxedBoolean](#requireddefaultvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RequiredDefaultValidation1BoxedMap](#requireddefaultvalidation1boxedmap) | validateAndBox([Map<*, *>](#requireddefaultvalidationmapbuilder), configuration: SchemaConfiguration) | | [RequiredDefaultValidation1BoxedList](#requireddefaultvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RequiredDefaultValidation1Boxed](#requireddefaultvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredValidation.md index 448abb465fe..a74cb2c2e08 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredValidation.md @@ -170,19 +170,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [RequiredValidationMap](#requiredvalidationmap) | validate(arg: [Map<?, ?>](#requiredvalidationmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [RequiredValidationMap](#requiredvalidationmap) | validate(arg: [Map<*, *>](#requiredvalidationmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RequiredValidation1BoxedString](#requiredvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RequiredValidation1BoxedVoid](#requiredvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RequiredValidation1BoxedNumber](#requiredvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RequiredValidation1BoxedBoolean](#requiredvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RequiredValidation1BoxedMap](#requiredvalidation1boxedmap) | validateAndBox([Map<?, ?>](#requiredvalidationmapbuilder), configuration: SchemaConfiguration) | +| [RequiredValidation1BoxedBoolean](#requiredvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RequiredValidation1BoxedMap](#requiredvalidation1boxedmap) | validateAndBox([Map<*, *>](#requiredvalidationmapbuilder), configuration: SchemaConfiguration) | | [RequiredValidation1BoxedList](#requiredvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RequiredValidation1Boxed](#requiredvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md index 85125a5f8d2..7f624f006a5 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md @@ -161,19 +161,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [RequiredWithEmptyArrayMap](#requiredwithemptyarraymap) | validate(arg: [Map<?, ?>](#requiredwithemptyarraymapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [RequiredWithEmptyArrayMap](#requiredwithemptyarraymap) | validate(arg: [Map<*, *>](#requiredwithemptyarraymapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RequiredWithEmptyArray1BoxedString](#requiredwithemptyarray1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RequiredWithEmptyArray1BoxedVoid](#requiredwithemptyarray1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RequiredWithEmptyArray1BoxedNumber](#requiredwithemptyarray1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RequiredWithEmptyArray1BoxedBoolean](#requiredwithemptyarray1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RequiredWithEmptyArray1BoxedMap](#requiredwithemptyarray1boxedmap) | validateAndBox([Map<?, ?>](#requiredwithemptyarraymapbuilder), configuration: SchemaConfiguration) | +| [RequiredWithEmptyArray1BoxedBoolean](#requiredwithemptyarray1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RequiredWithEmptyArray1BoxedMap](#requiredwithemptyarray1boxedmap) | validateAndBox([Map<*, *>](#requiredwithemptyarraymapbuilder), configuration: SchemaConfiguration) | | [RequiredWithEmptyArray1BoxedList](#requiredwithemptyarray1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RequiredWithEmptyArray1Boxed](#requiredwithemptyarray1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md index eb8d365df0d..55ae80437f4 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md @@ -153,19 +153,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [RequiredWithEscapedCharactersMap](#requiredwithescapedcharactersmap) | validate(arg: [Map<?, ?>](#requiredwithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [RequiredWithEscapedCharactersMap](#requiredwithescapedcharactersmap) | validate(arg: [Map<*, *>](#requiredwithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RequiredWithEscapedCharacters1BoxedString](#requiredwithescapedcharacters1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RequiredWithEscapedCharacters1BoxedVoid](#requiredwithescapedcharacters1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RequiredWithEscapedCharacters1BoxedNumber](#requiredwithescapedcharacters1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RequiredWithEscapedCharacters1BoxedBoolean](#requiredwithescapedcharacters1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RequiredWithEscapedCharacters1BoxedMap](#requiredwithescapedcharacters1boxedmap) | validateAndBox([Map<?, ?>](#requiredwithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | +| [RequiredWithEscapedCharacters1BoxedBoolean](#requiredwithescapedcharacters1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RequiredWithEscapedCharacters1BoxedMap](#requiredwithescapedcharacters1boxedmap) | validateAndBox([Map<*, *>](#requiredwithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | | [RequiredWithEscapedCharacters1BoxedList](#requiredwithescapedcharacters1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RequiredWithEscapedCharacters1Boxed](#requiredwithescapedcharacters1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md index 08da7286908..3bc45e63aa7 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md @@ -51,25 +51,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.SimpleEnumValidation; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.SimpleEnumValidation -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = SimpleEnumValidation.SimpleEnumValidation1.validate( +val validatedPayload: Int = SimpleEnumValidation.SimpleEnumValidation1.validate( 1, configuration -); +) ``` ### Field Summary @@ -90,7 +86,7 @@ int validatedPayload = SimpleEnumValidation.SimpleEnumValidation1.validate( public enum IntegerSimpleEnumValidationEnums
extends `Enum` -A class that stores Integer enum values +A class that stores Int enum values ### Enum Constant Summary | Enum Constant | Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md index e6bd7249646..a6dd7e06256 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md @@ -53,29 +53,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingMap validatedPayload = +val validatedPayload: TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingMap = TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing1.validate( - new TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingMapBuilder() + TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingMapBuilder() .alpha(1) .build(), configuration -); +) ``` ### Field Summary @@ -87,8 +83,8 @@ TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNo ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingMap](#thedefaultkeyworddoesnotdoanythingifthepropertyismissingmap) | validate(arg: [Map<?, ?>](#thedefaultkeyworddoesnotdoanythingifthepropertyismissingmapbuilder), configuration: SchemaConfiguration) | -| [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing1BoxedMap](#thedefaultkeyworddoesnotdoanythingifthepropertyismissing1boxedmap) | validateAndBox([Map<?, ?>](#thedefaultkeyworddoesnotdoanythingifthepropertyismissingmapbuilder), configuration: SchemaConfiguration) | +| [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingMap](#thedefaultkeyworddoesnotdoanythingifthepropertyismissingmap) | validate(arg: [Map<*, *>](#thedefaultkeyworddoesnotdoanythingifthepropertyismissingmapbuilder), configuration: SchemaConfiguration) | +| [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing1BoxedMap](#thedefaultkeyworddoesnotdoanythingifthepropertyismissing1boxedmap) | validateAndBox([Map<*, *>](#thedefaultkeyworddoesnotdoanythingifthepropertyismissingmapbuilder), configuration: SchemaConfiguration) | | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing1Boxed](#thedefaultkeyworddoesnotdoanythingifthepropertyismissing1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -166,25 +162,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing; - -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.Alpha.validate( +val validatedPayload: Int = TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.Alpha.validate( 1, configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md index 5529c997fa9..e973205c00e 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UniqueitemsFalseValidation1BoxedString](#uniqueitemsfalsevalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UniqueitemsFalseValidation1BoxedVoid](#uniqueitemsfalsevalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UniqueitemsFalseValidation1BoxedNumber](#uniqueitemsfalsevalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UniqueitemsFalseValidation1BoxedBoolean](#uniqueitemsfalsevalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UniqueitemsFalseValidation1BoxedMap](#uniqueitemsfalsevalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UniqueitemsFalseValidation1BoxedBoolean](#uniqueitemsfalsevalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UniqueitemsFalseValidation1BoxedMap](#uniqueitemsfalsevalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UniqueitemsFalseValidation1BoxedList](#uniqueitemsfalsevalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UniqueitemsFalseValidation1Boxed](#uniqueitemsfalsevalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md index 09861dec784..4b3da1c0ec8 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UniqueitemsValidation1BoxedString](#uniqueitemsvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UniqueitemsValidation1BoxedVoid](#uniqueitemsvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UniqueitemsValidation1BoxedNumber](#uniqueitemsvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UniqueitemsValidation1BoxedBoolean](#uniqueitemsvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UniqueitemsValidation1BoxedMap](#uniqueitemsvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UniqueitemsValidation1BoxedBoolean](#uniqueitemsvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UniqueitemsValidation1BoxedMap](#uniqueitemsvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UniqueitemsValidation1BoxedList](#uniqueitemsvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UniqueitemsValidation1Boxed](#uniqueitemsvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriFormat.md index ee78e984294..6c21950a1cb 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UriFormat1BoxedString](#uriformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UriFormat1BoxedVoid](#uriformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UriFormat1BoxedNumber](#uriformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UriFormat1BoxedBoolean](#uriformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UriFormat1BoxedMap](#uriformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UriFormat1BoxedBoolean](#uriformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UriFormat1BoxedMap](#uriformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UriFormat1BoxedList](#uriformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UriFormat1Boxed](#uriformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md index 34c794017c3..16ef1cd0916 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UriReferenceFormat1BoxedString](#urireferenceformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UriReferenceFormat1BoxedVoid](#urireferenceformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UriReferenceFormat1BoxedNumber](#urireferenceformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UriReferenceFormat1BoxedBoolean](#urireferenceformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UriReferenceFormat1BoxedMap](#urireferenceformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UriReferenceFormat1BoxedBoolean](#urireferenceformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UriReferenceFormat1BoxedMap](#urireferenceformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UriReferenceFormat1BoxedList](#urireferenceformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UriReferenceFormat1Boxed](#urireferenceformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md index 1c17c912d35..7b608e65bcd 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UriTemplateFormat1BoxedString](#uritemplateformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UriTemplateFormat1BoxedVoid](#uritemplateformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UriTemplateFormat1BoxedNumber](#uritemplateformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UriTemplateFormat1BoxedBoolean](#uritemplateformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UriTemplateFormat1BoxedMap](#uritemplateformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UriTemplateFormat1BoxedBoolean](#uritemplateformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UriTemplateFormat1BoxedMap](#uritemplateformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UriTemplateFormat1BoxedList](#uritemplateformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UriTemplateFormat1Boxed](#uritemplateformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ASchemaGivenForPrefixitems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ASchemaGivenForPrefixitems.md index 56481399a71..ab192b8e99e 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ASchemaGivenForPrefixitems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ASchemaGivenForPrefixitems.md @@ -159,19 +159,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | [ASchemaGivenForPrefixitemsList](#aschemagivenforprefixitemslist) | validate(arg: [List<*>](#aschemagivenforprefixitemslistbuilder), configuration: SchemaConfiguration) | | [ASchemaGivenForPrefixitems1BoxedString](#aschemagivenforprefixitems1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ASchemaGivenForPrefixitems1BoxedVoid](#aschemagivenforprefixitems1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ASchemaGivenForPrefixitems1BoxedNumber](#aschemagivenforprefixitems1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ASchemaGivenForPrefixitems1BoxedBoolean](#aschemagivenforprefixitems1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ASchemaGivenForPrefixitems1BoxedMap](#aschemagivenforprefixitems1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ASchemaGivenForPrefixitems1BoxedBoolean](#aschemagivenforprefixitems1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ASchemaGivenForPrefixitems1BoxedMap](#aschemagivenforprefixitems1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ASchemaGivenForPrefixitems1BoxedList](#aschemagivenforprefixitems1boxedlist) | validateAndBox([List<*>](#aschemagivenforprefixitemslistbuilder), configuration: SchemaConfiguration) | | [ASchemaGivenForPrefixitems1Boxed](#aschemagivenforprefixitems1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalItemsAreAllowedByDefault.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalItemsAreAllowedByDefault.md index 6d51e715f12..24eaacadd16 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalItemsAreAllowedByDefault.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalItemsAreAllowedByDefault.md @@ -156,19 +156,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | [AdditionalItemsAreAllowedByDefaultList](#additionalitemsareallowedbydefaultlist) | validate(arg: [List<*>](#additionalitemsareallowedbydefaultlistbuilder), configuration: SchemaConfiguration) | | [AdditionalItemsAreAllowedByDefault1BoxedString](#additionalitemsareallowedbydefault1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AdditionalItemsAreAllowedByDefault1BoxedVoid](#additionalitemsareallowedbydefault1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AdditionalItemsAreAllowedByDefault1BoxedNumber](#additionalitemsareallowedbydefault1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AdditionalItemsAreAllowedByDefault1BoxedBoolean](#additionalitemsareallowedbydefault1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AdditionalItemsAreAllowedByDefault1BoxedMap](#additionalitemsareallowedbydefault1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AdditionalItemsAreAllowedByDefault1BoxedBoolean](#additionalitemsareallowedbydefault1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AdditionalItemsAreAllowedByDefault1BoxedMap](#additionalitemsareallowedbydefault1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AdditionalItemsAreAllowedByDefault1BoxedList](#additionalitemsareallowedbydefault1boxedlist) | validateAndBox([List<*>](#additionalitemsareallowedbydefaultlistbuilder), configuration: SchemaConfiguration) | | [AdditionalItemsAreAllowedByDefault1Boxed](#additionalitemsareallowedbydefault1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md index c3785564640..f5ee810d1f5 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md @@ -169,19 +169,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [AdditionalpropertiesAreAllowedByDefaultMap](#additionalpropertiesareallowedbydefaultmap) | validate(arg: [Map<?, ?>](#additionalpropertiesareallowedbydefaultmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [AdditionalpropertiesAreAllowedByDefaultMap](#additionalpropertiesareallowedbydefaultmap) | validate(arg: [Map<*, *>](#additionalpropertiesareallowedbydefaultmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AdditionalpropertiesAreAllowedByDefault1BoxedString](#additionalpropertiesareallowedbydefault1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AdditionalpropertiesAreAllowedByDefault1BoxedVoid](#additionalpropertiesareallowedbydefault1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AdditionalpropertiesAreAllowedByDefault1BoxedNumber](#additionalpropertiesareallowedbydefault1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AdditionalpropertiesAreAllowedByDefault1BoxedBoolean](#additionalpropertiesareallowedbydefault1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AdditionalpropertiesAreAllowedByDefault1BoxedMap](#additionalpropertiesareallowedbydefault1boxedmap) | validateAndBox([Map<?, ?>](#additionalpropertiesareallowedbydefaultmapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesAreAllowedByDefault1BoxedBoolean](#additionalpropertiesareallowedbydefault1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AdditionalpropertiesAreAllowedByDefault1BoxedMap](#additionalpropertiesareallowedbydefault1boxedmap) | validateAndBox([Map<*, *>](#additionalpropertiesareallowedbydefaultmapbuilder), configuration: SchemaConfiguration) | | [AdditionalpropertiesAreAllowedByDefault1BoxedList](#additionalpropertiesareallowedbydefault1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AdditionalpropertiesAreAllowedByDefault1Boxed](#additionalpropertiesareallowedbydefault1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md index fdc764ec2a1..90eab2eba43 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md @@ -53,29 +53,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.AdditionalpropertiesCanExistByItself; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.AdditionalpropertiesCanExistByItself -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMap validatedPayload = +val validatedPayload: AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMap = AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1.validate( - new AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMapBuilder() + AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMapBuilder() .additionalProperty("someAdditionalProperty", true) .build(), configuration -); +) ``` ### Field Summary @@ -87,8 +83,8 @@ AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMap val ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [AdditionalpropertiesCanExistByItselfMap](#additionalpropertiescanexistbyitselfmap) | validate(arg: [Map<?, ?>](#additionalpropertiescanexistbyitselfmapbuilder), configuration: SchemaConfiguration) | -| [AdditionalpropertiesCanExistByItself1BoxedMap](#additionalpropertiescanexistbyitself1boxedmap) | validateAndBox([Map<?, ?>](#additionalpropertiescanexistbyitselfmapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesCanExistByItselfMap](#additionalpropertiescanexistbyitselfmap) | validate(arg: [Map<*, *>](#additionalpropertiescanexistbyitselfmapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesCanExistByItself1BoxedMap](#additionalpropertiescanexistbyitself1boxedmap) | validateAndBox([Map<*, *>](#additionalpropertiescanexistbyitselfmapbuilder), configuration: SchemaConfiguration) | | [AdditionalpropertiesCanExistByItself1Boxed](#additionalpropertiescanexistbyitself1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesDoesNotLookInApplicators.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesDoesNotLookInApplicators.md index 311d802ebd0..0db528dc30e 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesDoesNotLookInApplicators.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesDoesNotLookInApplicators.md @@ -175,19 +175,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [AdditionalpropertiesDoesNotLookInApplicatorsMap](#additionalpropertiesdoesnotlookinapplicatorsmap) | validate(arg: [Map<?, ?>](#additionalpropertiesdoesnotlookinapplicatorsmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [AdditionalpropertiesDoesNotLookInApplicatorsMap](#additionalpropertiesdoesnotlookinapplicatorsmap) | validate(arg: [Map<*, *>](#additionalpropertiesdoesnotlookinapplicatorsmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AdditionalpropertiesDoesNotLookInApplicators1BoxedString](#additionalpropertiesdoesnotlookinapplicators1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AdditionalpropertiesDoesNotLookInApplicators1BoxedVoid](#additionalpropertiesdoesnotlookinapplicators1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AdditionalpropertiesDoesNotLookInApplicators1BoxedNumber](#additionalpropertiesdoesnotlookinapplicators1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AdditionalpropertiesDoesNotLookInApplicators1BoxedBoolean](#additionalpropertiesdoesnotlookinapplicators1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AdditionalpropertiesDoesNotLookInApplicators1BoxedMap](#additionalpropertiesdoesnotlookinapplicators1boxedmap) | validateAndBox([Map<?, ?>](#additionalpropertiesdoesnotlookinapplicatorsmapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesDoesNotLookInApplicators1BoxedBoolean](#additionalpropertiesdoesnotlookinapplicators1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AdditionalpropertiesDoesNotLookInApplicators1BoxedMap](#additionalpropertiesdoesnotlookinapplicators1boxedmap) | validateAndBox([Map<*, *>](#additionalpropertiesdoesnotlookinapplicatorsmapbuilder), configuration: SchemaConfiguration) | | [AdditionalpropertiesDoesNotLookInApplicators1BoxedList](#additionalpropertiesdoesnotlookinapplicators1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AdditionalpropertiesDoesNotLookInApplicators1Boxed](#additionalpropertiesdoesnotlookinapplicators1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -351,19 +351,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithNullValuedInstanceProperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithNullValuedInstanceProperties.md index a8be775050b..8350dd3628a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithNullValuedInstanceProperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithNullValuedInstanceProperties.md @@ -53,29 +53,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.AdditionalpropertiesWithNullValuedInstanceProperties; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.AdditionalpropertiesWithNullValuedInstanceProperties -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstancePropertiesMap validatedPayload = +val validatedPayload: AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstancePropertiesMap = AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstanceProperties1.validate( - new AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstancePropertiesMapBuilder() + AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstancePropertiesMapBuilder() .additionalProperty("someAdditionalProperty", null) .build(), configuration -); +) ``` ### Field Summary @@ -87,8 +83,8 @@ AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNul ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [AdditionalpropertiesWithNullValuedInstancePropertiesMap](#additionalpropertieswithnullvaluedinstancepropertiesmap) | validate(arg: [Map<?, ?>](#additionalpropertieswithnullvaluedinstancepropertiesmapbuilder), configuration: SchemaConfiguration) | -| [AdditionalpropertiesWithNullValuedInstanceProperties1BoxedMap](#additionalpropertieswithnullvaluedinstanceproperties1boxedmap) | validateAndBox([Map<?, ?>](#additionalpropertieswithnullvaluedinstancepropertiesmapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesWithNullValuedInstancePropertiesMap](#additionalpropertieswithnullvaluedinstancepropertiesmap) | validate(arg: [Map<*, *>](#additionalpropertieswithnullvaluedinstancepropertiesmapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesWithNullValuedInstanceProperties1BoxedMap](#additionalpropertieswithnullvaluedinstanceproperties1boxedmap) | validateAndBox([Map<*, *>](#additionalpropertieswithnullvaluedinstancepropertiesmapbuilder), configuration: SchemaConfiguration) | | [AdditionalpropertiesWithNullValuedInstanceProperties1Boxed](#additionalpropertieswithnullvaluedinstanceproperties1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithSchema.md index 9b96b2f032d..5b62b442324 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithSchema.md @@ -69,29 +69,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.AdditionalpropertiesWithSchema; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.AdditionalpropertiesWithSchema -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchemaMap validatedPayload = +val validatedPayload: AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchemaMap = AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchema1.validate( - new AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchemaMapBuilder() + AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchemaMapBuilder() .additionalProperty("someAdditionalProperty", true) .build(), configuration -); +) ``` ### Field Summary @@ -104,8 +100,8 @@ AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchemaMap validatedPayloa ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [AdditionalpropertiesWithSchemaMap](#additionalpropertieswithschemamap) | validate(arg: [Map<?, ?>](#additionalpropertieswithschemamapbuilder), configuration: SchemaConfiguration) | -| [AdditionalpropertiesWithSchema1BoxedMap](#additionalpropertieswithschema1boxedmap) | validateAndBox([Map<?, ?>](#additionalpropertieswithschemamapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesWithSchemaMap](#additionalpropertieswithschemamap) | validate(arg: [Map<*, *>](#additionalpropertieswithschemamapbuilder), configuration: SchemaConfiguration) | +| [AdditionalpropertiesWithSchema1BoxedMap](#additionalpropertieswithschema1boxedmap) | validateAndBox([Map<*, *>](#additionalpropertieswithschemamapbuilder), configuration: SchemaConfiguration) | | [AdditionalpropertiesWithSchema1Boxed](#additionalpropertieswithschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Allof.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Allof.md index 5a211961ac4..5815520963b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Allof.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Allof.md @@ -177,19 +177,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Allof1BoxedString](#allof1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Allof1BoxedVoid](#allof1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Allof1BoxedNumber](#allof1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Allof1BoxedBoolean](#allof1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Allof1BoxedMap](#allof1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Allof1BoxedBoolean](#allof1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Allof1BoxedMap](#allof1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Allof1BoxedList](#allof1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Allof1Boxed](#allof1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -325,19 +325,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema1Map](#schema1map) | validate(arg: [Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema1Map](#schema1map) | validate(arg: [Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -562,19 +562,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md index be071761cb0..75cfac35745 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md @@ -175,19 +175,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofCombinedWithAnyofOneof1BoxedString](#allofcombinedwithanyofoneof1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofCombinedWithAnyofOneof1BoxedVoid](#allofcombinedwithanyofoneof1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofCombinedWithAnyofOneof1BoxedNumber](#allofcombinedwithanyofoneof1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofCombinedWithAnyofOneof1BoxedBoolean](#allofcombinedwithanyofoneof1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofCombinedWithAnyofOneof1BoxedMap](#allofcombinedwithanyofoneof1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofCombinedWithAnyofOneof1BoxedBoolean](#allofcombinedwithanyofoneof1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofCombinedWithAnyofOneof1BoxedMap](#allofcombinedwithanyofoneof1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofCombinedWithAnyofOneof1BoxedList](#allofcombinedwithanyofoneof1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofCombinedWithAnyofOneof1Boxed](#allofcombinedwithanyofoneof1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -322,19 +322,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -469,19 +469,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema01BoxedString](#schema01boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema01BoxedVoid](#schema01boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema01BoxedNumber](#schema01boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema01BoxedBoolean](#schema01boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema01BoxedMap](#schema01boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema01BoxedBoolean](#schema01boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema01BoxedMap](#schema01boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema01BoxedList](#schema01boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema01Boxed](#schema01boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -616,19 +616,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema02BoxedString](#schema02boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema02BoxedVoid](#schema02boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema02BoxedNumber](#schema02boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema02BoxedBoolean](#schema02boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema02BoxedMap](#schema02boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema02BoxedBoolean](#schema02boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema02BoxedMap](#schema02boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema02BoxedList](#schema02boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema02Boxed](#schema02boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md index 3797e536800..e0fe3c0cc4f 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md @@ -165,19 +165,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofSimpleTypes1BoxedString](#allofsimpletypes1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofSimpleTypes1BoxedVoid](#allofsimpletypes1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofSimpleTypes1BoxedNumber](#allofsimpletypes1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofSimpleTypes1BoxedBoolean](#allofsimpletypes1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofSimpleTypes1BoxedMap](#allofsimpletypes1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofSimpleTypes1BoxedBoolean](#allofsimpletypes1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofSimpleTypes1BoxedMap](#allofsimpletypes1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofSimpleTypes1BoxedList](#allofsimpletypes1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofSimpleTypes1Boxed](#allofsimpletypes1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -312,19 +312,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -459,19 +459,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md index 2f94b4b3b6a..c3e2a4219f4 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md @@ -184,19 +184,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [AllofWithBaseSchemaMap](#allofwithbaseschemamap) | validate(arg: [Map<?, ?>](#allofwithbaseschemamapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [AllofWithBaseSchemaMap](#allofwithbaseschemamap) | validate(arg: [Map<*, *>](#allofwithbaseschemamapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofWithBaseSchema1BoxedString](#allofwithbaseschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofWithBaseSchema1BoxedVoid](#allofwithbaseschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofWithBaseSchema1BoxedNumber](#allofwithbaseschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofWithBaseSchema1BoxedBoolean](#allofwithbaseschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofWithBaseSchema1BoxedMap](#allofwithbaseschema1boxedmap) | validateAndBox([Map<?, ?>](#allofwithbaseschemamapbuilder), configuration: SchemaConfiguration) | +| [AllofWithBaseSchema1BoxedBoolean](#allofwithbaseschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofWithBaseSchema1BoxedMap](#allofwithbaseschema1boxedmap) | validateAndBox([Map<*, *>](#allofwithbaseschemamapbuilder), configuration: SchemaConfiguration) | | [AllofWithBaseSchema1BoxedList](#allofwithbaseschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofWithBaseSchema1Boxed](#allofwithbaseschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -424,19 +424,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema1Map](#schema1map) | validate(arg: [Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema1Map](#schema1map) | validate(arg: [Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -661,19 +661,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md index 3a4586b5661..8c5d1b108f4 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md @@ -157,19 +157,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofWithOneEmptySchema1BoxedString](#allofwithoneemptyschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofWithOneEmptySchema1BoxedVoid](#allofwithoneemptyschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofWithOneEmptySchema1BoxedNumber](#allofwithoneemptyschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofWithOneEmptySchema1BoxedBoolean](#allofwithoneemptyschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofWithOneEmptySchema1BoxedMap](#allofwithoneemptyschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofWithOneEmptySchema1BoxedBoolean](#allofwithoneemptyschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofWithOneEmptySchema1BoxedMap](#allofwithoneemptyschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofWithOneEmptySchema1BoxedList](#allofwithoneemptyschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofWithOneEmptySchema1Boxed](#allofwithoneemptyschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md index 9e14a960664..26896d1c031 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofWithTheFirstEmptySchema1BoxedString](#allofwiththefirstemptyschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofWithTheFirstEmptySchema1BoxedVoid](#allofwiththefirstemptyschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofWithTheFirstEmptySchema1BoxedNumber](#allofwiththefirstemptyschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofWithTheFirstEmptySchema1BoxedBoolean](#allofwiththefirstemptyschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofWithTheFirstEmptySchema1BoxedMap](#allofwiththefirstemptyschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofWithTheFirstEmptySchema1BoxedBoolean](#allofwiththefirstemptyschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofWithTheFirstEmptySchema1BoxedMap](#allofwiththefirstemptyschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofWithTheFirstEmptySchema1BoxedList](#allofwiththefirstemptyschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofWithTheFirstEmptySchema1Boxed](#allofwiththefirstemptyschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md index b67c14c1c5a..17ba600a8b9 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofWithTheLastEmptySchema1BoxedString](#allofwiththelastemptyschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofWithTheLastEmptySchema1BoxedVoid](#allofwiththelastemptyschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofWithTheLastEmptySchema1BoxedNumber](#allofwiththelastemptyschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofWithTheLastEmptySchema1BoxedBoolean](#allofwiththelastemptyschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofWithTheLastEmptySchema1BoxedMap](#allofwiththelastemptyschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofWithTheLastEmptySchema1BoxedBoolean](#allofwiththelastemptyschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofWithTheLastEmptySchema1BoxedMap](#allofwiththelastemptyschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofWithTheLastEmptySchema1BoxedList](#allofwiththelastemptyschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofWithTheLastEmptySchema1Boxed](#allofwiththelastemptyschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md index 18791b95b8d..ed872f52fe1 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md @@ -165,19 +165,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AllofWithTwoEmptySchemas1BoxedString](#allofwithtwoemptyschemas1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AllofWithTwoEmptySchemas1BoxedVoid](#allofwithtwoemptyschemas1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AllofWithTwoEmptySchemas1BoxedNumber](#allofwithtwoemptyschemas1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AllofWithTwoEmptySchemas1BoxedBoolean](#allofwithtwoemptyschemas1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AllofWithTwoEmptySchemas1BoxedMap](#allofwithtwoemptyschemas1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AllofWithTwoEmptySchemas1BoxedBoolean](#allofwithtwoemptyschemas1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AllofWithTwoEmptySchemas1BoxedMap](#allofwithtwoemptyschemas1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AllofWithTwoEmptySchemas1BoxedList](#allofwithtwoemptyschemas1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AllofWithTwoEmptySchemas1Boxed](#allofwithtwoemptyschemas1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Anyof.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Anyof.md index 0b400ccbe95..40574b1aa2c 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Anyof.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Anyof.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Anyof1BoxedString](#anyof1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Anyof1BoxedVoid](#anyof1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Anyof1BoxedNumber](#anyof1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Anyof1BoxedBoolean](#anyof1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Anyof1BoxedMap](#anyof1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Anyof1BoxedBoolean](#anyof1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Anyof1BoxedMap](#anyof1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Anyof1BoxedList](#anyof1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Anyof1Boxed](#anyof1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -307,19 +307,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md index fa38731618a..accce6dccfa 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md @@ -177,19 +177,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AnyofComplexTypes1BoxedString](#anyofcomplextypes1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AnyofComplexTypes1BoxedVoid](#anyofcomplextypes1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AnyofComplexTypes1BoxedNumber](#anyofcomplextypes1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AnyofComplexTypes1BoxedBoolean](#anyofcomplextypes1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AnyofComplexTypes1BoxedMap](#anyofcomplextypes1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AnyofComplexTypes1BoxedBoolean](#anyofcomplextypes1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AnyofComplexTypes1BoxedMap](#anyofcomplextypes1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AnyofComplexTypes1BoxedList](#anyofcomplextypes1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AnyofComplexTypes1Boxed](#anyofcomplextypes1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -325,19 +325,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema1Map](#schema1map) | validate(arg: [Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema1Map](#schema1map) | validate(arg: [Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -562,19 +562,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md index d0175fa0d3d..a42940a33cf 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md @@ -62,25 +62,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.AnyofWithBaseSchema; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.AnyofWithBaseSchema -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = AnyofWithBaseSchema.AnyofWithBaseSchema1.validate( +val validatedPayload: String = AnyofWithBaseSchema.AnyofWithBaseSchema1.validate( "a", configuration -); +) ``` ### Field Summary @@ -220,26 +216,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minLength = 4 | +| Int | minLength = 4 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -367,26 +363,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxLength = 2 | +| Int | maxLength = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md index 9dacfd34348..4dc4984ad15 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AnyofWithOneEmptySchema1BoxedString](#anyofwithoneemptyschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AnyofWithOneEmptySchema1BoxedVoid](#anyofwithoneemptyschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AnyofWithOneEmptySchema1BoxedNumber](#anyofwithoneemptyschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AnyofWithOneEmptySchema1BoxedBoolean](#anyofwithoneemptyschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AnyofWithOneEmptySchema1BoxedMap](#anyofwithoneemptyschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AnyofWithOneEmptySchema1BoxedBoolean](#anyofwithoneemptyschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AnyofWithOneEmptySchema1BoxedMap](#anyofwithoneemptyschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AnyofWithOneEmptySchema1BoxedList](#anyofwithoneemptyschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AnyofWithOneEmptySchema1Boxed](#anyofwithoneemptyschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByInt.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByInt.md index 1d2e173784f..18177758e2d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByInt.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByInt.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ByInt1BoxedString](#byint1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ByInt1BoxedVoid](#byint1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ByInt1BoxedNumber](#byint1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ByInt1BoxedBoolean](#byint1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ByInt1BoxedMap](#byint1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ByInt1BoxedBoolean](#byint1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ByInt1BoxedMap](#byint1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ByInt1BoxedList](#byint1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ByInt1Boxed](#byint1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByNumber.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByNumber.md index 0ef752b157e..176534986d0 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByNumber.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByNumber.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ByNumber1BoxedString](#bynumber1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ByNumber1BoxedVoid](#bynumber1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ByNumber1BoxedNumber](#bynumber1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ByNumber1BoxedBoolean](#bynumber1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ByNumber1BoxedMap](#bynumber1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ByNumber1BoxedBoolean](#bynumber1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ByNumber1BoxedMap](#bynumber1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ByNumber1BoxedList](#bynumber1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ByNumber1Boxed](#bynumber1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BySmallNumber.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BySmallNumber.md index efb24198916..6fdaee75920 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BySmallNumber.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BySmallNumber.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [BySmallNumber1BoxedString](#bysmallnumber1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [BySmallNumber1BoxedVoid](#bysmallnumber1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [BySmallNumber1BoxedNumber](#bysmallnumber1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [BySmallNumber1BoxedBoolean](#bysmallnumber1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [BySmallNumber1BoxedMap](#bysmallnumber1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [BySmallNumber1BoxedBoolean](#bysmallnumber1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [BySmallNumber1BoxedMap](#bysmallnumber1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [BySmallNumber1BoxedList](#bysmallnumber1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [BySmallNumber1Boxed](#bysmallnumber1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ConstNulCharactersInStrings.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ConstNulCharactersInStrings.md index 2164a4dddf4..dbfa4fd595e 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ConstNulCharactersInStrings.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ConstNulCharactersInStrings.md @@ -151,19 +151,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ConstNulCharactersInStrings1BoxedString](#constnulcharactersinstrings1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ConstNulCharactersInStrings1BoxedVoid](#constnulcharactersinstrings1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ConstNulCharactersInStrings1BoxedNumber](#constnulcharactersinstrings1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ConstNulCharactersInStrings1BoxedBoolean](#constnulcharactersinstrings1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ConstNulCharactersInStrings1BoxedMap](#constnulcharactersinstrings1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ConstNulCharactersInStrings1BoxedBoolean](#constnulcharactersinstrings1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ConstNulCharactersInStrings1BoxedMap](#constnulcharactersinstrings1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ConstNulCharactersInStrings1BoxedList](#constnulcharactersinstrings1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ConstNulCharactersInStrings1Boxed](#constnulcharactersinstrings1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsKeywordValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsKeywordValidation.md index b7ad2bc525d..75ebabb2cb6 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsKeywordValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsKeywordValidation.md @@ -157,19 +157,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ContainsKeywordValidation1BoxedString](#containskeywordvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ContainsKeywordValidation1BoxedVoid](#containskeywordvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ContainsKeywordValidation1BoxedNumber](#containskeywordvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ContainsKeywordValidation1BoxedBoolean](#containskeywordvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ContainsKeywordValidation1BoxedMap](#containskeywordvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ContainsKeywordValidation1BoxedBoolean](#containskeywordvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ContainsKeywordValidation1BoxedMap](#containskeywordvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ContainsKeywordValidation1BoxedList](#containskeywordvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ContainsKeywordValidation1Boxed](#containskeywordvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -304,19 +304,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ContainsBoxedString](#containsboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ContainsBoxedVoid](#containsboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ContainsBoxedNumber](#containsboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ContainsBoxedBoolean](#containsboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ContainsBoxedMap](#containsboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ContainsBoxedBoolean](#containsboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ContainsBoxedMap](#containsboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ContainsBoxedList](#containsboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ContainsBoxed](#containsboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsWithNullInstanceElements.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsWithNullInstanceElements.md index 62745960f5e..9fcebd10188 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsWithNullInstanceElements.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsWithNullInstanceElements.md @@ -152,19 +152,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ContainsWithNullInstanceElements1BoxedString](#containswithnullinstanceelements1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ContainsWithNullInstanceElements1BoxedVoid](#containswithnullinstanceelements1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ContainsWithNullInstanceElements1BoxedNumber](#containswithnullinstanceelements1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ContainsWithNullInstanceElements1BoxedBoolean](#containswithnullinstanceelements1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ContainsWithNullInstanceElements1BoxedMap](#containswithnullinstanceelements1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ContainsWithNullInstanceElements1BoxedBoolean](#containswithnullinstanceelements1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ContainsWithNullInstanceElements1BoxedMap](#containswithnullinstanceelements1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ContainsWithNullInstanceElements1BoxedList](#containswithnullinstanceelements1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ContainsWithNullInstanceElements1Boxed](#containswithnullinstanceelements1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateFormat.md index 79655ce8dbd..cc689d3276d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [DateFormat1BoxedString](#dateformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [DateFormat1BoxedVoid](#dateformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [DateFormat1BoxedNumber](#dateformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [DateFormat1BoxedBoolean](#dateformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [DateFormat1BoxedMap](#dateformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [DateFormat1BoxedBoolean](#dateformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [DateFormat1BoxedMap](#dateformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [DateFormat1BoxedList](#dateformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [DateFormat1Boxed](#dateformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md index 1844f22cea8..dc2e42c4cde 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [DateTimeFormat1BoxedString](#datetimeformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [DateTimeFormat1BoxedVoid](#datetimeformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [DateTimeFormat1BoxedNumber](#datetimeformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [DateTimeFormat1BoxedBoolean](#datetimeformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [DateTimeFormat1BoxedMap](#datetimeformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [DateTimeFormat1BoxedBoolean](#datetimeformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [DateTimeFormat1BoxedMap](#datetimeformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [DateTimeFormat1BoxedList](#datetimeformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [DateTimeFormat1Boxed](#datetimeformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependenciesWithEscapedCharacters.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependenciesWithEscapedCharacters.md index 1a95be1b214..9e00432d5b1 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependenciesWithEscapedCharacters.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependenciesWithEscapedCharacters.md @@ -169,19 +169,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [DependentSchemasDependenciesWithEscapedCharacters1BoxedString](#dependentschemasdependencieswithescapedcharacters1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [DependentSchemasDependenciesWithEscapedCharacters1BoxedVoid](#dependentschemasdependencieswithescapedcharacters1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [DependentSchemasDependenciesWithEscapedCharacters1BoxedNumber](#dependentschemasdependencieswithescapedcharacters1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [DependentSchemasDependenciesWithEscapedCharacters1BoxedBoolean](#dependentschemasdependencieswithescapedcharacters1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [DependentSchemasDependenciesWithEscapedCharacters1BoxedMap](#dependentschemasdependencieswithescapedcharacters1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [DependentSchemasDependenciesWithEscapedCharacters1BoxedBoolean](#dependentschemasdependencieswithescapedcharacters1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [DependentSchemasDependenciesWithEscapedCharacters1BoxedMap](#dependentschemasdependencieswithescapedcharacters1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [DependentSchemasDependenciesWithEscapedCharacters1BoxedList](#dependentschemasdependencieswithescapedcharacters1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [DependentSchemasDependenciesWithEscapedCharacters1Boxed](#dependentschemasdependencieswithescapedcharacters1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -316,19 +316,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [FoobarMap](#foobarmap) | validate(arg: [Map<?, ?>](#foobarmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [FoobarMap](#foobarmap) | validate(arg: [Map<*, *>](#foobarmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [FoobarBoxedString](#foobarboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [FoobarBoxedVoid](#foobarboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [FoobarBoxedNumber](#foobarboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [FoobarBoxedBoolean](#foobarboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [FoobarBoxedMap](#foobarboxedmap) | validateAndBox([Map<?, ?>](#foobarmapbuilder), configuration: SchemaConfiguration) | +| [FoobarBoxedBoolean](#foobarboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [FoobarBoxedMap](#foobarboxedmap) | validateAndBox([Map<*, *>](#foobarmapbuilder), configuration: SchemaConfiguration) | | [FoobarBoxedList](#foobarboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [FoobarBoxed](#foobarboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -518,26 +518,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minProperties = 4 | +| Int | minProperties = 4 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [FootbarBoxedString](#footbarboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [FootbarBoxedVoid](#footbarboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [FootbarBoxedNumber](#footbarboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [FootbarBoxedBoolean](#footbarboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [FootbarBoxedMap](#footbarboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [FootbarBoxedBoolean](#footbarboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [FootbarBoxedMap](#footbarboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [FootbarBoxedList](#footbarboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [FootbarBoxed](#footbarboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependentSubschemaIncompatibleWithRoot.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependentSubschemaIncompatibleWithRoot.md index 55306653ed8..d15a53b981a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependentSubschemaIncompatibleWithRoot.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependentSubschemaIncompatibleWithRoot.md @@ -183,19 +183,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [DependentSchemasDependentSubschemaIncompatibleWithRootMap](#dependentschemasdependentsubschemaincompatiblewithrootmap) | validate(arg: [Map<?, ?>](#dependentschemasdependentsubschemaincompatiblewithrootmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [DependentSchemasDependentSubschemaIncompatibleWithRootMap](#dependentschemasdependentsubschemaincompatiblewithrootmap) | validate(arg: [Map<*, *>](#dependentschemasdependentsubschemaincompatiblewithrootmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedString](#dependentschemasdependentsubschemaincompatiblewithroot1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedVoid](#dependentschemasdependentsubschemaincompatiblewithroot1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedNumber](#dependentschemasdependentsubschemaincompatiblewithroot1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedBoolean](#dependentschemasdependentsubschemaincompatiblewithroot1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedMap](#dependentschemasdependentsubschemaincompatiblewithroot1boxedmap) | validateAndBox([Map<?, ?>](#dependentschemasdependentsubschemaincompatiblewithrootmapbuilder), configuration: SchemaConfiguration) | +| [DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedBoolean](#dependentschemasdependentsubschemaincompatiblewithroot1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedMap](#dependentschemasdependentsubschemaincompatiblewithroot1boxedmap) | validateAndBox([Map<*, *>](#dependentschemasdependentsubschemaincompatiblewithrootmapbuilder), configuration: SchemaConfiguration) | | [DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedList](#dependentschemasdependentsubschemaincompatiblewithroot1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [DependentSchemasDependentSubschemaIncompatibleWithRoot1Boxed](#dependentschemasdependentsubschemaincompatiblewithroot1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -404,27 +404,23 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.DependentSchemasDependentSubschemaIncompatibleWithRoot; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.DependentSchemasDependentSubschemaIncompatibleWithRoot -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -DependentSchemasDependentSubschemaIncompatibleWithRoot.FooMap validatedPayload = +val validatedPayload: DependentSchemasDependentSubschemaIncompatibleWithRoot.FooMap = DependentSchemasDependentSubschemaIncompatibleWithRoot.Foo1.validate( - new DependentSchemasDependentSubschemaIncompatibleWithRoot.FooMapBuilder1() + DependentSchemasDependentSubschemaIncompatibleWithRoot.FooMapBuilder1() .build(), configuration -); +) ``` ### Field Summary @@ -437,8 +433,8 @@ DependentSchemasDependentSubschemaIncompatibleWithRoot.FooMap validatedPayload = ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [FooMap](#foomap) | validate(arg: [Map<?, ?>](#foomapbuilder1), configuration: SchemaConfiguration) | -| [Foo1BoxedMap](#foo1boxedmap) | validateAndBox([Map<?, ?>](#foomapbuilder1), configuration: SchemaConfiguration) | +| [FooMap](#foomap) | validate(arg: [Map<*, *>](#foomapbuilder1), configuration: SchemaConfiguration) | +| [Foo1BoxedMap](#foo1boxedmap) | validateAndBox([Map<*, *>](#foomapbuilder1), configuration: SchemaConfiguration) | | [Foo1Boxed](#foo1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasSingleDependency.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasSingleDependency.md index f62f019fbb4..ef4c40af344 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasSingleDependency.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasSingleDependency.md @@ -167,19 +167,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [DependentSchemasSingleDependency1BoxedString](#dependentschemassingledependency1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [DependentSchemasSingleDependency1BoxedVoid](#dependentschemassingledependency1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [DependentSchemasSingleDependency1BoxedNumber](#dependentschemassingledependency1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [DependentSchemasSingleDependency1BoxedBoolean](#dependentschemassingledependency1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [DependentSchemasSingleDependency1BoxedMap](#dependentschemassingledependency1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [DependentSchemasSingleDependency1BoxedBoolean](#dependentschemassingledependency1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [DependentSchemasSingleDependency1BoxedMap](#dependentschemassingledependency1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [DependentSchemasSingleDependency1BoxedList](#dependentschemassingledependency1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [DependentSchemasSingleDependency1Boxed](#dependentschemassingledependency1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -314,19 +314,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [BarMap](#barmap) | validate(arg: [Map<?, ?>](#barmapbuilder1), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [BarMap](#barmap) | validate(arg: [Map<*, *>](#barmapbuilder1), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [BarBoxedString](#barboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [BarBoxedVoid](#barboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [BarBoxedNumber](#barboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [BarBoxedBoolean](#barboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [BarBoxedMap](#barboxedmap) | validateAndBox([Map<?, ?>](#barmapbuilder1), configuration: SchemaConfiguration) | +| [BarBoxedBoolean](#barboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [BarBoxedMap](#barboxedmap) | validateAndBox([Map<*, *>](#barmapbuilder1), configuration: SchemaConfiguration) | | [BarBoxedList](#barboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [BarBoxed](#barboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DurationFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DurationFormat.md index a0d1e2009ae..6fc0fc5acaf 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DurationFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DurationFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [DurationFormat1BoxedString](#durationformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [DurationFormat1BoxedVoid](#durationformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [DurationFormat1BoxedNumber](#durationformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [DurationFormat1BoxedBoolean](#durationformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [DurationFormat1BoxedMap](#durationformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [DurationFormat1BoxedBoolean](#durationformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [DurationFormat1BoxedMap](#durationformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [DurationFormat1BoxedList](#durationformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [DurationFormat1Boxed](#durationformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmailFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmailFormat.md index 53b4cde33e0..dac13ddd113 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmailFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmailFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [EmailFormat1BoxedString](#emailformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [EmailFormat1BoxedVoid](#emailformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [EmailFormat1BoxedNumber](#emailformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [EmailFormat1BoxedBoolean](#emailformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [EmailFormat1BoxedMap](#emailformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [EmailFormat1BoxedBoolean](#emailformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [EmailFormat1BoxedMap](#emailformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [EmailFormat1BoxedList](#emailformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [EmailFormat1Boxed](#emailformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmptyDependents.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmptyDependents.md index 816e3548dfd..f5cf7265a75 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmptyDependents.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmptyDependents.md @@ -156,19 +156,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [EmptyDependents1BoxedString](#emptydependents1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [EmptyDependents1BoxedVoid](#emptydependents1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [EmptyDependents1BoxedNumber](#emptydependents1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [EmptyDependents1BoxedBoolean](#emptydependents1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [EmptyDependents1BoxedMap](#emptydependents1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [EmptyDependents1BoxedBoolean](#emptydependents1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [EmptyDependents1BoxedMap](#emptydependents1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [EmptyDependents1BoxedList](#emptydependents1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [EmptyDependents1Boxed](#emptydependents1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md index b33bd6fd650..8f60cb361bf 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md @@ -51,25 +51,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumWith0DoesNotMatchFalse; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumWith0DoesNotMatchFalse -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1.validate( +val validatedPayload: Int = EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1.validate( 1, configuration -); +) ``` ### Field Summary @@ -90,7 +86,7 @@ int validatedPayload = EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1.va public enum IntegerEnumWith0DoesNotMatchFalseEnums
extends `Enum` -A class that stores Integer enum values +A class that stores Int enum values ### Enum Constant Summary | Enum Constant | Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md index a296b3a613f..5cae0b2c550 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md @@ -51,25 +51,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumWith1DoesNotMatchTrue; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumWith1DoesNotMatchTrue -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1.validate( +val validatedPayload: Int = EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1.validate( 1, configuration -); +) ``` ### Field Summary @@ -90,7 +86,7 @@ int validatedPayload = EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1.vali public enum IntegerEnumWith1DoesNotMatchTrueEnums
extends `Enum` -A class that stores Integer enum values +A class that stores Int enum values ### Enum Constant Summary | Enum Constant | Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md index 54458d5522a..550856ef545 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md @@ -48,25 +48,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumWithEscapedCharacters; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumWithEscapedCharacters -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = EnumWithEscapedCharacters.EnumWithEscapedCharacters1.validate( +val validatedPayload: String = EnumWithEscapedCharacters.EnumWithEscapedCharacters1.validate( "foo\nbar", configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md index 8055fb6b4d9..dd710d242bb 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md @@ -48,25 +48,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumWithFalseDoesNotMatch0; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumWithFalseDoesNotMatch0 -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // boolean validation -boolean validatedPayload = EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01.validate( +val validatedPayload: Boolean = EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01.validate( false, configuration -); +) ``` ### Field Summary @@ -78,9 +74,9 @@ boolean validatedPayload = EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch0 ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| boolean | validate(arg: [BooleanEnumWithFalseDoesNotMatch0Enums](#booleanenumwithfalsedoesnotmatch0enums), configuration: SchemaConfiguration) | -| [EnumWithFalseDoesNotMatch01BoxedBoolean](#enumwithfalsedoesnotmatch01boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| Boolean | validate(arg: [BooleanEnumWithFalseDoesNotMatch0Enums](#booleanenumwithfalsedoesnotmatch0enums), configuration: SchemaConfiguration) | +| [EnumWithFalseDoesNotMatch01BoxedBoolean](#enumwithfalsedoesnotmatch01boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | | [EnumWithFalseDoesNotMatch01Boxed](#enumwithfalsedoesnotmatch01boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md index c22cd9303bb..b6b635b9f0b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md @@ -48,25 +48,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumWithTrueDoesNotMatch1; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumWithTrueDoesNotMatch1 -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // boolean validation -boolean validatedPayload = EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11.validate( +val validatedPayload: Boolean = EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11.validate( true, configuration -); +) ``` ### Field Summary @@ -78,9 +74,9 @@ boolean validatedPayload = EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11. ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| boolean | validate(arg: [BooleanEnumWithTrueDoesNotMatch1Enums](#booleanenumwithtruedoesnotmatch1enums), configuration: SchemaConfiguration) | -| [EnumWithTrueDoesNotMatch11BoxedBoolean](#enumwithtruedoesnotmatch11boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| Boolean | validate(arg: [BooleanEnumWithTrueDoesNotMatch1Enums](#booleanenumwithtruedoesnotmatch1enums), configuration: SchemaConfiguration) | +| [EnumWithTrueDoesNotMatch11BoxedBoolean](#enumwithtruedoesnotmatch11boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | | [EnumWithTrueDoesNotMatch11Boxed](#enumwithtruedoesnotmatch11boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md index dad4dd136ad..95883b8654d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md @@ -59,31 +59,27 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumsInProperties; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumsInProperties -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -EnumsInProperties.EnumsInPropertiesMap validatedPayload = +val validatedPayload: EnumsInProperties.EnumsInPropertiesMap = EnumsInProperties.EnumsInProperties1.validate( - new EnumsInProperties.EnumsInPropertiesMapBuilder() + EnumsInProperties.EnumsInPropertiesMapBuilder() .bar("bar") .foo("foo") .build(), configuration -); +) ``` ### Field Summary @@ -96,8 +92,8 @@ EnumsInProperties.EnumsInPropertiesMap validatedPayload = ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [EnumsInPropertiesMap](#enumsinpropertiesmap) | validate(arg: [Map<?, ?>](#enumsinpropertiesmapbuilder), configuration: SchemaConfiguration) | -| [EnumsInProperties1BoxedMap](#enumsinproperties1boxedmap) | validateAndBox([Map<?, ?>](#enumsinpropertiesmapbuilder), configuration: SchemaConfiguration) | +| [EnumsInPropertiesMap](#enumsinpropertiesmap) | validate(arg: [Map<*, *>](#enumsinpropertiesmapbuilder), configuration: SchemaConfiguration) | +| [EnumsInProperties1BoxedMap](#enumsinproperties1boxedmap) | validateAndBox([Map<*, *>](#enumsinpropertiesmapbuilder), configuration: SchemaConfiguration) | | [EnumsInProperties1Boxed](#enumsinproperties1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -191,25 +187,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumsInProperties; - -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumsInProperties -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = EnumsInProperties.Bar.validate( +val validatedPayload: String = EnumsInProperties.Bar.validate( "bar", configuration -); +) ``` ### Field Summary @@ -270,25 +262,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.EnumsInProperties; - -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.EnumsInProperties -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = EnumsInProperties.Foo.validate( +val validatedPayload: String = EnumsInProperties.Foo.validate( "foo", configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusivemaximumValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusivemaximumValidation.md index abb9d6bfeb0..e3f259a4d2a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusivemaximumValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusivemaximumValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ExclusivemaximumValidation1BoxedString](#exclusivemaximumvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ExclusivemaximumValidation1BoxedVoid](#exclusivemaximumvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ExclusivemaximumValidation1BoxedNumber](#exclusivemaximumvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ExclusivemaximumValidation1BoxedBoolean](#exclusivemaximumvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ExclusivemaximumValidation1BoxedMap](#exclusivemaximumvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ExclusivemaximumValidation1BoxedBoolean](#exclusivemaximumvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ExclusivemaximumValidation1BoxedMap](#exclusivemaximumvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ExclusivemaximumValidation1BoxedList](#exclusivemaximumvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ExclusivemaximumValidation1Boxed](#exclusivemaximumvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusiveminimumValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusiveminimumValidation.md index aa688f8c18d..0340fa7269f 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusiveminimumValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusiveminimumValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ExclusiveminimumValidation1BoxedString](#exclusiveminimumvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ExclusiveminimumValidation1BoxedVoid](#exclusiveminimumvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ExclusiveminimumValidation1BoxedNumber](#exclusiveminimumvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ExclusiveminimumValidation1BoxedBoolean](#exclusiveminimumvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ExclusiveminimumValidation1BoxedMap](#exclusiveminimumvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ExclusiveminimumValidation1BoxedBoolean](#exclusiveminimumvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ExclusiveminimumValidation1BoxedMap](#exclusiveminimumvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ExclusiveminimumValidation1BoxedList](#exclusiveminimumvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ExclusiveminimumValidation1Boxed](#exclusiveminimumvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/FloatDivisionInf.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/FloatDivisionInf.md index e7135dd2f87..5f83c69553a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/FloatDivisionInf.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/FloatDivisionInf.md @@ -46,25 +46,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.FloatDivisionInf; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.FloatDivisionInf -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = FloatDivisionInf.FloatDivisionInf1.validate( +val validatedPayload: Int = FloatDivisionInf.FloatDivisionInf1.validate( 1L, configuration -); +) ``` ### Field Summary @@ -77,7 +73,7 @@ int validatedPayload = FloatDivisionInf.FloatDivisionInf1.validate( ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| long | validate(arg: long, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | | [FloatDivisionInf1BoxedNumber](#floatdivisioninf1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | | [FloatDivisionInf1Boxed](#floatdivisioninf1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md index e36ce2a34e8..d4c203a30c0 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md @@ -169,19 +169,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [ForbiddenPropertyMap](#forbiddenpropertymap) | validate(arg: [Map<?, ?>](#forbiddenpropertymapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [ForbiddenPropertyMap](#forbiddenpropertymap) | validate(arg: [Map<*, *>](#forbiddenpropertymapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ForbiddenProperty1BoxedString](#forbiddenproperty1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ForbiddenProperty1BoxedVoid](#forbiddenproperty1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ForbiddenProperty1BoxedNumber](#forbiddenproperty1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ForbiddenProperty1BoxedBoolean](#forbiddenproperty1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ForbiddenProperty1BoxedMap](#forbiddenproperty1boxedmap) | validateAndBox([Map<?, ?>](#forbiddenpropertymapbuilder), configuration: SchemaConfiguration) | +| [ForbiddenProperty1BoxedBoolean](#forbiddenproperty1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ForbiddenProperty1BoxedMap](#forbiddenproperty1boxedmap) | validateAndBox([Map<*, *>](#forbiddenpropertymapbuilder), configuration: SchemaConfiguration) | | [ForbiddenProperty1BoxedList](#forbiddenproperty1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ForbiddenProperty1Boxed](#forbiddenproperty1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -363,19 +363,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [FooBoxedString](#fooboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [FooBoxedVoid](#fooboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [FooBoxedNumber](#fooboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [FooBoxedBoolean](#fooboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [FooBoxedMap](#fooboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [FooBoxedBoolean](#fooboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [FooBoxedMap](#fooboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [FooBoxedList](#fooboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [FooBoxed](#fooboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/HostnameFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/HostnameFormat.md index 9bfb2c2b465..15f1fa66b05 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/HostnameFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/HostnameFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [HostnameFormat1BoxedString](#hostnameformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [HostnameFormat1BoxedVoid](#hostnameformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [HostnameFormat1BoxedNumber](#hostnameformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [HostnameFormat1BoxedBoolean](#hostnameformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [HostnameFormat1BoxedMap](#hostnameformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [HostnameFormat1BoxedBoolean](#hostnameformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [HostnameFormat1BoxedMap](#hostnameformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [HostnameFormat1BoxedList](#hostnameformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [HostnameFormat1Boxed](#hostnameformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnEmailFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnEmailFormat.md index 697c25e4a13..a1c8918a1c8 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnEmailFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnEmailFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IdnEmailFormat1BoxedString](#idnemailformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IdnEmailFormat1BoxedVoid](#idnemailformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IdnEmailFormat1BoxedNumber](#idnemailformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IdnEmailFormat1BoxedBoolean](#idnemailformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IdnEmailFormat1BoxedMap](#idnemailformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IdnEmailFormat1BoxedBoolean](#idnemailformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IdnEmailFormat1BoxedMap](#idnemailformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IdnEmailFormat1BoxedList](#idnemailformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IdnEmailFormat1Boxed](#idnemailformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnHostnameFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnHostnameFormat.md index 432027c74d7..3cf551cd254 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnHostnameFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnHostnameFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IdnHostnameFormat1BoxedString](#idnhostnameformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IdnHostnameFormat1BoxedVoid](#idnhostnameformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IdnHostnameFormat1BoxedNumber](#idnhostnameformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IdnHostnameFormat1BoxedBoolean](#idnhostnameformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IdnHostnameFormat1BoxedMap](#idnhostnameformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IdnHostnameFormat1BoxedBoolean](#idnhostnameformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IdnHostnameFormat1BoxedMap](#idnhostnameformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IdnHostnameFormat1BoxedList](#idnhostnameformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IdnHostnameFormat1Boxed](#idnhostnameformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndElseWithoutThen.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndElseWithoutThen.md index 6bf87cb8605..0641511973d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndElseWithoutThen.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndElseWithoutThen.md @@ -166,19 +166,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IfAndElseWithoutThen1BoxedString](#ifandelsewithoutthen1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IfAndElseWithoutThen1BoxedVoid](#ifandelsewithoutthen1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IfAndElseWithoutThen1BoxedNumber](#ifandelsewithoutthen1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IfAndElseWithoutThen1BoxedBoolean](#ifandelsewithoutthen1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IfAndElseWithoutThen1BoxedMap](#ifandelsewithoutthen1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IfAndElseWithoutThen1BoxedBoolean](#ifandelsewithoutthen1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IfAndElseWithoutThen1BoxedMap](#ifandelsewithoutthen1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IfAndElseWithoutThen1BoxedList](#ifandelsewithoutthen1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IfAndElseWithoutThen1Boxed](#ifandelsewithoutthen1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -313,19 +313,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxedString](#ifschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IfSchemaBoxedVoid](#ifschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IfSchemaBoxedNumber](#ifschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IfSchemaBoxedList](#ifschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxed](#ifschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -460,19 +460,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ElseSchemaBoxedString](#elseschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ElseSchemaBoxedVoid](#elseschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ElseSchemaBoxedNumber](#elseschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ElseSchemaBoxedBoolean](#elseschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ElseSchemaBoxedMap](#elseschemaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ElseSchemaBoxedBoolean](#elseschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ElseSchemaBoxedMap](#elseschemaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ElseSchemaBoxedList](#elseschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ElseSchemaBoxed](#elseschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndThenWithoutElse.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndThenWithoutElse.md index f6816588009..37d38b5be51 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndThenWithoutElse.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndThenWithoutElse.md @@ -166,19 +166,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IfAndThenWithoutElse1BoxedString](#ifandthenwithoutelse1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IfAndThenWithoutElse1BoxedVoid](#ifandthenwithoutelse1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IfAndThenWithoutElse1BoxedNumber](#ifandthenwithoutelse1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IfAndThenWithoutElse1BoxedBoolean](#ifandthenwithoutelse1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IfAndThenWithoutElse1BoxedMap](#ifandthenwithoutelse1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IfAndThenWithoutElse1BoxedBoolean](#ifandthenwithoutelse1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IfAndThenWithoutElse1BoxedMap](#ifandthenwithoutelse1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IfAndThenWithoutElse1BoxedList](#ifandthenwithoutelse1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IfAndThenWithoutElse1Boxed](#ifandthenwithoutelse1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -313,19 +313,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ThenBoxedString](#thenboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ThenBoxedVoid](#thenboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ThenBoxedNumber](#thenboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ThenBoxedBoolean](#thenboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ThenBoxedMap](#thenboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ThenBoxedBoolean](#thenboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ThenBoxedMap](#thenboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ThenBoxedList](#thenboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ThenBoxed](#thenboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -460,19 +460,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxedString](#ifschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IfSchemaBoxedVoid](#ifschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IfSchemaBoxedNumber](#ifschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IfSchemaBoxedList](#ifschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxed](#ifschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.md index 548b66dd824..6dc63c3a987 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.md @@ -178,19 +178,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedString](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedVoid](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedNumber](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedBoolean](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedMap](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedBoolean](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedMap](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedList](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1Boxed](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -325,19 +325,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ThenBoxedString](#thenboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ThenBoxedVoid](#thenboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ThenBoxedNumber](#thenboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ThenBoxedBoolean](#thenboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ThenBoxedMap](#thenboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ThenBoxedBoolean](#thenboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ThenBoxedMap](#thenboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ThenBoxedList](#thenboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ThenBoxed](#thenboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -476,26 +476,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxLength = 4 | +| Int | maxLength = 4 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxedString](#ifschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IfSchemaBoxedVoid](#ifschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IfSchemaBoxedNumber](#ifschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IfSchemaBoxedList](#ifschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxed](#ifschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -630,19 +630,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ElseSchemaBoxedString](#elseschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ElseSchemaBoxedVoid](#elseschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ElseSchemaBoxedNumber](#elseschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ElseSchemaBoxedBoolean](#elseschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ElseSchemaBoxedMap](#elseschemaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ElseSchemaBoxedBoolean](#elseschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ElseSchemaBoxedMap](#elseschemaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ElseSchemaBoxedList](#elseschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ElseSchemaBoxed](#elseschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreElseWithoutIf.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreElseWithoutIf.md index c0103ee93df..26aa36427a8 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreElseWithoutIf.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreElseWithoutIf.md @@ -159,19 +159,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IgnoreElseWithoutIf1BoxedString](#ignoreelsewithoutif1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IgnoreElseWithoutIf1BoxedVoid](#ignoreelsewithoutif1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IgnoreElseWithoutIf1BoxedNumber](#ignoreelsewithoutif1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IgnoreElseWithoutIf1BoxedBoolean](#ignoreelsewithoutif1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IgnoreElseWithoutIf1BoxedMap](#ignoreelsewithoutif1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IgnoreElseWithoutIf1BoxedBoolean](#ignoreelsewithoutif1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IgnoreElseWithoutIf1BoxedMap](#ignoreelsewithoutif1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IgnoreElseWithoutIf1BoxedList](#ignoreelsewithoutif1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IgnoreElseWithoutIf1Boxed](#ignoreelsewithoutif1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -306,19 +306,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ElseSchemaBoxedString](#elseschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ElseSchemaBoxedVoid](#elseschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ElseSchemaBoxedNumber](#elseschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ElseSchemaBoxedBoolean](#elseschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ElseSchemaBoxedMap](#elseschemaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ElseSchemaBoxedBoolean](#elseschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ElseSchemaBoxedMap](#elseschemaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ElseSchemaBoxedList](#elseschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ElseSchemaBoxed](#elseschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreIfWithoutThenOrElse.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreIfWithoutThenOrElse.md index d0c00d7da34..967e446fc9f 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreIfWithoutThenOrElse.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreIfWithoutThenOrElse.md @@ -159,19 +159,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IgnoreIfWithoutThenOrElse1BoxedString](#ignoreifwithoutthenorelse1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IgnoreIfWithoutThenOrElse1BoxedVoid](#ignoreifwithoutthenorelse1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IgnoreIfWithoutThenOrElse1BoxedNumber](#ignoreifwithoutthenorelse1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IgnoreIfWithoutThenOrElse1BoxedBoolean](#ignoreifwithoutthenorelse1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IgnoreIfWithoutThenOrElse1BoxedMap](#ignoreifwithoutthenorelse1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IgnoreIfWithoutThenOrElse1BoxedBoolean](#ignoreifwithoutthenorelse1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IgnoreIfWithoutThenOrElse1BoxedMap](#ignoreifwithoutthenorelse1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IgnoreIfWithoutThenOrElse1BoxedList](#ignoreifwithoutthenorelse1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IgnoreIfWithoutThenOrElse1Boxed](#ignoreifwithoutthenorelse1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -306,19 +306,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxedString](#ifschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IfSchemaBoxedVoid](#ifschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IfSchemaBoxedNumber](#ifschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IfSchemaBoxedList](#ifschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxed](#ifschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreThenWithoutIf.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreThenWithoutIf.md index fb5782aefc5..3465c09dff0 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreThenWithoutIf.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreThenWithoutIf.md @@ -159,19 +159,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IgnoreThenWithoutIf1BoxedString](#ignorethenwithoutif1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IgnoreThenWithoutIf1BoxedVoid](#ignorethenwithoutif1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IgnoreThenWithoutIf1BoxedNumber](#ignorethenwithoutif1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IgnoreThenWithoutIf1BoxedBoolean](#ignorethenwithoutif1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IgnoreThenWithoutIf1BoxedMap](#ignorethenwithoutif1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IgnoreThenWithoutIf1BoxedBoolean](#ignorethenwithoutif1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IgnoreThenWithoutIf1BoxedMap](#ignorethenwithoutif1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IgnoreThenWithoutIf1BoxedList](#ignorethenwithoutif1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IgnoreThenWithoutIf1Boxed](#ignorethenwithoutif1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -306,19 +306,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ThenBoxedString](#thenboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ThenBoxedVoid](#thenboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ThenBoxedNumber](#thenboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ThenBoxedBoolean](#thenboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ThenBoxedMap](#thenboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ThenBoxedBoolean](#thenboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ThenBoxedMap](#thenboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ThenBoxedList](#thenboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ThenBoxed](#thenboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv4Format.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv4Format.md index 0ddec8c4233..c783a2b1273 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv4Format.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv4Format.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Ipv4Format1BoxedString](#ipv4format1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Ipv4Format1BoxedVoid](#ipv4format1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Ipv4Format1BoxedNumber](#ipv4format1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Ipv4Format1BoxedBoolean](#ipv4format1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Ipv4Format1BoxedMap](#ipv4format1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Ipv4Format1BoxedBoolean](#ipv4format1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Ipv4Format1BoxedMap](#ipv4format1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Ipv4Format1BoxedList](#ipv4format1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Ipv4Format1Boxed](#ipv4format1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv6Format.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv6Format.md index d78fd50c8b4..17cb88f4fc7 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv6Format.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv6Format.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Ipv6Format1BoxedString](#ipv6format1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Ipv6Format1BoxedVoid](#ipv6format1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Ipv6Format1BoxedNumber](#ipv6format1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Ipv6Format1BoxedBoolean](#ipv6format1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Ipv6Format1BoxedMap](#ipv6format1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Ipv6Format1BoxedBoolean](#ipv6format1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Ipv6Format1BoxedMap](#ipv6format1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Ipv6Format1BoxedList](#ipv6format1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Ipv6Format1Boxed](#ipv6format1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriFormat.md index a044d8df914..f63a95dbc35 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IriFormat1BoxedString](#iriformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IriFormat1BoxedVoid](#iriformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IriFormat1BoxedNumber](#iriformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IriFormat1BoxedBoolean](#iriformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IriFormat1BoxedMap](#iriformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IriFormat1BoxedBoolean](#iriformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IriFormat1BoxedMap](#iriformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IriFormat1BoxedList](#iriformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IriFormat1Boxed](#iriformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriReferenceFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriReferenceFormat.md index c5014f940bc..99cc2225e5b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriReferenceFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriReferenceFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IriReferenceFormat1BoxedString](#irireferenceformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IriReferenceFormat1BoxedVoid](#irireferenceformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IriReferenceFormat1BoxedNumber](#irireferenceformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IriReferenceFormat1BoxedBoolean](#irireferenceformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IriReferenceFormat1BoxedMap](#irireferenceformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IriReferenceFormat1BoxedBoolean](#irireferenceformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IriReferenceFormat1BoxedMap](#irireferenceformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IriReferenceFormat1BoxedList](#irireferenceformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IriReferenceFormat1Boxed](#irireferenceformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsContains.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsContains.md index ba6593d7fd7..85d2708ddf8 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsContains.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsContains.md @@ -66,27 +66,23 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.ItemsContains; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.ItemsContains -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -ItemsContains.ItemsContainsList validatedPayload = +val validatedPayload: ItemsContains.ItemsContainsList = ItemsContains.ItemsContains1.validate( - new ItemsContains.ItemsContainsListBuilder() + ItemsContains.ItemsContainsListBuilder() .build(), configuration -); +) ``` ### Field Summary @@ -271,19 +267,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ItemsBoxedString](#itemsboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ItemsBoxedVoid](#itemsboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ItemsBoxedNumber](#itemsboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ItemsBoxedBoolean](#itemsboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ItemsBoxedMap](#itemsboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ItemsBoxedBoolean](#itemsboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ItemsBoxedMap](#itemsboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ItemsBoxedList](#itemsboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ItemsBoxed](#itemsboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -418,19 +414,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ContainsBoxedString](#containsboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ContainsBoxedVoid](#containsboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ContainsBoxedNumber](#containsboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ContainsBoxedBoolean](#containsboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ContainsBoxedMap](#containsboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ContainsBoxedBoolean](#containsboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ContainsBoxedMap](#containsboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ContainsBoxedList](#containsboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ContainsBoxed](#containsboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsDoesNotLookInApplicatorsValidCase.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsDoesNotLookInApplicatorsValidCase.md index 6a5f4ef5f68..fcee43fa841 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsDoesNotLookInApplicatorsValidCase.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsDoesNotLookInApplicatorsValidCase.md @@ -58,27 +58,23 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.ItemsDoesNotLookInApplicatorsValidCase; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.ItemsDoesNotLookInApplicatorsValidCase -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCaseList validatedPayload = +val validatedPayload: ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCaseList = ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCase1.validate( - new ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCaseListBuilder() + ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCaseListBuilder() .build(), configuration -); +) ``` ### Field Summary @@ -262,19 +258,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ItemsBoxedString](#itemsboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ItemsBoxedVoid](#itemsboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ItemsBoxedNumber](#itemsboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ItemsBoxedBoolean](#itemsboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ItemsBoxedMap](#itemsboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ItemsBoxedBoolean](#itemsboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ItemsBoxedMap](#itemsboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ItemsBoxedList](#itemsboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ItemsBoxed](#itemsboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsWithNullInstanceElements.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsWithNullInstanceElements.md index c7321c84a46..3004e234778 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsWithNullInstanceElements.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsWithNullInstanceElements.md @@ -53,29 +53,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.ItemsWithNullInstanceElements; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.ItemsWithNullInstanceElements -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -ItemsWithNullInstanceElements.ItemsWithNullInstanceElementsList validatedPayload = +val validatedPayload: ItemsWithNullInstanceElements.ItemsWithNullInstanceElementsList = ItemsWithNullInstanceElements.ItemsWithNullInstanceElements1.validate( - new ItemsWithNullInstanceElements.ItemsWithNullInstanceElementsListBuilder() + ItemsWithNullInstanceElements.ItemsWithNullInstanceElementsListBuilder() .add(null) .build(), configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md index 6eddd588dff..586c19a0f14 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [JsonPointerFormat1BoxedString](#jsonpointerformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [JsonPointerFormat1BoxedVoid](#jsonpointerformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [JsonPointerFormat1BoxedNumber](#jsonpointerformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [JsonPointerFormat1BoxedBoolean](#jsonpointerformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [JsonPointerFormat1BoxedMap](#jsonpointerformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [JsonPointerFormat1BoxedBoolean](#jsonpointerformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [JsonPointerFormat1BoxedMap](#jsonpointerformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [JsonPointerFormat1BoxedList](#jsonpointerformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [JsonPointerFormat1Boxed](#jsonpointerformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxcontainsWithoutContainsIsIgnored.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxcontainsWithoutContainsIsIgnored.md index 5d7c780cf02..ef4ca40d19b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxcontainsWithoutContainsIsIgnored.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxcontainsWithoutContainsIsIgnored.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxContains = 1 | +| Int | maxContains = 1 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MaxcontainsWithoutContainsIsIgnored1BoxedString](#maxcontainswithoutcontainsisignored1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MaxcontainsWithoutContainsIsIgnored1BoxedVoid](#maxcontainswithoutcontainsisignored1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MaxcontainsWithoutContainsIsIgnored1BoxedNumber](#maxcontainswithoutcontainsisignored1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MaxcontainsWithoutContainsIsIgnored1BoxedBoolean](#maxcontainswithoutcontainsisignored1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MaxcontainsWithoutContainsIsIgnored1BoxedMap](#maxcontainswithoutcontainsisignored1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MaxcontainsWithoutContainsIsIgnored1BoxedBoolean](#maxcontainswithoutcontainsisignored1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MaxcontainsWithoutContainsIsIgnored1BoxedMap](#maxcontainswithoutcontainsisignored1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MaxcontainsWithoutContainsIsIgnored1BoxedList](#maxcontainswithoutcontainsisignored1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MaxcontainsWithoutContainsIsIgnored1Boxed](#maxcontainswithoutcontainsisignored1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidation.md index 30da56e71cc..690d7c14985 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MaximumValidation1BoxedString](#maximumvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MaximumValidation1BoxedVoid](#maximumvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MaximumValidation1BoxedNumber](#maximumvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MaximumValidation1BoxedBoolean](#maximumvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MaximumValidation1BoxedMap](#maximumvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MaximumValidation1BoxedBoolean](#maximumvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MaximumValidation1BoxedMap](#maximumvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MaximumValidation1BoxedList](#maximumvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MaximumValidation1Boxed](#maximumvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md index c9730a8592b..4cfa5c3d815 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MaximumValidationWithUnsignedInteger1BoxedString](#maximumvalidationwithunsignedinteger1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MaximumValidationWithUnsignedInteger1BoxedVoid](#maximumvalidationwithunsignedinteger1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MaximumValidationWithUnsignedInteger1BoxedNumber](#maximumvalidationwithunsignedinteger1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MaximumValidationWithUnsignedInteger1BoxedBoolean](#maximumvalidationwithunsignedinteger1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MaximumValidationWithUnsignedInteger1BoxedMap](#maximumvalidationwithunsignedinteger1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MaximumValidationWithUnsignedInteger1BoxedBoolean](#maximumvalidationwithunsignedinteger1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MaximumValidationWithUnsignedInteger1BoxedMap](#maximumvalidationwithunsignedinteger1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MaximumValidationWithUnsignedInteger1BoxedList](#maximumvalidationwithunsignedinteger1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MaximumValidationWithUnsignedInteger1Boxed](#maximumvalidationwithunsignedinteger1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md index 3ea5955c1d2..e16781663ce 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxItems = 2 | +| Int | maxItems = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MaxitemsValidation1BoxedString](#maxitemsvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MaxitemsValidation1BoxedVoid](#maxitemsvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MaxitemsValidation1BoxedNumber](#maxitemsvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MaxitemsValidation1BoxedBoolean](#maxitemsvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MaxitemsValidation1BoxedMap](#maxitemsvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MaxitemsValidation1BoxedBoolean](#maxitemsvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MaxitemsValidation1BoxedMap](#maxitemsvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MaxitemsValidation1BoxedList](#maxitemsvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MaxitemsValidation1Boxed](#maxitemsvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md index bce5aed91d9..0232b8b9973 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxLength = 2 | +| Int | maxLength = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MaxlengthValidation1BoxedString](#maxlengthvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MaxlengthValidation1BoxedVoid](#maxlengthvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MaxlengthValidation1BoxedNumber](#maxlengthvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MaxlengthValidation1BoxedBoolean](#maxlengthvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MaxlengthValidation1BoxedMap](#maxlengthvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MaxlengthValidation1BoxedBoolean](#maxlengthvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MaxlengthValidation1BoxedMap](#maxlengthvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MaxlengthValidation1BoxedList](#maxlengthvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MaxlengthValidation1Boxed](#maxlengthvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md index 06a37326fda..b3137f64e3a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxProperties = 0 | +| Int | maxProperties = 0 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Maxproperties0MeansTheObjectIsEmpty1BoxedString](#maxproperties0meanstheobjectisempty1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Maxproperties0MeansTheObjectIsEmpty1BoxedVoid](#maxproperties0meanstheobjectisempty1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Maxproperties0MeansTheObjectIsEmpty1BoxedNumber](#maxproperties0meanstheobjectisempty1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Maxproperties0MeansTheObjectIsEmpty1BoxedBoolean](#maxproperties0meanstheobjectisempty1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Maxproperties0MeansTheObjectIsEmpty1BoxedMap](#maxproperties0meanstheobjectisempty1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Maxproperties0MeansTheObjectIsEmpty1BoxedBoolean](#maxproperties0meanstheobjectisempty1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Maxproperties0MeansTheObjectIsEmpty1BoxedMap](#maxproperties0meanstheobjectisempty1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Maxproperties0MeansTheObjectIsEmpty1BoxedList](#maxproperties0meanstheobjectisempty1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Maxproperties0MeansTheObjectIsEmpty1Boxed](#maxproperties0meanstheobjectisempty1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md index 8b04a4d21ac..6d983c0d5df 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxProperties = 2 | +| Int | maxProperties = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MaxpropertiesValidation1BoxedString](#maxpropertiesvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MaxpropertiesValidation1BoxedVoid](#maxpropertiesvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MaxpropertiesValidation1BoxedNumber](#maxpropertiesvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MaxpropertiesValidation1BoxedBoolean](#maxpropertiesvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MaxpropertiesValidation1BoxedMap](#maxpropertiesvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MaxpropertiesValidation1BoxedBoolean](#maxpropertiesvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MaxpropertiesValidation1BoxedMap](#maxpropertiesvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MaxpropertiesValidation1BoxedList](#maxpropertiesvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MaxpropertiesValidation1Boxed](#maxpropertiesvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MincontainsWithoutContainsIsIgnored.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MincontainsWithoutContainsIsIgnored.md index e7e2a699ba7..737b13d0b1e 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MincontainsWithoutContainsIsIgnored.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MincontainsWithoutContainsIsIgnored.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minContains = 1 | +| Int | minContains = 1 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MincontainsWithoutContainsIsIgnored1BoxedString](#mincontainswithoutcontainsisignored1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MincontainsWithoutContainsIsIgnored1BoxedVoid](#mincontainswithoutcontainsisignored1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MincontainsWithoutContainsIsIgnored1BoxedNumber](#mincontainswithoutcontainsisignored1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MincontainsWithoutContainsIsIgnored1BoxedBoolean](#mincontainswithoutcontainsisignored1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MincontainsWithoutContainsIsIgnored1BoxedMap](#mincontainswithoutcontainsisignored1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MincontainsWithoutContainsIsIgnored1BoxedBoolean](#mincontainswithoutcontainsisignored1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MincontainsWithoutContainsIsIgnored1BoxedMap](#mincontainswithoutcontainsisignored1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MincontainsWithoutContainsIsIgnored1BoxedList](#mincontainswithoutcontainsisignored1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MincontainsWithoutContainsIsIgnored1Boxed](#mincontainswithoutcontainsisignored1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidation.md index 94694cf69ec..250a3d0e5f2 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MinimumValidation1BoxedString](#minimumvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MinimumValidation1BoxedVoid](#minimumvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MinimumValidation1BoxedNumber](#minimumvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MinimumValidation1BoxedBoolean](#minimumvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MinimumValidation1BoxedMap](#minimumvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MinimumValidation1BoxedBoolean](#minimumvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MinimumValidation1BoxedMap](#minimumvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MinimumValidation1BoxedList](#minimumvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MinimumValidation1Boxed](#minimumvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md index b898faa9cd1..c53ef5a6e3c 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MinimumValidationWithSignedInteger1BoxedString](#minimumvalidationwithsignedinteger1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MinimumValidationWithSignedInteger1BoxedVoid](#minimumvalidationwithsignedinteger1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MinimumValidationWithSignedInteger1BoxedNumber](#minimumvalidationwithsignedinteger1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MinimumValidationWithSignedInteger1BoxedBoolean](#minimumvalidationwithsignedinteger1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MinimumValidationWithSignedInteger1BoxedMap](#minimumvalidationwithsignedinteger1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MinimumValidationWithSignedInteger1BoxedBoolean](#minimumvalidationwithsignedinteger1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MinimumValidationWithSignedInteger1BoxedMap](#minimumvalidationwithsignedinteger1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MinimumValidationWithSignedInteger1BoxedList](#minimumvalidationwithsignedinteger1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MinimumValidationWithSignedInteger1Boxed](#minimumvalidationwithsignedinteger1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md index e095c974cd9..1a60b834c4d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minItems = 1 | +| Int | minItems = 1 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MinitemsValidation1BoxedString](#minitemsvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MinitemsValidation1BoxedVoid](#minitemsvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MinitemsValidation1BoxedNumber](#minitemsvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MinitemsValidation1BoxedBoolean](#minitemsvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MinitemsValidation1BoxedMap](#minitemsvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MinitemsValidation1BoxedBoolean](#minitemsvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MinitemsValidation1BoxedMap](#minitemsvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MinitemsValidation1BoxedList](#minitemsvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MinitemsValidation1Boxed](#minitemsvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md index 3905f4a2411..0d297ac6a05 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minLength = 2 | +| Int | minLength = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MinlengthValidation1BoxedString](#minlengthvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MinlengthValidation1BoxedVoid](#minlengthvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MinlengthValidation1BoxedNumber](#minlengthvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MinlengthValidation1BoxedBoolean](#minlengthvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MinlengthValidation1BoxedMap](#minlengthvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MinlengthValidation1BoxedBoolean](#minlengthvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MinlengthValidation1BoxedMap](#minlengthvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MinlengthValidation1BoxedList](#minlengthvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MinlengthValidation1Boxed](#minlengthvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md index 27161315772..123f8710fb8 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md @@ -142,26 +142,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minProperties = 1 | +| Int | minProperties = 1 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MinpropertiesValidation1BoxedString](#minpropertiesvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MinpropertiesValidation1BoxedVoid](#minpropertiesvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MinpropertiesValidation1BoxedNumber](#minpropertiesvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MinpropertiesValidation1BoxedBoolean](#minpropertiesvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MinpropertiesValidation1BoxedMap](#minpropertiesvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MinpropertiesValidation1BoxedBoolean](#minpropertiesvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MinpropertiesValidation1BoxedMap](#minpropertiesvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MinpropertiesValidation1BoxedList](#minpropertiesvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MinpropertiesValidation1Boxed](#minpropertiesvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleDependentsRequired.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleDependentsRequired.md index f55a9db95b1..0273d6b2108 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleDependentsRequired.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleDependentsRequired.md @@ -158,19 +158,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MultipleDependentsRequired1BoxedString](#multipledependentsrequired1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MultipleDependentsRequired1BoxedVoid](#multipledependentsrequired1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MultipleDependentsRequired1BoxedNumber](#multipledependentsrequired1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MultipleDependentsRequired1BoxedBoolean](#multipledependentsrequired1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MultipleDependentsRequired1BoxedMap](#multipledependentsrequired1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MultipleDependentsRequired1BoxedBoolean](#multipledependentsrequired1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MultipleDependentsRequired1BoxedMap](#multipledependentsrequired1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MultipleDependentsRequired1BoxedList](#multipledependentsrequired1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MultipleDependentsRequired1Boxed](#multipledependentsrequired1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleSimultaneousPatternpropertiesAreValidated.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleSimultaneousPatternpropertiesAreValidated.md index 9e89e2d1b98..1e7a623de33 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleSimultaneousPatternpropertiesAreValidated.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleSimultaneousPatternpropertiesAreValidated.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [MultipleSimultaneousPatternpropertiesAreValidated1BoxedString](#multiplesimultaneouspatternpropertiesarevalidated1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [MultipleSimultaneousPatternpropertiesAreValidated1BoxedVoid](#multiplesimultaneouspatternpropertiesarevalidated1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [MultipleSimultaneousPatternpropertiesAreValidated1BoxedNumber](#multiplesimultaneouspatternpropertiesarevalidated1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [MultipleSimultaneousPatternpropertiesAreValidated1BoxedBoolean](#multiplesimultaneouspatternpropertiesarevalidated1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [MultipleSimultaneousPatternpropertiesAreValidated1BoxedMap](#multiplesimultaneouspatternpropertiesarevalidated1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [MultipleSimultaneousPatternpropertiesAreValidated1BoxedBoolean](#multiplesimultaneouspatternpropertiesarevalidated1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [MultipleSimultaneousPatternpropertiesAreValidated1BoxedMap](#multiplesimultaneouspatternpropertiesarevalidated1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [MultipleSimultaneousPatternpropertiesAreValidated1BoxedList](#multiplesimultaneouspatternpropertiesarevalidated1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [MultipleSimultaneousPatternpropertiesAreValidated1Boxed](#multiplesimultaneouspatternpropertiesarevalidated1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -307,19 +307,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [AaaBoxedString](#aaaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [AaaBoxedVoid](#aaaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [AaaBoxedNumber](#aaaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [AaaBoxedBoolean](#aaaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [AaaBoxedMap](#aaaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [AaaBoxedBoolean](#aaaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [AaaBoxedMap](#aaaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [AaaBoxedList](#aaaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [AaaBoxed](#aaaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleTypesCanBeSpecifiedInAnArray.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleTypesCanBeSpecifiedInAnArray.md index 7b35e51a0c9..f0a484c5d15 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleTypesCanBeSpecifiedInAnArray.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleTypesCanBeSpecifiedInAnArray.md @@ -65,31 +65,27 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.MultipleTypesCanBeSpecifiedInAnArray; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.MultipleTypesCanBeSpecifiedInAnArray -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanBeSpecifiedInAnArray1.validate( +val validatedPayload: Int = MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanBeSpecifiedInAnArray1.validate( 1L, configuration -); +) // String validation -String validatedPayload = MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanBeSpecifiedInAnArray1.validate( +val validatedPayload: String = MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanBeSpecifiedInAnArray1.validate( "a", configuration -); +) ``` ### Field Summary @@ -101,7 +97,7 @@ String validatedPayload = MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanB ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| long | validate(arg: long, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | | [MultipleTypesCanBeSpecifiedInAnArray1BoxedNumber](#multipletypescanbespecifiedinanarray1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | | String | validate(arg: String, configuration: SchemaConfiguration) | | [MultipleTypesCanBeSpecifiedInAnArray1BoxedString](#multipletypescanbespecifiedinanarray1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md index 708628006e4..e03aee22372 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [NestedAllofToCheckValidationSemantics1BoxedString](#nestedalloftocheckvalidationsemantics1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [NestedAllofToCheckValidationSemantics1BoxedVoid](#nestedalloftocheckvalidationsemantics1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [NestedAllofToCheckValidationSemantics1BoxedNumber](#nestedalloftocheckvalidationsemantics1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [NestedAllofToCheckValidationSemantics1BoxedBoolean](#nestedalloftocheckvalidationsemantics1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [NestedAllofToCheckValidationSemantics1BoxedMap](#nestedalloftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [NestedAllofToCheckValidationSemantics1BoxedBoolean](#nestedalloftocheckvalidationsemantics1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [NestedAllofToCheckValidationSemantics1BoxedMap](#nestedalloftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [NestedAllofToCheckValidationSemantics1BoxedList](#nestedalloftocheckvalidationsemantics1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [NestedAllofToCheckValidationSemantics1Boxed](#nestedalloftocheckvalidationsemantics1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -307,19 +307,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md index d145f8fdf0a..69052621055 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [NestedAnyofToCheckValidationSemantics1BoxedString](#nestedanyoftocheckvalidationsemantics1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [NestedAnyofToCheckValidationSemantics1BoxedVoid](#nestedanyoftocheckvalidationsemantics1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [NestedAnyofToCheckValidationSemantics1BoxedNumber](#nestedanyoftocheckvalidationsemantics1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [NestedAnyofToCheckValidationSemantics1BoxedBoolean](#nestedanyoftocheckvalidationsemantics1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [NestedAnyofToCheckValidationSemantics1BoxedMap](#nestedanyoftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [NestedAnyofToCheckValidationSemantics1BoxedBoolean](#nestedanyoftocheckvalidationsemantics1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [NestedAnyofToCheckValidationSemantics1BoxedMap](#nestedanyoftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [NestedAnyofToCheckValidationSemantics1BoxedList](#nestedanyoftocheckvalidationsemantics1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [NestedAnyofToCheckValidationSemantics1Boxed](#nestedanyoftocheckvalidationsemantics1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -307,19 +307,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedItems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedItems.md index f609bc5ec46..35847c30b79 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedItems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedItems.md @@ -68,24 +68,20 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NestedItems; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NestedItems -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -NestedItems.NestedItemsList validatedPayload = +val validatedPayload: NestedItems.NestedItemsList = NestedItems.NestedItems1.validate( - new NestedItems.NestedItemsListBuilder() + NestedItems.NestedItemsListBuilder() .add( listOf( listOf( @@ -97,7 +93,7 @@ NestedItems.NestedItemsList validatedPayload = ) .build(), configuration -); +) ``` ### Field Summary @@ -175,24 +171,20 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NestedItems; - -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NestedItems -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -NestedItems.ItemsList2 validatedPayload = +val validatedPayload: NestedItems.ItemsList2 = NestedItems.Items.validate( - new NestedItems.ItemsListBuilder2() + NestedItems.ItemsListBuilder2() .add( listOf( listOf( @@ -202,7 +194,7 @@ NestedItems.ItemsList2 validatedPayload = ) .build(), configuration -); +) ``` ### Field Summary @@ -280,24 +272,20 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NestedItems; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NestedItems -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -NestedItems.ItemsList1 validatedPayload = +val validatedPayload: NestedItems.ItemsList1 = NestedItems.Items1.validate( - new NestedItems.ItemsListBuilder1() + NestedItems.ItemsListBuilder1() .add( listOf( 1 @@ -305,7 +293,7 @@ NestedItems.ItemsList1 validatedPayload = ) .build(), configuration -); +) ``` ### Field Summary @@ -383,29 +371,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NestedItems; - -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NestedItems -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -NestedItems.ItemsList validatedPayload = +val validatedPayload: NestedItems.ItemsList = NestedItems.Items2.validate( - new NestedItems.ItemsListBuilder() + NestedItems.ItemsListBuilder() .add(1) .build(), configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md index 6e78e1ba783..56984b6ed8d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [NestedOneofToCheckValidationSemantics1BoxedString](#nestedoneoftocheckvalidationsemantics1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [NestedOneofToCheckValidationSemantics1BoxedVoid](#nestedoneoftocheckvalidationsemantics1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [NestedOneofToCheckValidationSemantics1BoxedNumber](#nestedoneoftocheckvalidationsemantics1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [NestedOneofToCheckValidationSemantics1BoxedBoolean](#nestedoneoftocheckvalidationsemantics1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [NestedOneofToCheckValidationSemantics1BoxedMap](#nestedoneoftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [NestedOneofToCheckValidationSemantics1BoxedBoolean](#nestedoneoftocheckvalidationsemantics1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [NestedOneofToCheckValidationSemantics1BoxedMap](#nestedoneoftocheckvalidationsemantics1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [NestedOneofToCheckValidationSemantics1BoxedList](#nestedoneoftocheckvalidationsemantics1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [NestedOneofToCheckValidationSemantics1Boxed](#nestedoneoftocheckvalidationsemantics1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -307,19 +307,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonAsciiPatternWithAdditionalproperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonAsciiPatternWithAdditionalproperties.md index 86530abe5e7..031d7cf332a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonAsciiPatternWithAdditionalproperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonAsciiPatternWithAdditionalproperties.md @@ -66,27 +66,23 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NonAsciiPatternWithAdditionalproperties; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NonAsciiPatternWithAdditionalproperties -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalpropertiesMap validatedPayload = +val validatedPayload: NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalpropertiesMap = NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalproperties1.validate( - new NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalpropertiesMapBuilder() + NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalpropertiesMapBuilder() .build(), configuration -); +) ``` ### Field Summary @@ -99,8 +95,8 @@ NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalpropertiesM ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [NonAsciiPatternWithAdditionalpropertiesMap](#nonasciipatternwithadditionalpropertiesmap) | validate(arg: [Map<?, ?>](#nonasciipatternwithadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | -| [NonAsciiPatternWithAdditionalproperties1BoxedMap](#nonasciipatternwithadditionalproperties1boxedmap) | validateAndBox([Map<?, ?>](#nonasciipatternwithadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | +| [NonAsciiPatternWithAdditionalpropertiesMap](#nonasciipatternwithadditionalpropertiesmap) | validate(arg: [Map<*, *>](#nonasciipatternwithadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | +| [NonAsciiPatternWithAdditionalproperties1BoxedMap](#nonasciipatternwithadditionalproperties1boxedmap) | validateAndBox([Map<*, *>](#nonasciipatternwithadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | | [NonAsciiPatternWithAdditionalproperties1Boxed](#nonasciipatternwithadditionalproperties1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonInterferenceAcrossCombinedSchemas.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonInterferenceAcrossCombinedSchemas.md index 39f210a06d0..e4cdfd63603 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonInterferenceAcrossCombinedSchemas.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonInterferenceAcrossCombinedSchemas.md @@ -197,19 +197,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [NonInterferenceAcrossCombinedSchemas1BoxedString](#noninterferenceacrosscombinedschemas1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [NonInterferenceAcrossCombinedSchemas1BoxedVoid](#noninterferenceacrosscombinedschemas1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [NonInterferenceAcrossCombinedSchemas1BoxedNumber](#noninterferenceacrosscombinedschemas1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [NonInterferenceAcrossCombinedSchemas1BoxedBoolean](#noninterferenceacrosscombinedschemas1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [NonInterferenceAcrossCombinedSchemas1BoxedMap](#noninterferenceacrosscombinedschemas1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [NonInterferenceAcrossCombinedSchemas1BoxedBoolean](#noninterferenceacrosscombinedschemas1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [NonInterferenceAcrossCombinedSchemas1BoxedMap](#noninterferenceacrosscombinedschemas1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [NonInterferenceAcrossCombinedSchemas1BoxedList](#noninterferenceacrosscombinedschemas1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [NonInterferenceAcrossCombinedSchemas1Boxed](#noninterferenceacrosscombinedschemas1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -344,19 +344,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema2BoxedString](#schema2boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema2BoxedVoid](#schema2boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema2BoxedNumber](#schema2boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema2BoxedBoolean](#schema2boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema2BoxedMap](#schema2boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema2BoxedBoolean](#schema2boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema2BoxedMap](#schema2boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema2BoxedList](#schema2boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema2Boxed](#schema2boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -491,19 +491,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ElseSchemaBoxedString](#elseschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ElseSchemaBoxedVoid](#elseschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ElseSchemaBoxedNumber](#elseschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ElseSchemaBoxedBoolean](#elseschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ElseSchemaBoxedMap](#elseschemaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ElseSchemaBoxedBoolean](#elseschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ElseSchemaBoxedMap](#elseschemaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ElseSchemaBoxedList](#elseschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ElseSchemaBoxed](#elseschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -638,19 +638,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -785,19 +785,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ThenBoxedString](#thenboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ThenBoxedVoid](#thenboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ThenBoxedNumber](#thenboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ThenBoxedBoolean](#thenboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ThenBoxedMap](#thenboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ThenBoxedBoolean](#thenboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ThenBoxedMap](#thenboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ThenBoxedList](#thenboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ThenBoxed](#thenboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -932,19 +932,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -1079,19 +1079,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxedString](#ifschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IfSchemaBoxedVoid](#ifschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IfSchemaBoxedNumber](#ifschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IfSchemaBoxedList](#ifschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxed](#ifschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Not.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Not.md index 4e1250b94c4..5c7f49889ba 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Not.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Not.md @@ -152,19 +152,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Not1BoxedString](#not1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Not1BoxedVoid](#not1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Not1BoxedNumber](#not1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Not1BoxedBoolean](#not1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Not1BoxedMap](#not1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Not1BoxedBoolean](#not1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Not1BoxedMap](#not1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Not1BoxedList](#not1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Not1Boxed](#not1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md index 2578fcfd7c1..f482909b92e 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md @@ -159,19 +159,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [NotMoreComplexSchema1BoxedString](#notmorecomplexschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [NotMoreComplexSchema1BoxedVoid](#notmorecomplexschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [NotMoreComplexSchema1BoxedNumber](#notmorecomplexschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [NotMoreComplexSchema1BoxedBoolean](#notmorecomplexschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [NotMoreComplexSchema1BoxedMap](#notmorecomplexschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [NotMoreComplexSchema1BoxedBoolean](#notmorecomplexschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [NotMoreComplexSchema1BoxedMap](#notmorecomplexschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [NotMoreComplexSchema1BoxedList](#notmorecomplexschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [NotMoreComplexSchema1Boxed](#notmorecomplexschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -208,29 +208,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NotMoreComplexSchema; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NotMoreComplexSchema -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -NotMoreComplexSchema.NotMap validatedPayload = +val validatedPayload: NotMoreComplexSchema.NotMap = NotMoreComplexSchema.Not.validate( - new NotMoreComplexSchema.NotMapBuilder() + NotMoreComplexSchema.NotMapBuilder() .foo("a") .build(), configuration -); +) ``` ### Field Summary @@ -242,8 +238,8 @@ NotMoreComplexSchema.NotMap validatedPayload = ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [NotMap](#notmap) | validate(arg: [Map<?, ?>](#notmapbuilder), configuration: SchemaConfiguration) | -| [NotBoxedMap](#notboxedmap) | validateAndBox([Map<?, ?>](#notmapbuilder), configuration: SchemaConfiguration) | +| [NotMap](#notmap) | validate(arg: [Map<*, *>](#notmapbuilder), configuration: SchemaConfiguration) | +| [NotBoxedMap](#notboxedmap) | validateAndBox([Map<*, *>](#notmapbuilder), configuration: SchemaConfiguration) | | [NotBoxed](#notboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMultipleTypes.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMultipleTypes.md index 441488b38d5..b390604be58 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMultipleTypes.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMultipleTypes.md @@ -153,19 +153,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [NotMultipleTypes1BoxedString](#notmultipletypes1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [NotMultipleTypes1BoxedVoid](#notmultipletypes1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [NotMultipleTypes1BoxedNumber](#notmultipletypes1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [NotMultipleTypes1BoxedBoolean](#notmultipletypes1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [NotMultipleTypes1BoxedMap](#notmultipletypes1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [NotMultipleTypes1BoxedBoolean](#notmultipletypes1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [NotMultipleTypes1BoxedMap](#notmultipletypes1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [NotMultipleTypes1BoxedList](#notmultipletypes1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [NotMultipleTypes1Boxed](#notmultipletypes1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -220,31 +220,27 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NotMultipleTypes; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NotMultipleTypes -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = NotMultipleTypes.Not.validate( +val validatedPayload: Int = NotMultipleTypes.Not.validate( 1L, configuration -); +) // boolean validation -boolean validatedPayload = NotMultipleTypes.Not.validate( +val validatedPayload: Boolean = NotMultipleTypes.Not.validate( true, configuration -); +) ``` ### Field Summary @@ -256,10 +252,10 @@ boolean validatedPayload = NotMultipleTypes.Not.validate( ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| long | validate(arg: long, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | | [NotBoxedNumber](#notboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [NotBoxedBoolean](#notboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [NotBoxedBoolean](#notboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | | [NotBoxed](#notboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md index 3fa79cb0018..bb6edb1453a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md @@ -48,25 +48,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.NulCharactersInStrings; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.NulCharactersInStrings -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = NulCharactersInStrings.NulCharactersInStrings1.validate( +val validatedPayload: String = NulCharactersInStrings.NulCharactersInStrings1.validate( "hello\u0000there", configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md index a80a93be1e8..0626f8af721 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md @@ -159,19 +159,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [ObjectPropertiesValidationMap](#objectpropertiesvalidationmap) | validate(arg: [Map<?, ?>](#objectpropertiesvalidationmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [ObjectPropertiesValidationMap](#objectpropertiesvalidationmap) | validate(arg: [Map<*, *>](#objectpropertiesvalidationmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ObjectPropertiesValidation1BoxedString](#objectpropertiesvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ObjectPropertiesValidation1BoxedVoid](#objectpropertiesvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ObjectPropertiesValidation1BoxedNumber](#objectpropertiesvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ObjectPropertiesValidation1BoxedBoolean](#objectpropertiesvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ObjectPropertiesValidation1BoxedMap](#objectpropertiesvalidation1boxedmap) | validateAndBox([Map<?, ?>](#objectpropertiesvalidationmapbuilder), configuration: SchemaConfiguration) | +| [ObjectPropertiesValidation1BoxedBoolean](#objectpropertiesvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ObjectPropertiesValidation1BoxedMap](#objectpropertiesvalidation1boxedmap) | validateAndBox([Map<*, *>](#objectpropertiesvalidationmapbuilder), configuration: SchemaConfiguration) | | [ObjectPropertiesValidation1BoxedList](#objectpropertiesvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ObjectPropertiesValidation1Boxed](#objectpropertiesvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Oneof.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Oneof.md index c94e5017546..7d78c0ba37f 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Oneof.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Oneof.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Oneof1BoxedString](#oneof1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Oneof1BoxedVoid](#oneof1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Oneof1BoxedNumber](#oneof1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Oneof1BoxedBoolean](#oneof1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Oneof1BoxedMap](#oneof1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Oneof1BoxedBoolean](#oneof1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Oneof1BoxedMap](#oneof1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Oneof1BoxedList](#oneof1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Oneof1Boxed](#oneof1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -307,19 +307,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md index 42bf6a2067a..ae89d4929b6 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md @@ -177,19 +177,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [OneofComplexTypes1BoxedString](#oneofcomplextypes1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [OneofComplexTypes1BoxedVoid](#oneofcomplextypes1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [OneofComplexTypes1BoxedNumber](#oneofcomplextypes1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [OneofComplexTypes1BoxedBoolean](#oneofcomplextypes1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [OneofComplexTypes1BoxedMap](#oneofcomplextypes1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [OneofComplexTypes1BoxedBoolean](#oneofcomplextypes1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [OneofComplexTypes1BoxedMap](#oneofcomplextypes1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [OneofComplexTypes1BoxedList](#oneofcomplextypes1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [OneofComplexTypes1Boxed](#oneofcomplextypes1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -325,19 +325,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema1Map](#schema1map) | validate(arg: [Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema1Map](#schema1map) | validate(arg: [Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -562,19 +562,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md index ec2efa5bd7a..1076b3333d6 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md @@ -62,25 +62,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.OneofWithBaseSchema; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.OneofWithBaseSchema -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = OneofWithBaseSchema.OneofWithBaseSchema1.validate( +val validatedPayload: String = OneofWithBaseSchema.OneofWithBaseSchema1.validate( "a", configuration -); +) ``` ### Field Summary @@ -220,26 +216,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | maxLength = 4 | +| Int | maxLength = 4 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -367,26 +363,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minLength = 2 | +| Int | minLength = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md index 3c41a98cb37..d437a9d04b2 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [OneofWithEmptySchema1BoxedString](#oneofwithemptyschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [OneofWithEmptySchema1BoxedVoid](#oneofwithemptyschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [OneofWithEmptySchema1BoxedNumber](#oneofwithemptyschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [OneofWithEmptySchema1BoxedBoolean](#oneofwithemptyschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [OneofWithEmptySchema1BoxedMap](#oneofwithemptyschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [OneofWithEmptySchema1BoxedBoolean](#oneofwithemptyschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [OneofWithEmptySchema1BoxedMap](#oneofwithemptyschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [OneofWithEmptySchema1BoxedList](#oneofwithemptyschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [OneofWithEmptySchema1Boxed](#oneofwithemptyschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md index 5fb44f316d2..654e75c26c9 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md @@ -75,8 +75,8 @@ A schema class that validates payloads ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | -| [OneofWithRequired1BoxedMap](#oneofwithrequired1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | +| [OneofWithRequired1BoxedMap](#oneofwithrequired1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [OneofWithRequired1Boxed](#oneofwithrequired1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -210,19 +210,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema1Map](#schema1map) | validate(arg: [Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema1Map](#schema1map) | validate(arg: [Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<?, ?>](#schema1mapbuilder), configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox([Map<*, *>](#schema1mapbuilder), configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -477,19 +477,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [Schema0Map](#schema0map) | validate(arg: [Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [Schema0Map](#schema0map) | validate(arg: [Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<?, ?>](#schema0mapbuilder), configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox([Map<*, *>](#schema0mapbuilder), configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md index db50b22bddc..55e8e387781 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PatternIsNotAnchored1BoxedString](#patternisnotanchored1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PatternIsNotAnchored1BoxedVoid](#patternisnotanchored1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PatternIsNotAnchored1BoxedNumber](#patternisnotanchored1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PatternIsNotAnchored1BoxedBoolean](#patternisnotanchored1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PatternIsNotAnchored1BoxedMap](#patternisnotanchored1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [PatternIsNotAnchored1BoxedBoolean](#patternisnotanchored1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PatternIsNotAnchored1BoxedMap](#patternisnotanchored1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [PatternIsNotAnchored1BoxedList](#patternisnotanchored1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PatternIsNotAnchored1Boxed](#patternisnotanchored1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternValidation.md index 38aabdd0f51..020ca576c3d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PatternValidation1BoxedString](#patternvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PatternValidation1BoxedVoid](#patternvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PatternValidation1BoxedNumber](#patternvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PatternValidation1BoxedBoolean](#patternvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PatternValidation1BoxedMap](#patternvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [PatternValidation1BoxedBoolean](#patternvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PatternValidation1BoxedMap](#patternvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [PatternValidation1BoxedList](#patternvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PatternValidation1Boxed](#patternvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesValidatesPropertiesMatchingARegex.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesValidatesPropertiesMatchingARegex.md index 4699b05b70e..2bb869c5a0c 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesValidatesPropertiesMatchingARegex.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesValidatesPropertiesMatchingARegex.md @@ -152,19 +152,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PatternpropertiesValidatesPropertiesMatchingARegex1BoxedString](#patternpropertiesvalidatespropertiesmatchingaregex1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PatternpropertiesValidatesPropertiesMatchingARegex1BoxedVoid](#patternpropertiesvalidatespropertiesmatchingaregex1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PatternpropertiesValidatesPropertiesMatchingARegex1BoxedNumber](#patternpropertiesvalidatespropertiesmatchingaregex1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PatternpropertiesValidatesPropertiesMatchingARegex1BoxedBoolean](#patternpropertiesvalidatespropertiesmatchingaregex1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PatternpropertiesValidatesPropertiesMatchingARegex1BoxedMap](#patternpropertiesvalidatespropertiesmatchingaregex1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [PatternpropertiesValidatesPropertiesMatchingARegex1BoxedBoolean](#patternpropertiesvalidatespropertiesmatchingaregex1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PatternpropertiesValidatesPropertiesMatchingARegex1BoxedMap](#patternpropertiesvalidatespropertiesmatchingaregex1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [PatternpropertiesValidatesPropertiesMatchingARegex1BoxedList](#patternpropertiesvalidatespropertiesmatchingaregex1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PatternpropertiesValidatesPropertiesMatchingARegex1Boxed](#patternpropertiesvalidatespropertiesmatchingaregex1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesWithNullValuedInstanceProperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesWithNullValuedInstanceProperties.md index 08959f1f8a6..64651ceda89 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesWithNullValuedInstanceProperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesWithNullValuedInstanceProperties.md @@ -152,19 +152,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PatternpropertiesWithNullValuedInstanceProperties1BoxedString](#patternpropertieswithnullvaluedinstanceproperties1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PatternpropertiesWithNullValuedInstanceProperties1BoxedVoid](#patternpropertieswithnullvaluedinstanceproperties1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PatternpropertiesWithNullValuedInstanceProperties1BoxedNumber](#patternpropertieswithnullvaluedinstanceproperties1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PatternpropertiesWithNullValuedInstanceProperties1BoxedBoolean](#patternpropertieswithnullvaluedinstanceproperties1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PatternpropertiesWithNullValuedInstanceProperties1BoxedMap](#patternpropertieswithnullvaluedinstanceproperties1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [PatternpropertiesWithNullValuedInstanceProperties1BoxedBoolean](#patternpropertieswithnullvaluedinstanceproperties1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PatternpropertiesWithNullValuedInstanceProperties1BoxedMap](#patternpropertieswithnullvaluedinstanceproperties1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [PatternpropertiesWithNullValuedInstanceProperties1BoxedList](#patternpropertieswithnullvaluedinstanceproperties1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PatternpropertiesWithNullValuedInstanceProperties1Boxed](#patternpropertieswithnullvaluedinstanceproperties1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsValidationAdjustsTheStartingIndexForItems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsValidationAdjustsTheStartingIndexForItems.md index 7bef5b19137..e83690f3833 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsValidationAdjustsTheStartingIndexForItems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsValidationAdjustsTheStartingIndexForItems.md @@ -56,29 +56,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.PrefixitemsValidationAdjustsTheStartingIndexForItems; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.PrefixitemsValidationAdjustsTheStartingIndexForItems -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItemsList validatedPayload = +val validatedPayload: PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItemsList = PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItems1.validate( - new PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItemsListBuilder() + PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItemsListBuilder() .add(1) .build(), configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsWithNullInstanceElements.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsWithNullInstanceElements.md index c549c837813..3253e13237a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsWithNullInstanceElements.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsWithNullInstanceElements.md @@ -156,19 +156,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | [PrefixitemsWithNullInstanceElementsList](#prefixitemswithnullinstanceelementslist) | validate(arg: [List<*>](#prefixitemswithnullinstanceelementslistbuilder), configuration: SchemaConfiguration) | | [PrefixitemsWithNullInstanceElements1BoxedString](#prefixitemswithnullinstanceelements1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PrefixitemsWithNullInstanceElements1BoxedVoid](#prefixitemswithnullinstanceelements1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PrefixitemsWithNullInstanceElements1BoxedNumber](#prefixitemswithnullinstanceelements1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PrefixitemsWithNullInstanceElements1BoxedBoolean](#prefixitemswithnullinstanceelements1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PrefixitemsWithNullInstanceElements1BoxedMap](#prefixitemswithnullinstanceelements1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [PrefixitemsWithNullInstanceElements1BoxedBoolean](#prefixitemswithnullinstanceelements1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PrefixitemsWithNullInstanceElements1BoxedMap](#prefixitemswithnullinstanceelements1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [PrefixitemsWithNullInstanceElements1BoxedList](#prefixitemswithnullinstanceelements1boxedlist) | validateAndBox([List<*>](#prefixitemswithnullinstanceelementslistbuilder), configuration: SchemaConfiguration) | | [PrefixitemsWithNullInstanceElements1Boxed](#prefixitemswithnullinstanceelements1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesPatternpropertiesAdditionalpropertiesInteraction.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesPatternpropertiesAdditionalpropertiesInteraction.md index 70a77d46f18..229f2334530 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesPatternpropertiesAdditionalpropertiesInteraction.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesPatternpropertiesAdditionalpropertiesInteraction.md @@ -67,29 +67,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.PropertiesPatternpropertiesAdditionalpropertiesInteraction; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.PropertiesPatternpropertiesAdditionalpropertiesInteraction -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteractionMap validatedPayload = +val validatedPayload: PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteractionMap = PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteraction1.validate( - new PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteractionMapBuilder() + PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteractionMapBuilder() .additionalProperty("someAdditionalProperty", 1) .build(), configuration -); +) ``` ### Field Summary @@ -103,8 +99,8 @@ PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternprop ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [PropertiesPatternpropertiesAdditionalpropertiesInteractionMap](#propertiespatternpropertiesadditionalpropertiesinteractionmap) | validate(arg: [Map<?, ?>](#propertiespatternpropertiesadditionalpropertiesinteractionmapbuilder), configuration: SchemaConfiguration) | -| [PropertiesPatternpropertiesAdditionalpropertiesInteraction1BoxedMap](#propertiespatternpropertiesadditionalpropertiesinteraction1boxedmap) | validateAndBox([Map<?, ?>](#propertiespatternpropertiesadditionalpropertiesinteractionmapbuilder), configuration: SchemaConfiguration) | +| [PropertiesPatternpropertiesAdditionalpropertiesInteractionMap](#propertiespatternpropertiesadditionalpropertiesinteractionmap) | validate(arg: [Map<*, *>](#propertiespatternpropertiesadditionalpropertiesinteractionmapbuilder), configuration: SchemaConfiguration) | +| [PropertiesPatternpropertiesAdditionalpropertiesInteraction1BoxedMap](#propertiespatternpropertiesadditionalpropertiesinteraction1boxedmap) | validateAndBox([Map<*, *>](#propertiespatternpropertiesadditionalpropertiesinteractionmapbuilder), configuration: SchemaConfiguration) | | [PropertiesPatternpropertiesAdditionalpropertiesInteraction1Boxed](#propertiespatternpropertiesadditionalpropertiesinteraction1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -213,7 +209,7 @@ A schema class that validates payloads | Modifier and Type | Field and Description | | ----------------- | ---------------------- | | Set> | type = setOf(List::class.java) | -| Integer | maxItems = 3 | +| Int | maxItems = 3 | ### Method Summary | Modifier and Type | Method and Description | @@ -346,26 +342,26 @@ A schema class that validates payloads ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | -| Integer | minItems = 2 | +| Int | minItems = 2 | ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [FoBoxedString](#foboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [FoBoxedVoid](#foboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [FoBoxedNumber](#foboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [FoBoxedBoolean](#foboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [FoBoxedMap](#foboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [FoBoxedBoolean](#foboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [FoBoxedMap](#foboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [FoBoxedList](#foboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [FoBoxed](#foboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWhoseNamesAreJavascriptObjectPropertyNames.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWhoseNamesAreJavascriptObjectPropertyNames.md index 0cb472ad7c2..a01fd3448b5 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWhoseNamesAreJavascriptObjectPropertyNames.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWhoseNamesAreJavascriptObjectPropertyNames.md @@ -172,19 +172,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [PropertiesWhoseNamesAreJavascriptObjectPropertyNamesMap](#propertieswhosenamesarejavascriptobjectpropertynamesmap) | validate(arg: [Map<?, ?>](#propertieswhosenamesarejavascriptobjectpropertynamesmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [PropertiesWhoseNamesAreJavascriptObjectPropertyNamesMap](#propertieswhosenamesarejavascriptobjectpropertynamesmap) | validate(arg: [Map<*, *>](#propertieswhosenamesarejavascriptobjectpropertynamesmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedString](#propertieswhosenamesarejavascriptobjectpropertynames1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedVoid](#propertieswhosenamesarejavascriptobjectpropertynames1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedNumber](#propertieswhosenamesarejavascriptobjectpropertynames1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedBoolean](#propertieswhosenamesarejavascriptobjectpropertynames1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedMap](#propertieswhosenamesarejavascriptobjectpropertynames1boxedmap) | validateAndBox([Map<?, ?>](#propertieswhosenamesarejavascriptobjectpropertynamesmapbuilder), configuration: SchemaConfiguration) | +| [PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedBoolean](#propertieswhosenamesarejavascriptobjectpropertynames1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedMap](#propertieswhosenamesarejavascriptobjectpropertynames1boxedmap) | validateAndBox([Map<*, *>](#propertieswhosenamesarejavascriptobjectpropertynamesmapbuilder), configuration: SchemaConfiguration) | | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedList](#propertieswhosenamesarejavascriptobjectpropertynames1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames1Boxed](#propertieswhosenamesarejavascriptobjectpropertynames1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -409,19 +409,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [ToStringMap](#tostringmap) | validate(arg: [Map<?, ?>](#tostringmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [ToStringMap](#tostringmap) | validate(arg: [Map<*, *>](#tostringmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ToStringSchemaBoxedString](#tostringschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ToStringSchemaBoxedVoid](#tostringschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ToStringSchemaBoxedNumber](#tostringschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ToStringSchemaBoxedBoolean](#tostringschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ToStringSchemaBoxedMap](#tostringschemaboxedmap) | validateAndBox([Map<?, ?>](#tostringmapbuilder), configuration: SchemaConfiguration) | +| [ToStringSchemaBoxedBoolean](#tostringschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ToStringSchemaBoxedMap](#tostringschemaboxedmap) | validateAndBox([Map<*, *>](#tostringmapbuilder), configuration: SchemaConfiguration) | | [ToStringSchemaBoxedList](#tostringschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ToStringSchemaBoxed](#tostringschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md index 385cc3ca185..b602055af40 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md @@ -171,19 +171,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [PropertiesWithEscapedCharactersMap](#propertieswithescapedcharactersmap) | validate(arg: [Map<?, ?>](#propertieswithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [PropertiesWithEscapedCharactersMap](#propertieswithescapedcharactersmap) | validate(arg: [Map<*, *>](#propertieswithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PropertiesWithEscapedCharacters1BoxedString](#propertieswithescapedcharacters1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PropertiesWithEscapedCharacters1BoxedVoid](#propertieswithescapedcharacters1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PropertiesWithEscapedCharacters1BoxedNumber](#propertieswithescapedcharacters1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PropertiesWithEscapedCharacters1BoxedBoolean](#propertieswithescapedcharacters1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PropertiesWithEscapedCharacters1BoxedMap](#propertieswithescapedcharacters1boxedmap) | validateAndBox([Map<?, ?>](#propertieswithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | +| [PropertiesWithEscapedCharacters1BoxedBoolean](#propertieswithescapedcharacters1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PropertiesWithEscapedCharacters1BoxedMap](#propertieswithescapedcharacters1boxedmap) | validateAndBox([Map<*, *>](#propertieswithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | | [PropertiesWithEscapedCharacters1BoxedList](#propertieswithescapedcharacters1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PropertiesWithEscapedCharacters1Boxed](#propertieswithescapedcharacters1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithNullValuedInstanceProperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithNullValuedInstanceProperties.md index 5e0d69eee7d..036f36236c6 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithNullValuedInstanceProperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithNullValuedInstanceProperties.md @@ -156,19 +156,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [PropertiesWithNullValuedInstancePropertiesMap](#propertieswithnullvaluedinstancepropertiesmap) | validate(arg: [Map<?, ?>](#propertieswithnullvaluedinstancepropertiesmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [PropertiesWithNullValuedInstancePropertiesMap](#propertieswithnullvaluedinstancepropertiesmap) | validate(arg: [Map<*, *>](#propertieswithnullvaluedinstancepropertiesmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PropertiesWithNullValuedInstanceProperties1BoxedString](#propertieswithnullvaluedinstanceproperties1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PropertiesWithNullValuedInstanceProperties1BoxedVoid](#propertieswithnullvaluedinstanceproperties1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PropertiesWithNullValuedInstanceProperties1BoxedNumber](#propertieswithnullvaluedinstanceproperties1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PropertiesWithNullValuedInstanceProperties1BoxedBoolean](#propertieswithnullvaluedinstanceproperties1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PropertiesWithNullValuedInstanceProperties1BoxedMap](#propertieswithnullvaluedinstanceproperties1boxedmap) | validateAndBox([Map<?, ?>](#propertieswithnullvaluedinstancepropertiesmapbuilder), configuration: SchemaConfiguration) | +| [PropertiesWithNullValuedInstanceProperties1BoxedBoolean](#propertieswithnullvaluedinstanceproperties1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PropertiesWithNullValuedInstanceProperties1BoxedMap](#propertieswithnullvaluedinstanceproperties1boxedmap) | validateAndBox([Map<*, *>](#propertieswithnullvaluedinstancepropertiesmapbuilder), configuration: SchemaConfiguration) | | [PropertiesWithNullValuedInstanceProperties1BoxedList](#propertieswithnullvaluedinstanceproperties1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PropertiesWithNullValuedInstanceProperties1Boxed](#propertieswithnullvaluedinstanceproperties1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md index 9a3d24c717a..2cb82e8642d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md @@ -156,19 +156,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [PropertyNamedRefThatIsNotAReferenceMap](#propertynamedrefthatisnotareferencemap) | validate(arg: [Map<?, ?>](#propertynamedrefthatisnotareferencemapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [PropertyNamedRefThatIsNotAReferenceMap](#propertynamedrefthatisnotareferencemap) | validate(arg: [Map<*, *>](#propertynamedrefthatisnotareferencemapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PropertyNamedRefThatIsNotAReference1BoxedString](#propertynamedrefthatisnotareference1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PropertyNamedRefThatIsNotAReference1BoxedVoid](#propertynamedrefthatisnotareference1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PropertyNamedRefThatIsNotAReference1BoxedNumber](#propertynamedrefthatisnotareference1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PropertyNamedRefThatIsNotAReference1BoxedBoolean](#propertynamedrefthatisnotareference1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PropertyNamedRefThatIsNotAReference1BoxedMap](#propertynamedrefthatisnotareference1boxedmap) | validateAndBox([Map<?, ?>](#propertynamedrefthatisnotareferencemapbuilder), configuration: SchemaConfiguration) | +| [PropertyNamedRefThatIsNotAReference1BoxedBoolean](#propertynamedrefthatisnotareference1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PropertyNamedRefThatIsNotAReference1BoxedMap](#propertynamedrefthatisnotareference1boxedmap) | validateAndBox([Map<*, *>](#propertynamedrefthatisnotareferencemapbuilder), configuration: SchemaConfiguration) | | [PropertyNamedRefThatIsNotAReference1BoxedList](#propertynamedrefthatisnotareference1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PropertyNamedRefThatIsNotAReference1Boxed](#propertynamedrefthatisnotareference1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertynamesValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertynamesValidation.md index 7f91cbf1956..520174c9fb6 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertynamesValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertynamesValidation.md @@ -152,19 +152,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [PropertynamesValidation1BoxedString](#propertynamesvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [PropertynamesValidation1BoxedVoid](#propertynamesvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [PropertynamesValidation1BoxedNumber](#propertynamesvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [PropertynamesValidation1BoxedBoolean](#propertynamesvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [PropertynamesValidation1BoxedMap](#propertynamesvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [PropertynamesValidation1BoxedBoolean](#propertynamesvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [PropertynamesValidation1BoxedMap](#propertynamesvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [PropertynamesValidation1BoxedList](#propertynamesvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [PropertynamesValidation1Boxed](#propertynamesvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -201,32 +201,28 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.PropertynamesValidation; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.PropertynamesValidation -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = PropertynamesValidation.PropertyNames.validate( +val validatedPayload: String = PropertynamesValidation.PropertyNames.validate( "a", configuration -); +) ``` ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | | Set> | type = setOf(
    String::class.java
)
| -| Integer | maxLength = 3 | +| Int | maxLength = 3 | ### Method Summary | Modifier and Type | Method and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexFormat.md index 7c3bd4263ab..9e8401449dc 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RegexFormat1BoxedString](#regexformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RegexFormat1BoxedVoid](#regexformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RegexFormat1BoxedNumber](#regexformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RegexFormat1BoxedBoolean](#regexformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RegexFormat1BoxedMap](#regexformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [RegexFormat1BoxedBoolean](#regexformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RegexFormat1BoxedMap](#regexformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [RegexFormat1BoxedList](#regexformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RegexFormat1Boxed](#regexformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.md index 3fd0b57972a..0a3a8907328 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.md @@ -155,19 +155,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedString](#regexesarenotanchoredbydefaultandarecasesensitive1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedVoid](#regexesarenotanchoredbydefaultandarecasesensitive1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedNumber](#regexesarenotanchoredbydefaultandarecasesensitive1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedBoolean](#regexesarenotanchoredbydefaultandarecasesensitive1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedMap](#regexesarenotanchoredbydefaultandarecasesensitive1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedBoolean](#regexesarenotanchoredbydefaultandarecasesensitive1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedMap](#regexesarenotanchoredbydefaultandarecasesensitive1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedList](#regexesarenotanchoredbydefaultandarecasesensitive1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1Boxed](#regexesarenotanchoredbydefaultandarecasesensitive1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RelativeJsonPointerFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RelativeJsonPointerFormat.md index 49a4a60eec1..4e1c435ffcc 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RelativeJsonPointerFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RelativeJsonPointerFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RelativeJsonPointerFormat1BoxedString](#relativejsonpointerformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RelativeJsonPointerFormat1BoxedVoid](#relativejsonpointerformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RelativeJsonPointerFormat1BoxedNumber](#relativejsonpointerformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RelativeJsonPointerFormat1BoxedBoolean](#relativejsonpointerformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RelativeJsonPointerFormat1BoxedMap](#relativejsonpointerformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [RelativeJsonPointerFormat1BoxedBoolean](#relativejsonpointerformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RelativeJsonPointerFormat1BoxedMap](#relativejsonpointerformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [RelativeJsonPointerFormat1BoxedList](#relativejsonpointerformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RelativeJsonPointerFormat1Boxed](#relativejsonpointerformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md index 7b71ca0e3f6..3dc803a4186 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md @@ -161,19 +161,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [RequiredDefaultValidationMap](#requireddefaultvalidationmap) | validate(arg: [Map<?, ?>](#requireddefaultvalidationmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [RequiredDefaultValidationMap](#requireddefaultvalidationmap) | validate(arg: [Map<*, *>](#requireddefaultvalidationmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RequiredDefaultValidation1BoxedString](#requireddefaultvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RequiredDefaultValidation1BoxedVoid](#requireddefaultvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RequiredDefaultValidation1BoxedNumber](#requireddefaultvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RequiredDefaultValidation1BoxedBoolean](#requireddefaultvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RequiredDefaultValidation1BoxedMap](#requireddefaultvalidation1boxedmap) | validateAndBox([Map<?, ?>](#requireddefaultvalidationmapbuilder), configuration: SchemaConfiguration) | +| [RequiredDefaultValidation1BoxedBoolean](#requireddefaultvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RequiredDefaultValidation1BoxedMap](#requireddefaultvalidation1boxedmap) | validateAndBox([Map<*, *>](#requireddefaultvalidationmapbuilder), configuration: SchemaConfiguration) | | [RequiredDefaultValidation1BoxedList](#requireddefaultvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RequiredDefaultValidation1Boxed](#requireddefaultvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.md index da432b91f7e..75fa259fe04 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.md @@ -153,19 +153,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNamesMap](#requiredpropertieswhosenamesarejavascriptobjectpropertynamesmap) | validate(arg: [Map<?, ?>](#requiredpropertieswhosenamesarejavascriptobjectpropertynamesmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNamesMap](#requiredpropertieswhosenamesarejavascriptobjectpropertynamesmap) | validate(arg: [Map<*, *>](#requiredpropertieswhosenamesarejavascriptobjectpropertynamesmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedString](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedVoid](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedNumber](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedBoolean](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedMap](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedmap) | validateAndBox([Map<?, ?>](#requiredpropertieswhosenamesarejavascriptobjectpropertynamesmapbuilder), configuration: SchemaConfiguration) | +| [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedBoolean](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedMap](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedmap) | validateAndBox([Map<*, *>](#requiredpropertieswhosenamesarejavascriptobjectpropertynamesmapbuilder), configuration: SchemaConfiguration) | | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedList](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1Boxed](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredValidation.md index 448abb465fe..a74cb2c2e08 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredValidation.md @@ -170,19 +170,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [RequiredValidationMap](#requiredvalidationmap) | validate(arg: [Map<?, ?>](#requiredvalidationmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [RequiredValidationMap](#requiredvalidationmap) | validate(arg: [Map<*, *>](#requiredvalidationmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RequiredValidation1BoxedString](#requiredvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RequiredValidation1BoxedVoid](#requiredvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RequiredValidation1BoxedNumber](#requiredvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RequiredValidation1BoxedBoolean](#requiredvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RequiredValidation1BoxedMap](#requiredvalidation1boxedmap) | validateAndBox([Map<?, ?>](#requiredvalidationmapbuilder), configuration: SchemaConfiguration) | +| [RequiredValidation1BoxedBoolean](#requiredvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RequiredValidation1BoxedMap](#requiredvalidation1boxedmap) | validateAndBox([Map<*, *>](#requiredvalidationmapbuilder), configuration: SchemaConfiguration) | | [RequiredValidation1BoxedList](#requiredvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RequiredValidation1Boxed](#requiredvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md index 85125a5f8d2..7f624f006a5 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md @@ -161,19 +161,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [RequiredWithEmptyArrayMap](#requiredwithemptyarraymap) | validate(arg: [Map<?, ?>](#requiredwithemptyarraymapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [RequiredWithEmptyArrayMap](#requiredwithemptyarraymap) | validate(arg: [Map<*, *>](#requiredwithemptyarraymapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RequiredWithEmptyArray1BoxedString](#requiredwithemptyarray1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RequiredWithEmptyArray1BoxedVoid](#requiredwithemptyarray1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RequiredWithEmptyArray1BoxedNumber](#requiredwithemptyarray1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RequiredWithEmptyArray1BoxedBoolean](#requiredwithemptyarray1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RequiredWithEmptyArray1BoxedMap](#requiredwithemptyarray1boxedmap) | validateAndBox([Map<?, ?>](#requiredwithemptyarraymapbuilder), configuration: SchemaConfiguration) | +| [RequiredWithEmptyArray1BoxedBoolean](#requiredwithemptyarray1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RequiredWithEmptyArray1BoxedMap](#requiredwithemptyarray1boxedmap) | validateAndBox([Map<*, *>](#requiredwithemptyarraymapbuilder), configuration: SchemaConfiguration) | | [RequiredWithEmptyArray1BoxedList](#requiredwithemptyarray1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RequiredWithEmptyArray1Boxed](#requiredwithemptyarray1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md index eb8d365df0d..55ae80437f4 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md @@ -153,19 +153,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| [RequiredWithEscapedCharactersMap](#requiredwithescapedcharactersmap) | validate(arg: [Map<?, ?>](#requiredwithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| [RequiredWithEscapedCharactersMap](#requiredwithescapedcharactersmap) | validate(arg: [Map<*, *>](#requiredwithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [RequiredWithEscapedCharacters1BoxedString](#requiredwithescapedcharacters1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [RequiredWithEscapedCharacters1BoxedVoid](#requiredwithescapedcharacters1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [RequiredWithEscapedCharacters1BoxedNumber](#requiredwithescapedcharacters1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [RequiredWithEscapedCharacters1BoxedBoolean](#requiredwithescapedcharacters1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [RequiredWithEscapedCharacters1BoxedMap](#requiredwithescapedcharacters1boxedmap) | validateAndBox([Map<?, ?>](#requiredwithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | +| [RequiredWithEscapedCharacters1BoxedBoolean](#requiredwithescapedcharacters1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [RequiredWithEscapedCharacters1BoxedMap](#requiredwithescapedcharacters1boxedmap) | validateAndBox([Map<*, *>](#requiredwithescapedcharactersmapbuilder), configuration: SchemaConfiguration) | | [RequiredWithEscapedCharacters1BoxedList](#requiredwithescapedcharacters1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [RequiredWithEscapedCharacters1Boxed](#requiredwithescapedcharacters1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md index 08da7286908..3bc45e63aa7 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md @@ -51,25 +51,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.SimpleEnumValidation; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.SimpleEnumValidation -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = SimpleEnumValidation.SimpleEnumValidation1.validate( +val validatedPayload: Int = SimpleEnumValidation.SimpleEnumValidation1.validate( 1, configuration -); +) ``` ### Field Summary @@ -90,7 +86,7 @@ int validatedPayload = SimpleEnumValidation.SimpleEnumValidation1.validate( public enum IntegerSimpleEnumValidationEnums
extends `Enum` -A class that stores Integer enum values +A class that stores Int enum values ### Enum Constant Summary | Enum Constant | Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SingleDependency.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SingleDependency.md index 689e87a6389..e4167db3e71 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SingleDependency.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SingleDependency.md @@ -157,19 +157,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [SingleDependency1BoxedString](#singledependency1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [SingleDependency1BoxedVoid](#singledependency1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [SingleDependency1BoxedNumber](#singledependency1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [SingleDependency1BoxedBoolean](#singledependency1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [SingleDependency1BoxedMap](#singledependency1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [SingleDependency1BoxedBoolean](#singledependency1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [SingleDependency1BoxedMap](#singledependency1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [SingleDependency1BoxedList](#singledependency1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [SingleDependency1Boxed](#singledependency1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SmallMultipleOfLargeInteger.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SmallMultipleOfLargeInteger.md index 4ac3fc21c89..846f3768d99 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SmallMultipleOfLargeInteger.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SmallMultipleOfLargeInteger.md @@ -46,25 +46,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.SmallMultipleOfLargeInteger; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.SmallMultipleOfLargeInteger -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // int validation -int validatedPayload = SmallMultipleOfLargeInteger.SmallMultipleOfLargeInteger1.validate( +val validatedPayload: Int = SmallMultipleOfLargeInteger.SmallMultipleOfLargeInteger1.validate( 1L, configuration -); +) ``` ### Field Summary @@ -77,7 +73,7 @@ int validatedPayload = SmallMultipleOfLargeInteger.SmallMultipleOfLargeInteger1. ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| long | validate(arg: long, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | | [SmallMultipleOfLargeInteger1BoxedNumber](#smallmultipleoflargeinteger1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | | [SmallMultipleOfLargeInteger1Boxed](#smallmultipleoflargeinteger1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TimeFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TimeFormat.md index 6c9b0696e11..9462946d814 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TimeFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TimeFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [TimeFormat1BoxedString](#timeformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [TimeFormat1BoxedVoid](#timeformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [TimeFormat1BoxedNumber](#timeformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [TimeFormat1BoxedBoolean](#timeformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [TimeFormat1BoxedMap](#timeformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [TimeFormat1BoxedBoolean](#timeformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [TimeFormat1BoxedMap](#timeformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [TimeFormat1BoxedList](#timeformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [TimeFormat1Boxed](#timeformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayObjectOrNull.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayObjectOrNull.md index 91459eaefce..21c19c834ec 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayObjectOrNull.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayObjectOrNull.md @@ -84,25 +84,21 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.TypeArrayObjectOrNull; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.TypeArrayObjectOrNull -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // null validation -Nothing? validatedPayload = TypeArrayObjectOrNull.TypeArrayObjectOrNull1.validate( +val validatedPayload: Nothing? = TypeArrayObjectOrNull.TypeArrayObjectOrNull1.validate( null, configuration -); +) ``` ### Field Summary @@ -115,8 +111,8 @@ Nothing? validatedPayload = TypeArrayObjectOrNull.TypeArrayObjectOrNull1.validat | ----------------- | ---------------------- | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [TypeArrayObjectOrNull1BoxedList](#typearrayobjectornull1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | -| [TypeArrayObjectOrNull1BoxedMap](#typearrayobjectornull1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | +| [TypeArrayObjectOrNull1BoxedMap](#typearrayobjectornull1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | | [TypeArrayObjectOrNull1BoxedVoid](#typearrayobjectornull1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [TypeArrayObjectOrNull1Boxed](#typearrayobjectornull1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayOrObject.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayOrObject.md index 04442787c75..8eb3799a093 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayOrObject.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayOrObject.md @@ -73,8 +73,8 @@ A schema class that validates payloads | ----------------- | ---------------------- | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [TypeArrayOrObject1BoxedList](#typearrayorobject1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | -| [TypeArrayOrObject1BoxedMap](#typearrayorobject1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | +| [TypeArrayOrObject1BoxedMap](#typearrayorobject1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [TypeArrayOrObject1Boxed](#typearrayorobject1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsAsSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsAsSchema.md index 8df9cd10550..9085bb214dd 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsAsSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsAsSchema.md @@ -152,19 +152,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UnevaluateditemsAsSchema1BoxedString](#unevaluateditemsasschema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UnevaluateditemsAsSchema1BoxedVoid](#unevaluateditemsasschema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UnevaluateditemsAsSchema1BoxedNumber](#unevaluateditemsasschema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UnevaluateditemsAsSchema1BoxedBoolean](#unevaluateditemsasschema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UnevaluateditemsAsSchema1BoxedMap](#unevaluateditemsasschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UnevaluateditemsAsSchema1BoxedBoolean](#unevaluateditemsasschema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UnevaluateditemsAsSchema1BoxedMap](#unevaluateditemsasschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UnevaluateditemsAsSchema1BoxedList](#unevaluateditemsasschema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UnevaluateditemsAsSchema1Boxed](#unevaluateditemsasschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsDependsOnMultipleNestedContains.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsDependsOnMultipleNestedContains.md index 58946fe9263..507a594fec4 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsDependsOnMultipleNestedContains.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsDependsOnMultipleNestedContains.md @@ -190,19 +190,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UnevaluateditemsDependsOnMultipleNestedContains1BoxedString](#unevaluateditemsdependsonmultiplenestedcontains1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UnevaluateditemsDependsOnMultipleNestedContains1BoxedVoid](#unevaluateditemsdependsonmultiplenestedcontains1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UnevaluateditemsDependsOnMultipleNestedContains1BoxedNumber](#unevaluateditemsdependsonmultiplenestedcontains1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UnevaluateditemsDependsOnMultipleNestedContains1BoxedBoolean](#unevaluateditemsdependsonmultiplenestedcontains1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UnevaluateditemsDependsOnMultipleNestedContains1BoxedMap](#unevaluateditemsdependsonmultiplenestedcontains1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UnevaluateditemsDependsOnMultipleNestedContains1BoxedBoolean](#unevaluateditemsdependsonmultiplenestedcontains1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UnevaluateditemsDependsOnMultipleNestedContains1BoxedMap](#unevaluateditemsdependsonmultiplenestedcontains1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UnevaluateditemsDependsOnMultipleNestedContains1BoxedList](#unevaluateditemsdependsonmultiplenestedcontains1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UnevaluateditemsDependsOnMultipleNestedContains1Boxed](#unevaluateditemsdependsonmultiplenestedcontains1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -337,19 +337,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UnevaluatedItemsBoxedString](#unevaluateditemsboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UnevaluatedItemsBoxedVoid](#unevaluateditemsboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UnevaluatedItemsBoxedNumber](#unevaluateditemsboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UnevaluatedItemsBoxedBoolean](#unevaluateditemsboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UnevaluatedItemsBoxedMap](#unevaluateditemsboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UnevaluatedItemsBoxedBoolean](#unevaluateditemsboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UnevaluatedItemsBoxedMap](#unevaluateditemsboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UnevaluatedItemsBoxedList](#unevaluateditemsboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UnevaluatedItemsBoxed](#unevaluateditemsboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -484,19 +484,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema1BoxedString](#schema1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema1BoxedVoid](#schema1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema1BoxedNumber](#schema1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema1BoxedBoolean](#schema1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema1BoxedMap](#schema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema1BoxedList](#schema1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema1Boxed](#schema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -631,19 +631,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Contains1BoxedString](#contains1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Contains1BoxedVoid](#contains1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Contains1BoxedNumber](#contains1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Contains1BoxedBoolean](#contains1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Contains1BoxedMap](#contains1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Contains1BoxedBoolean](#contains1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Contains1BoxedMap](#contains1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Contains1BoxedList](#contains1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Contains1Boxed](#contains1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -778,19 +778,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [Schema0BoxedString](#schema0boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [Schema0BoxedVoid](#schema0boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [Schema0BoxedNumber](#schema0boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [Schema0BoxedBoolean](#schema0boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [Schema0BoxedMap](#schema0boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [Schema0BoxedList](#schema0boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [Schema0Boxed](#schema0boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -925,19 +925,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ContainsBoxedString](#containsboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ContainsBoxedVoid](#containsboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ContainsBoxedNumber](#containsboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ContainsBoxedBoolean](#containsboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ContainsBoxedMap](#containsboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ContainsBoxedBoolean](#containsboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ContainsBoxedMap](#containsboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ContainsBoxedList](#containsboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ContainsBoxed](#containsboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithItems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithItems.md index 70c4884ae7a..9e58d28d418 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithItems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithItems.md @@ -56,29 +56,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.UnevaluateditemsWithItems; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.UnevaluateditemsWithItems -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // List validation -UnevaluateditemsWithItems.UnevaluateditemsWithItemsList validatedPayload = +val validatedPayload: UnevaluateditemsWithItems.UnevaluateditemsWithItemsList = UnevaluateditemsWithItems.UnevaluateditemsWithItems1.validate( - new UnevaluateditemsWithItems.UnevaluateditemsWithItemsListBuilder() + UnevaluateditemsWithItems.UnevaluateditemsWithItemsListBuilder() .add(1) .build(), configuration -); +) ``` ### Field Summary diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithNullInstanceElements.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithNullInstanceElements.md index e2c1ce930f5..67cd806c8bb 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithNullInstanceElements.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithNullInstanceElements.md @@ -152,19 +152,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UnevaluateditemsWithNullInstanceElements1BoxedString](#unevaluateditemswithnullinstanceelements1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UnevaluateditemsWithNullInstanceElements1BoxedVoid](#unevaluateditemswithnullinstanceelements1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UnevaluateditemsWithNullInstanceElements1BoxedNumber](#unevaluateditemswithnullinstanceelements1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UnevaluateditemsWithNullInstanceElements1BoxedBoolean](#unevaluateditemswithnullinstanceelements1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UnevaluateditemsWithNullInstanceElements1BoxedMap](#unevaluateditemswithnullinstanceelements1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UnevaluateditemsWithNullInstanceElements1BoxedBoolean](#unevaluateditemswithnullinstanceelements1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UnevaluateditemsWithNullInstanceElements1BoxedMap](#unevaluateditemswithnullinstanceelements1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UnevaluateditemsWithNullInstanceElements1BoxedList](#unevaluateditemswithnullinstanceelements1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UnevaluateditemsWithNullInstanceElements1Boxed](#unevaluateditemswithnullinstanceelements1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesNotAffectedByPropertynames.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesNotAffectedByPropertynames.md index b9ad4fec267..094a6005ad2 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesNotAffectedByPropertynames.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesNotAffectedByPropertynames.md @@ -156,19 +156,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UnevaluatedpropertiesNotAffectedByPropertynames1BoxedString](#unevaluatedpropertiesnotaffectedbypropertynames1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UnevaluatedpropertiesNotAffectedByPropertynames1BoxedVoid](#unevaluatedpropertiesnotaffectedbypropertynames1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UnevaluatedpropertiesNotAffectedByPropertynames1BoxedNumber](#unevaluatedpropertiesnotaffectedbypropertynames1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UnevaluatedpropertiesNotAffectedByPropertynames1BoxedBoolean](#unevaluatedpropertiesnotaffectedbypropertynames1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UnevaluatedpropertiesNotAffectedByPropertynames1BoxedMap](#unevaluatedpropertiesnotaffectedbypropertynames1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UnevaluatedpropertiesNotAffectedByPropertynames1BoxedBoolean](#unevaluatedpropertiesnotaffectedbypropertynames1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UnevaluatedpropertiesNotAffectedByPropertynames1BoxedMap](#unevaluatedpropertiesnotaffectedbypropertynames1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UnevaluatedpropertiesNotAffectedByPropertynames1BoxedList](#unevaluatedpropertiesnotaffectedbypropertynames1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UnevaluatedpropertiesNotAffectedByPropertynames1Boxed](#unevaluatedpropertiesnotaffectedbypropertynames1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -240,32 +240,28 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.UnevaluatedpropertiesNotAffectedByPropertynames; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.UnevaluatedpropertiesNotAffectedByPropertynames -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = UnevaluatedpropertiesNotAffectedByPropertynames.PropertyNames.validate( +val validatedPayload: String = UnevaluatedpropertiesNotAffectedByPropertynames.PropertyNames.validate( "a", configuration -); +) ``` ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | | Set> | type = setOf(
    String::class.java
)
| -| Integer | maxLength = 1 | +| Int | maxLength = 1 | ### Method Summary | Modifier and Type | Method and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesSchema.md index fb7f627b176..81e1734a23a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesSchema.md @@ -56,8 +56,8 @@ A schema class that validates payloads ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | -| [UnevaluatedpropertiesSchema1BoxedMap](#unevaluatedpropertiesschema1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | +| [UnevaluatedpropertiesSchema1BoxedMap](#unevaluatedpropertiesschema1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UnevaluatedpropertiesSchema1Boxed](#unevaluatedpropertiesschema1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -93,32 +93,28 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.UnevaluatedpropertiesSchema; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.UnevaluatedpropertiesSchema -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // String validation -String validatedPayload = UnevaluatedpropertiesSchema.UnevaluatedProperties.validate( +val validatedPayload: String = UnevaluatedpropertiesSchema.UnevaluatedProperties.validate( "a", configuration -); +) ``` ### Field Summary | Modifier and Type | Field and Description | | ----------------- | ---------------------- | | Set> | type = setOf(
    String::class.java
)
| -| Integer | minLength = 3 | +| Int | minLength = 3 | ### Method Summary | Modifier and Type | Method and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithAdjacentAdditionalproperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithAdjacentAdditionalproperties.md index b2d9b45c536..1da219f372c 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithAdjacentAdditionalproperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithAdjacentAdditionalproperties.md @@ -69,29 +69,25 @@ A schema class that validates payloads ### Code Sample ``` -import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags; -import org.openapijsonschematools.client.configurations.SchemaConfiguration; -import org.openapijsonschematools.client.exceptions.ValidationException; -import org.openapijsonschematools.client.schemas.validation.MapUtils; -import org.openapijsonschematools.client.schemas.validation.FrozenList; -import org.openapijsonschematools.client.schemas.validation.FrozenMap; -import org.openapijsonschematools.client.components.schemas.UnevaluatedpropertiesWithAdjacentAdditionalproperties; +import org.openapijsonschematools.client.configurations.JsonSchemaKeywordFlags +import org.openapijsonschematools.client.configurations.SchemaConfiguration +import org.openapijsonschematools.client.exceptions.ValidationException +import org.openapijsonschematools.client.schemas.validation.MapUtils +import org.openapijsonschematools.client.schemas.validation.FrozenList +import org.openapijsonschematools.client.schemas.validation.FrozenMap +import org.openapijsonschematools.client.components.schemas.UnevaluatedpropertiesWithAdjacentAdditionalproperties -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) // Map validation -UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalpropertiesMap validatedPayload = +val validatedPayload: UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalpropertiesMap = UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalproperties1.validate( - new UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalpropertiesMapBuilder() + UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalpropertiesMapBuilder() .foo("a") .build(), configuration -); +) ``` ### Field Summary @@ -105,8 +101,8 @@ UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithA ### Method Summary | Modifier and Type | Method and Description | | ----------------- | ---------------------- | -| [UnevaluatedpropertiesWithAdjacentAdditionalpropertiesMap](#unevaluatedpropertieswithadjacentadditionalpropertiesmap) | validate(arg: [Map<?, ?>](#unevaluatedpropertieswithadjacentadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | -| [UnevaluatedpropertiesWithAdjacentAdditionalproperties1BoxedMap](#unevaluatedpropertieswithadjacentadditionalproperties1boxedmap) | validateAndBox([Map<?, ?>](#unevaluatedpropertieswithadjacentadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | +| [UnevaluatedpropertiesWithAdjacentAdditionalpropertiesMap](#unevaluatedpropertieswithadjacentadditionalpropertiesmap) | validate(arg: [Map<*, *>](#unevaluatedpropertieswithadjacentadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | +| [UnevaluatedpropertiesWithAdjacentAdditionalproperties1BoxedMap](#unevaluatedpropertieswithadjacentadditionalproperties1boxedmap) | validateAndBox([Map<*, *>](#unevaluatedpropertieswithadjacentadditionalpropertiesmapbuilder), configuration: SchemaConfiguration) | | [UnevaluatedpropertiesWithAdjacentAdditionalproperties1Boxed](#unevaluatedpropertieswithadjacentadditionalproperties1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithNullValuedInstanceProperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithNullValuedInstanceProperties.md index af90c453785..9dfe7011feb 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithNullValuedInstanceProperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithNullValuedInstanceProperties.md @@ -152,19 +152,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedString](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedVoid](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedNumber](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedBoolean](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedMap](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedBoolean](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedMap](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedList](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UnevaluatedpropertiesWithNullValuedInstanceProperties1Boxed](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md index 5529c997fa9..e973205c00e 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UniqueitemsFalseValidation1BoxedString](#uniqueitemsfalsevalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UniqueitemsFalseValidation1BoxedVoid](#uniqueitemsfalsevalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UniqueitemsFalseValidation1BoxedNumber](#uniqueitemsfalsevalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UniqueitemsFalseValidation1BoxedBoolean](#uniqueitemsfalsevalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UniqueitemsFalseValidation1BoxedMap](#uniqueitemsfalsevalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UniqueitemsFalseValidation1BoxedBoolean](#uniqueitemsfalsevalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UniqueitemsFalseValidation1BoxedMap](#uniqueitemsfalsevalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UniqueitemsFalseValidation1BoxedList](#uniqueitemsfalsevalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UniqueitemsFalseValidation1Boxed](#uniqueitemsfalsevalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseWithAnArrayOfItems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseWithAnArrayOfItems.md index c7a9935f3a6..bbf2813c5c9 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseWithAnArrayOfItems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseWithAnArrayOfItems.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | [UniqueitemsFalseWithAnArrayOfItemsList](#uniqueitemsfalsewithanarrayofitemslist) | validate(arg: [List<*>](#uniqueitemsfalsewithanarrayofitemslistbuilder), configuration: SchemaConfiguration) | | [UniqueitemsFalseWithAnArrayOfItems1BoxedString](#uniqueitemsfalsewithanarrayofitems1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UniqueitemsFalseWithAnArrayOfItems1BoxedVoid](#uniqueitemsfalsewithanarrayofitems1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UniqueitemsFalseWithAnArrayOfItems1BoxedNumber](#uniqueitemsfalsewithanarrayofitems1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UniqueitemsFalseWithAnArrayOfItems1BoxedBoolean](#uniqueitemsfalsewithanarrayofitems1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UniqueitemsFalseWithAnArrayOfItems1BoxedMap](#uniqueitemsfalsewithanarrayofitems1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UniqueitemsFalseWithAnArrayOfItems1BoxedBoolean](#uniqueitemsfalsewithanarrayofitems1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UniqueitemsFalseWithAnArrayOfItems1BoxedMap](#uniqueitemsfalsewithanarrayofitems1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UniqueitemsFalseWithAnArrayOfItems1BoxedList](#uniqueitemsfalsewithanarrayofitems1boxedlist) | validateAndBox([List<*>](#uniqueitemsfalsewithanarrayofitemslistbuilder), configuration: SchemaConfiguration) | | [UniqueitemsFalseWithAnArrayOfItems1Boxed](#uniqueitemsfalsewithanarrayofitems1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md index 09861dec784..4b3da1c0ec8 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UniqueitemsValidation1BoxedString](#uniqueitemsvalidation1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UniqueitemsValidation1BoxedVoid](#uniqueitemsvalidation1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UniqueitemsValidation1BoxedNumber](#uniqueitemsvalidation1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UniqueitemsValidation1BoxedBoolean](#uniqueitemsvalidation1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UniqueitemsValidation1BoxedMap](#uniqueitemsvalidation1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UniqueitemsValidation1BoxedBoolean](#uniqueitemsvalidation1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UniqueitemsValidation1BoxedMap](#uniqueitemsvalidation1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UniqueitemsValidation1BoxedList](#uniqueitemsvalidation1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UniqueitemsValidation1Boxed](#uniqueitemsvalidation1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsWithAnArrayOfItems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsWithAnArrayOfItems.md index d2397a579af..8d3ce6b34a0 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsWithAnArrayOfItems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsWithAnArrayOfItems.md @@ -160,19 +160,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | [UniqueitemsWithAnArrayOfItemsList](#uniqueitemswithanarrayofitemslist) | validate(arg: [List<*>](#uniqueitemswithanarrayofitemslistbuilder), configuration: SchemaConfiguration) | | [UniqueitemsWithAnArrayOfItems1BoxedString](#uniqueitemswithanarrayofitems1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UniqueitemsWithAnArrayOfItems1BoxedVoid](#uniqueitemswithanarrayofitems1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UniqueitemsWithAnArrayOfItems1BoxedNumber](#uniqueitemswithanarrayofitems1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UniqueitemsWithAnArrayOfItems1BoxedBoolean](#uniqueitemswithanarrayofitems1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UniqueitemsWithAnArrayOfItems1BoxedMap](#uniqueitemswithanarrayofitems1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UniqueitemsWithAnArrayOfItems1BoxedBoolean](#uniqueitemswithanarrayofitems1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UniqueitemsWithAnArrayOfItems1BoxedMap](#uniqueitemswithanarrayofitems1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UniqueitemsWithAnArrayOfItems1BoxedList](#uniqueitemswithanarrayofitems1boxedlist) | validateAndBox([List<*>](#uniqueitemswithanarrayofitemslistbuilder), configuration: SchemaConfiguration) | | [UniqueitemsWithAnArrayOfItems1Boxed](#uniqueitemswithanarrayofitems1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriFormat.md index ee78e984294..6c21950a1cb 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UriFormat1BoxedString](#uriformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UriFormat1BoxedVoid](#uriformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UriFormat1BoxedNumber](#uriformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UriFormat1BoxedBoolean](#uriformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UriFormat1BoxedMap](#uriformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UriFormat1BoxedBoolean](#uriformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UriFormat1BoxedMap](#uriformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UriFormat1BoxedList](#uriformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UriFormat1Boxed](#uriformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md index 34c794017c3..16ef1cd0916 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UriReferenceFormat1BoxedString](#urireferenceformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UriReferenceFormat1BoxedVoid](#urireferenceformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UriReferenceFormat1BoxedNumber](#urireferenceformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UriReferenceFormat1BoxedBoolean](#urireferenceformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UriReferenceFormat1BoxedMap](#urireferenceformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UriReferenceFormat1BoxedBoolean](#urireferenceformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UriReferenceFormat1BoxedMap](#urireferenceformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UriReferenceFormat1BoxedList](#urireferenceformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UriReferenceFormat1Boxed](#urireferenceformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md index 1c17c912d35..7b608e65bcd 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UriTemplateFormat1BoxedString](#uritemplateformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UriTemplateFormat1BoxedVoid](#uritemplateformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UriTemplateFormat1BoxedNumber](#uritemplateformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UriTemplateFormat1BoxedBoolean](#uritemplateformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UriTemplateFormat1BoxedMap](#uritemplateformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UriTemplateFormat1BoxedBoolean](#uritemplateformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UriTemplateFormat1BoxedMap](#uritemplateformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UriTemplateFormat1BoxedList](#uritemplateformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UriTemplateFormat1Boxed](#uritemplateformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UuidFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UuidFormat.md index b086762957a..75b296c0841 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UuidFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UuidFormat.md @@ -149,19 +149,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [UuidFormat1BoxedString](#uuidformat1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [UuidFormat1BoxedVoid](#uuidformat1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [UuidFormat1BoxedNumber](#uuidformat1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [UuidFormat1BoxedBoolean](#uuidformat1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [UuidFormat1BoxedMap](#uuidformat1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [UuidFormat1BoxedBoolean](#uuidformat1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [UuidFormat1BoxedMap](#uuidformat1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [UuidFormat1BoxedList](#uuidformat1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [UuidFormat1Boxed](#uuidformat1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ValidateAgainstCorrectBranchThenVsElse.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ValidateAgainstCorrectBranchThenVsElse.md index 5331dbedc81..95e64dd7f26 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ValidateAgainstCorrectBranchThenVsElse.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ValidateAgainstCorrectBranchThenVsElse.md @@ -175,19 +175,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ValidateAgainstCorrectBranchThenVsElse1BoxedString](#validateagainstcorrectbranchthenvselse1boxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ValidateAgainstCorrectBranchThenVsElse1BoxedVoid](#validateagainstcorrectbranchthenvselse1boxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ValidateAgainstCorrectBranchThenVsElse1BoxedNumber](#validateagainstcorrectbranchthenvselse1boxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ValidateAgainstCorrectBranchThenVsElse1BoxedBoolean](#validateagainstcorrectbranchthenvselse1boxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ValidateAgainstCorrectBranchThenVsElse1BoxedMap](#validateagainstcorrectbranchthenvselse1boxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ValidateAgainstCorrectBranchThenVsElse1BoxedBoolean](#validateagainstcorrectbranchthenvselse1boxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ValidateAgainstCorrectBranchThenVsElse1BoxedMap](#validateagainstcorrectbranchthenvselse1boxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ValidateAgainstCorrectBranchThenVsElse1BoxedList](#validateagainstcorrectbranchthenvselse1boxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ValidateAgainstCorrectBranchThenVsElse1Boxed](#validateagainstcorrectbranchthenvselse1boxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -322,19 +322,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ThenBoxedString](#thenboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ThenBoxedVoid](#thenboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ThenBoxedNumber](#thenboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ThenBoxedBoolean](#thenboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ThenBoxedMap](#thenboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ThenBoxedBoolean](#thenboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ThenBoxedMap](#thenboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ThenBoxedList](#thenboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ThenBoxed](#thenboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -469,19 +469,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxedString](#ifschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [IfSchemaBoxedVoid](#ifschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [IfSchemaBoxedNumber](#ifschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [IfSchemaBoxedBoolean](#ifschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [IfSchemaBoxedMap](#ifschemaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [IfSchemaBoxedList](#ifschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [IfSchemaBoxed](#ifschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | @@ -616,19 +616,19 @@ A schema class that validates payloads | ----------------- | ---------------------- | | String | validate(arg: String, configuration: SchemaConfiguration) | | Nothing? | validate(arg: Nothing?, configuration: SchemaConfiguration) | -| int | validate(arg: int, configuration: SchemaConfiguration) | -| long | validate(arg: long, configuration: SchemaConfiguration) | -| float | validate(arg: float, configuration: SchemaConfiguration) | -| double | validate(arg: double, configuration: SchemaConfiguration) | +| Int | validate(arg: Int, configuration: SchemaConfiguration) | +| Long | validate(arg: Long, configuration: SchemaConfiguration) | +| Float | validate(arg: Float, configuration: SchemaConfiguration) | +| Double | validate(arg: Double, configuration: SchemaConfiguration) | | Number | validate(arg: Number, configuration: SchemaConfiguration) | -| boolean | validate(arg: boolean, configuration: SchemaConfiguration) | -| FrozenMap | validate(arg: Map<?, ?>, configuration: SchemaConfiguration) | +| Boolean | validate(arg: Boolean, configuration: SchemaConfiguration) | +| FrozenMap | validate(arg: Map<*, *>, configuration: SchemaConfiguration) | | FrozenList | validate(arg: List<*>, configuration: SchemaConfiguration) | | [ElseSchemaBoxedString](#elseschemaboxedstring) | validateAndBox(String, configuration: SchemaConfiguration) | | [ElseSchemaBoxedVoid](#elseschemaboxedvoid) | validateAndBox(Nothing?, configuration: SchemaConfiguration) | | [ElseSchemaBoxedNumber](#elseschemaboxednumber) | validateAndBox(Number, configuration: SchemaConfiguration) | -| [ElseSchemaBoxedBoolean](#elseschemaboxedboolean) | validateAndBox(boolean, configuration: SchemaConfiguration) | -| [ElseSchemaBoxedMap](#elseschemaboxedmap) | validateAndBox(Map<?, ?>, configuration: SchemaConfiguration) | +| [ElseSchemaBoxedBoolean](#elseschemaboxedboolean) | validateAndBox(Boolean, configuration: SchemaConfiguration) | +| [ElseSchemaBoxedMap](#elseschemaboxedmap) | validateAndBox(Map<*, *>, configuration: SchemaConfiguration) | | [ElseSchemaBoxedList](#elseschemaboxedlist) | validateAndBox(List<*>, configuration: SchemaConfiguration) | | [ElseSchemaBoxed](#elseschemaboxed) | validateAndBox(Any?, configuration: SchemaConfiguration) | | Any? | validate(arg: Any?, configuration: SchemaConfiguration) | diff --git a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs index b17d2b42094..cc0d2e2cbf0 100644 --- a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs +++ b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs @@ -136,19 +136,15 @@ A schema class that validates payloads {{headerSize}}## Code Sample ``` -import {{{packageName}}}.configurations.JsonSchemaKeywordFlags; -import {{{packageName}}}.configurations.SchemaConfiguration; -import {{{packageName}}}.exceptions.ValidationException; -import {{{packageName}}}.schemas.validation.MapUtils; -import {{{packageName}}}.schemas.validation.FrozenList; -import {{{packageName}}}.schemas.validation.FrozenMap; -import {{{packageName}}}.{{../subpackage}}.{{../containerJsonPathPiece.pascalCase}}; +import {{{packageName}}}.configurations.JsonSchemaKeywordFlags +import {{{packageName}}}.configurations.SchemaConfiguration +import {{{packageName}}}.exceptions.ValidationException +import {{{packageName}}}.schemas.validation.MapUtils +import {{{packageName}}}.schemas.validation.FrozenList +import {{{packageName}}}.schemas.validation.FrozenMap +import {{{packageName}}}.{{../subpackage}}.{{../containerJsonPathPiece.pascalCase}} -import java.util.Arrays; -import java.util.List; -import java.util.AbstractMap; - -static final SchemaConfiguration configuration = new SchemaConfiguration(new JsonSchemaKeywordFlags.Builder().build()); +val configuration = SchemaConfiguration(JsonSchemaKeywordFlags.Builder().build()) {{> src/main/kotlin/packagename/components/schemas/validateSchemaCodeSample payloadVarName="validatedPayload" configVarName="configuration" }} ``` {{/if}} diff --git a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/validateSchemaCodeSample.hbs b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/validateSchemaCodeSample.hbs index 7189cb85491..2a53b00d239 100644 --- a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/validateSchemaCodeSample.hbs +++ b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/validateSchemaCodeSample.hbs @@ -2,63 +2,63 @@ {{#eq @key "null"}} // null validation -Nothing? {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( +val {{../payloadVarName}}: Nothing? = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{else}} {{#eq @key "object"}} {{#if ../mapOutputJsonPathPiece}} // Map validation -{{../../../containerJsonPathPiece.pascalCase}}.{{../mapOutputJsonPathPiece.pascalCase}} {{../payloadVarName}} = +val {{../payloadVarName}}: {{../../../containerJsonPathPiece.pascalCase}}.{{../mapOutputJsonPathPiece.pascalCase}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{else}} // Map validation -FrozenMap {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( +val {{../payloadVarName}}: FrozenMap = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{/if}} {{else}} {{#eq @key "array"}} {{#if ../arrayOutputJsonPathPiece}} // List validation -{{../../../containerJsonPathPiece.pascalCase}}.{{../arrayOutputJsonPathPiece.pascalCase}} {{../payloadVarName}} = +val {{../payloadVarName}}: {{../../../containerJsonPathPiece.pascalCase}}.{{../arrayOutputJsonPathPiece.pascalCase}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{else}} // List validation -FrozenList {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( +val {{../payloadVarName}}: FrozenList = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{/if}} {{else}} {{#eq @key "string" }} // String validation -String {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( +val {{../payloadVarName}}: String = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{else}} {{#eq @key "integer"}} {{#or (eq ../format null) (eq ../format "int64") }} // long validation -long {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( +val {{../payloadVarName}}: Long = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{else}} // int validation -int {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( +val {{../payloadVarName}}: Int = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{/or}} {{else}} {{#eq @key "number"}} {{#eq ../format "int64"}} // long validation -long {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( +val {{../payloadVarName}}: Long = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{else}} {{#eq ../format "float"}} // float validation -float {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( +val {{../payloadVarName}}: Float = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{else}} {{#eq ../format "double"}} // double validation -double {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( +val {{../payloadVarName}}: Double = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{else}} // int validation -int {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( +val {{../payloadVarName}}: Int = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{/eq}} {{/eq}} {{/eq}} {{else}} {{#eq @key "boolean"}} // boolean validation -boolean {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( +val {{../payloadVarName}}: Boolean = {{../../../containerJsonPathPiece.pascalCase}}.{{../jsonPathPiece.pascalCase}}.validate( {{/eq}} {{/eq}} {{/eq}} @@ -68,12 +68,12 @@ boolean {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{ {{/eq}} {{#with this}} {{#and (eq type "array") ../arrayInputJsonPathPiece.pascalCase }} - new {{../../../containerJsonPathPiece.pascalCase}}.{{../arrayInputJsonPathPiece.pascalCase}}() + {{../../../containerJsonPathPiece.pascalCase}}.{{../arrayInputJsonPathPiece.pascalCase}}() {{> src/main/kotlin/packagename/components/schemas/helpers/payload_renderer endChar="" constructor=true }} .build(), {{else}} {{#and (eq type "object") ../mapInputJsonPathPiece.pascalCase }} - new {{../../../containerJsonPathPiece.pascalCase}}.{{../mapInputJsonPathPiece.pascalCase}}() + {{../../../containerJsonPathPiece.pascalCase}}.{{../mapInputJsonPathPiece.pascalCase}}() {{> src/main/kotlin/packagename/components/schemas/helpers/payload_renderer endChar="" constructor=true optionalProperties=../optionalProperties requiredProperties=../requiredProperties }} .build(), {{else}} @@ -82,5 +82,5 @@ boolean {{../payloadVarName}} = {{../../../containerJsonPathPiece.pascalCase}}.{ {{/and}} {{/with}} {{../configVarName}} -); +) {{/each}} \ No newline at end of file From 58d3fe6e37028e8795707ab933916a8323f2998a Mon Sep 17 00:00:00 2001 From: Justin Black Date: Mon, 20 May 2024 14:15:19 -0700 Subject: [PATCH 3/7] Samples regen with correct class/data class descriptions --- ...pertiesAllowsASchemaWhichShouldValidate.md | 46 +++---- ...AdditionalpropertiesAreAllowedByDefault.md | 52 ++++---- .../AdditionalpropertiesCanExistByItself.md | 14 +-- ...nalpropertiesShouldNotLookInApplicators.md | 62 +++++----- .../kotlin/docs/components/schemas/Allof.md | 64 +++++----- .../schemas/AllofCombinedWithAnyofOneof.md | 64 +++++----- .../components/schemas/AllofSimpleTypes.md | 48 ++++---- .../components/schemas/AllofWithBaseSchema.md | 72 +++++------ .../schemas/AllofWithOneEmptySchema.md | 32 ++--- .../schemas/AllofWithTheFirstEmptySchema.md | 36 +++--- .../schemas/AllofWithTheLastEmptySchema.md | 36 +++--- .../schemas/AllofWithTwoEmptySchemas.md | 48 ++++---- .../kotlin/docs/components/schemas/Anyof.md | 36 +++--- .../components/schemas/AnyofComplexTypes.md | 64 +++++----- .../components/schemas/AnyofWithBaseSchema.md | 36 +++--- .../schemas/AnyofWithOneEmptySchema.md | 36 +++--- .../schemas/ArrayTypeMatchesArrays.md | 24 ++-- .../schemas/BooleanTypeMatchesBooleans.md | 6 +- .../kotlin/docs/components/schemas/ByInt.md | 16 +-- .../docs/components/schemas/ByNumber.md | 16 +-- .../docs/components/schemas/BySmallNumber.md | 16 +-- .../docs/components/schemas/DateTimeFormat.md | 16 +-- .../docs/components/schemas/EmailFormat.md | 16 +-- .../schemas/EnumWith0DoesNotMatchFalse.md | 4 +- .../schemas/EnumWith1DoesNotMatchTrue.md | 4 +- .../schemas/EnumWithEscapedCharacters.md | 4 +- .../schemas/EnumWithFalseDoesNotMatch0.md | 6 +- .../schemas/EnumWithTrueDoesNotMatch1.md | 6 +- .../components/schemas/EnumsInProperties.md | 16 +-- .../components/schemas/ForbiddenProperty.md | 36 +++--- .../docs/components/schemas/HostnameFormat.md | 16 +-- .../schemas/IntegerTypeMatchesIntegers.md | 4 +- ...ShouldNotRaiseErrorWhenFloatDivisionInf.md | 4 +- .../schemas/InvalidStringValueForDefault.md | 24 ++-- .../docs/components/schemas/Ipv4Format.md | 16 +-- .../docs/components/schemas/Ipv6Format.md | 16 +-- .../components/schemas/JsonPointerFormat.md | 16 +-- .../components/schemas/MaximumValidation.md | 16 +-- .../MaximumValidationWithUnsignedInteger.md | 16 +-- .../components/schemas/MaxitemsValidation.md | 16 +-- .../components/schemas/MaxlengthValidation.md | 16 +-- .../Maxproperties0MeansTheObjectIsEmpty.md | 16 +-- .../schemas/MaxpropertiesValidation.md | 16 +-- .../components/schemas/MinimumValidation.md | 16 +-- .../MinimumValidationWithSignedInteger.md | 16 +-- .../components/schemas/MinitemsValidation.md | 16 +-- .../components/schemas/MinlengthValidation.md | 16 +-- .../schemas/MinpropertiesValidation.md | 16 +-- .../NestedAllofToCheckValidationSemantics.md | 36 +++--- .../NestedAnyofToCheckValidationSemantics.md | 36 +++--- .../docs/components/schemas/NestedItems.md | 36 +++--- .../NestedOneofToCheckValidationSemantics.md | 36 +++--- .../kotlin/docs/components/schemas/Not.md | 20 ++-- .../schemas/NotMoreComplexSchema.md | 28 ++--- .../schemas/NulCharactersInStrings.md | 4 +- .../NullTypeMatchesOnlyTheNullObject.md | 4 +- .../schemas/NumberTypeMatchesNumbers.md | 4 +- .../schemas/ObjectPropertiesValidation.md | 28 ++--- .../schemas/ObjectTypeMatchesObjects.md | 4 +- .../kotlin/docs/components/schemas/Oneof.md | 36 +++--- .../components/schemas/OneofComplexTypes.md | 64 +++++----- .../components/schemas/OneofWithBaseSchema.md | 36 +++--- .../schemas/OneofWithEmptySchema.md | 36 +++--- .../components/schemas/OneofWithRequired.md | 44 +++---- .../schemas/PatternIsNotAnchored.md | 16 +-- .../components/schemas/PatternValidation.md | 16 +-- .../PropertiesWithEscapedCharacters.md | 44 +++---- .../PropertyNamedRefThatIsNotAReference.md | 24 ++-- .../schemas/RefInAdditionalproperties.md | 8 +- .../docs/components/schemas/RefInAllof.md | 16 +-- .../docs/components/schemas/RefInAnyof.md | 16 +-- .../docs/components/schemas/RefInItems.md | 8 +- .../docs/components/schemas/RefInNot.md | 16 +-- .../docs/components/schemas/RefInOneof.md | 16 +-- .../docs/components/schemas/RefInProperty.md | 20 ++-- .../schemas/RequiredDefaultValidation.md | 36 +++--- .../components/schemas/RequiredValidation.md | 52 ++++---- .../schemas/RequiredWithEmptyArray.md | 36 +++--- .../schemas/RequiredWithEscapedCharacters.md | 20 ++-- .../schemas/SimpleEnumValidation.md | 4 +- .../schemas/StringTypeMatchesStrings.md | 4 +- ...DoesNotDoAnythingIfThePropertyIsMissing.md | 12 +- .../schemas/UniqueitemsFalseValidation.md | 16 +-- .../schemas/UniqueitemsValidation.md | 16 +-- .../docs/components/schemas/UriFormat.md | 16 +-- .../components/schemas/UriReferenceFormat.md | 16 +-- .../components/schemas/UriTemplateFormat.md | 16 +-- .../schemas/ASchemaGivenForPrefixitems.md | 28 ++--- .../AdditionalItemsAreAllowedByDefault.md | 24 ++-- ...AdditionalpropertiesAreAllowedByDefault.md | 52 ++++---- .../AdditionalpropertiesCanExistByItself.md | 14 +-- ...ionalpropertiesDoesNotLookInApplicators.md | 62 +++++----- ...pertiesWithNullValuedInstanceProperties.md | 12 +- .../schemas/AdditionalpropertiesWithSchema.md | 46 +++---- .../kotlin/docs/components/schemas/Allof.md | 64 +++++----- .../schemas/AllofCombinedWithAnyofOneof.md | 64 +++++----- .../components/schemas/AllofSimpleTypes.md | 48 ++++---- .../components/schemas/AllofWithBaseSchema.md | 72 +++++------ .../schemas/AllofWithOneEmptySchema.md | 32 ++--- .../schemas/AllofWithTheFirstEmptySchema.md | 36 +++--- .../schemas/AllofWithTheLastEmptySchema.md | 36 +++--- .../schemas/AllofWithTwoEmptySchemas.md | 48 ++++---- .../kotlin/docs/components/schemas/Anyof.md | 36 +++--- .../components/schemas/AnyofComplexTypes.md | 64 +++++----- .../components/schemas/AnyofWithBaseSchema.md | 36 +++--- .../schemas/AnyofWithOneEmptySchema.md | 36 +++--- .../schemas/ArrayTypeMatchesArrays.md | 4 +- .../schemas/BooleanTypeMatchesBooleans.md | 6 +- .../kotlin/docs/components/schemas/ByInt.md | 16 +-- .../docs/components/schemas/ByNumber.md | 16 +-- .../docs/components/schemas/BySmallNumber.md | 16 +-- .../schemas/ConstNulCharactersInStrings.md | 16 +-- .../schemas/ContainsKeywordValidation.md | 32 ++--- .../ContainsWithNullInstanceElements.md | 20 ++-- .../docs/components/schemas/DateFormat.md | 16 +-- .../docs/components/schemas/DateTimeFormat.md | 16 +-- ...chemasDependenciesWithEscapedCharacters.md | 52 ++++---- ...sDependentSubschemaIncompatibleWithRoot.md | 76 ++++++------ .../DependentSchemasSingleDependency.md | 44 +++---- .../docs/components/schemas/DurationFormat.md | 16 +-- .../docs/components/schemas/EmailFormat.md | 16 +-- .../components/schemas/EmptyDependents.md | 16 +-- .../schemas/EnumWith0DoesNotMatchFalse.md | 4 +- .../schemas/EnumWith1DoesNotMatchTrue.md | 4 +- .../schemas/EnumWithEscapedCharacters.md | 4 +- .../schemas/EnumWithFalseDoesNotMatch0.md | 6 +- .../schemas/EnumWithTrueDoesNotMatch1.md | 6 +- .../components/schemas/EnumsInProperties.md | 16 +-- .../schemas/ExclusivemaximumValidation.md | 16 +-- .../schemas/ExclusiveminimumValidation.md | 16 +-- .../components/schemas/FloatDivisionInf.md | 4 +- .../components/schemas/ForbiddenProperty.md | 52 ++++---- .../docs/components/schemas/HostnameFormat.md | 16 +-- .../docs/components/schemas/IdnEmailFormat.md | 16 +-- .../components/schemas/IdnHostnameFormat.md | 16 +-- .../schemas/IfAndElseWithoutThen.md | 48 ++++---- .../schemas/IfAndThenWithoutElse.md | 48 ++++---- ...WhenSerializedKeywordProcessingSequence.md | 64 +++++----- .../components/schemas/IgnoreElseWithoutIf.md | 32 ++--- .../schemas/IgnoreIfWithoutThenOrElse.md | 32 ++--- .../components/schemas/IgnoreThenWithoutIf.md | 32 ++--- .../schemas/IntegerTypeMatchesIntegers.md | 4 +- .../docs/components/schemas/Ipv4Format.md | 16 +-- .../docs/components/schemas/Ipv6Format.md | 16 +-- .../docs/components/schemas/IriFormat.md | 16 +-- .../components/schemas/IriReferenceFormat.md | 16 +-- .../docs/components/schemas/ItemsContains.md | 40 +++---- .../ItemsDoesNotLookInApplicatorsValidCase.md | 24 ++-- .../schemas/ItemsWithNullInstanceElements.md | 12 +- .../components/schemas/JsonPointerFormat.md | 16 +-- .../MaxcontainsWithoutContainsIsIgnored.md | 16 +-- .../components/schemas/MaximumValidation.md | 16 +-- .../MaximumValidationWithUnsignedInteger.md | 16 +-- .../components/schemas/MaxitemsValidation.md | 16 +-- .../components/schemas/MaxlengthValidation.md | 16 +-- .../Maxproperties0MeansTheObjectIsEmpty.md | 16 +-- .../schemas/MaxpropertiesValidation.md | 16 +-- .../MincontainsWithoutContainsIsIgnored.md | 16 +-- .../components/schemas/MinimumValidation.md | 16 +-- .../MinimumValidationWithSignedInteger.md | 16 +-- .../components/schemas/MinitemsValidation.md | 16 +-- .../components/schemas/MinlengthValidation.md | 16 +-- .../schemas/MinpropertiesValidation.md | 16 +-- .../schemas/MultipleDependentsRequired.md | 16 +-- ...multaneousPatternpropertiesAreValidated.md | 36 +++--- .../MultipleTypesCanBeSpecifiedInAnArray.md | 6 +- .../NestedAllofToCheckValidationSemantics.md | 36 +++--- .../NestedAnyofToCheckValidationSemantics.md | 36 +++--- .../docs/components/schemas/NestedItems.md | 36 +++--- .../NestedOneofToCheckValidationSemantics.md | 36 +++--- ...NonAsciiPatternWithAdditionalproperties.md | 40 +++---- .../NonInterferenceAcrossCombinedSchemas.md | 112 +++++++++--------- .../kotlin/docs/components/schemas/Not.md | 20 ++-- .../schemas/NotMoreComplexSchema.md | 28 ++--- .../components/schemas/NotMultipleTypes.md | 24 ++-- .../schemas/NulCharactersInStrings.md | 4 +- .../NullTypeMatchesOnlyTheNullObject.md | 4 +- .../schemas/NumberTypeMatchesNumbers.md | 4 +- .../schemas/ObjectPropertiesValidation.md | 28 ++--- .../schemas/ObjectTypeMatchesObjects.md | 4 +- .../kotlin/docs/components/schemas/Oneof.md | 36 +++--- .../components/schemas/OneofComplexTypes.md | 64 +++++----- .../components/schemas/OneofWithBaseSchema.md | 36 +++--- .../schemas/OneofWithEmptySchema.md | 36 +++--- .../components/schemas/OneofWithRequired.md | 44 +++---- .../schemas/PatternIsNotAnchored.md | 16 +-- .../components/schemas/PatternValidation.md | 16 +-- ...ertiesValidatesPropertiesMatchingARegex.md | 20 ++-- ...pertiesWithNullValuedInstanceProperties.md | 20 ++-- ...lidationAdjustsTheStartingIndexForItems.md | 16 +-- .../PrefixitemsWithNullInstanceElements.md | 24 ++-- ...opertiesAdditionalpropertiesInteraction.md | 36 +++--- ...seNamesAreJavascriptObjectPropertyNames.md | 52 ++++---- .../PropertiesWithEscapedCharacters.md | 44 +++---- ...pertiesWithNullValuedInstanceProperties.md | 24 ++-- .../PropertyNamedRefThatIsNotAReference.md | 24 ++-- .../schemas/PropertynamesValidation.md | 20 ++-- .../docs/components/schemas/RegexFormat.md | 16 +-- ...NotAnchoredByDefaultAndAreCaseSensitive.md | 26 ++-- .../schemas/RelativeJsonPointerFormat.md | 16 +-- .../schemas/RequiredDefaultValidation.md | 36 +++--- ...seNamesAreJavascriptObjectPropertyNames.md | 20 ++-- .../components/schemas/RequiredValidation.md | 52 ++++---- .../schemas/RequiredWithEmptyArray.md | 36 +++--- .../schemas/RequiredWithEscapedCharacters.md | 20 ++-- .../schemas/SimpleEnumValidation.md | 4 +- .../components/schemas/SingleDependency.md | 16 +-- .../schemas/SmallMultipleOfLargeInteger.md | 4 +- .../schemas/StringTypeMatchesStrings.md | 4 +- .../docs/components/schemas/TimeFormat.md | 16 +-- .../schemas/TypeArrayObjectOrNull.md | 8 +- .../components/schemas/TypeArrayOrObject.md | 6 +- .../schemas/TypeAsArrayWithOneItem.md | 4 +- .../schemas/UnevaluateditemsAsSchema.md | 20 ++-- ...teditemsDependsOnMultipleNestedContains.md | 96 +++++++-------- .../schemas/UnevaluateditemsWithItems.md | 16 +-- ...nevaluateditemsWithNullInstanceElements.md | 20 ++-- ...tedpropertiesNotAffectedByPropertynames.md | 24 ++-- .../schemas/UnevaluatedpropertiesSchema.md | 8 +- ...pertiesWithAdjacentAdditionalproperties.md | 44 +++---- ...pertiesWithNullValuedInstanceProperties.md | 20 ++-- .../schemas/UniqueitemsFalseValidation.md | 16 +-- .../UniqueitemsFalseWithAnArrayOfItems.md | 32 ++--- .../schemas/UniqueitemsValidation.md | 16 +-- .../schemas/UniqueitemsWithAnArrayOfItems.md | 32 ++--- .../docs/components/schemas/UriFormat.md | 16 +-- .../components/schemas/UriReferenceFormat.md | 16 +-- .../components/schemas/UriTemplateFormat.md | 16 +-- .../docs/components/schemas/UuidFormat.md | 16 +-- .../ValidateAgainstCorrectBranchThenVsElse.md | 64 +++++----- .../schemas/SchemaClass/_boxedBoolean.hbs | 2 +- .../components/schemas/Schema_doc.hbs | 34 +++--- 232 files changed, 2939 insertions(+), 2939 deletions(-) diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md index 01d7735d18f..0063959ea67 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAllowsASchemaWhichShouldValidate.md @@ -13,29 +13,29 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidate1Boxed](#additionalpropertiesallowsaschemawhichshouldvalidate1boxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidate1BoxedMap](#additionalpropertiesallowsaschemawhichshouldvalidate1boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidate1](#additionalpropertiesallowsaschemawhichshouldvalidate1)
schema class | -| static class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidateMapBuilder](#additionalpropertiesallowsaschemawhichshouldvalidatemapbuilder)
builder for Map payloads | -| static class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidateMap](#additionalpropertiesallowsaschemawhichshouldvalidatemap)
output class for Map payloads | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidate1BoxedMap](#additionalpropertiesallowsaschemawhichshouldvalidate1boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidate1](#additionalpropertiesallowsaschemawhichshouldvalidate1)
schema class | +| class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidateMapBuilder](#additionalpropertiesallowsaschemawhichshouldvalidatemapbuilder)
builder for Map payloads | +| class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalpropertiesAllowsASchemaWhichShouldValidateMap](#additionalpropertiesallowsaschemawhichshouldvalidatemap)
output class for Map payloads | | sealed interface | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.Bar](#bar)
schema class | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.Bar](#bar)
schema class | | sealed interface | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.Foo](#foo)
schema class | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.Foo](#foo)
schema class | | sealed interface | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalPropertiesBoxed](#additionalpropertiesboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | -| static class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalProperties](#additionalproperties)
schema class | +| data class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | +| class | [AdditionalpropertiesAllowsASchemaWhichShouldValidate.AdditionalProperties](#additionalproperties)
schema class | ## AdditionalpropertiesAllowsASchemaWhichShouldValidate1Boxed sealed interface AdditionalpropertiesAllowsASchemaWhichShouldValidate1Boxed
@@ -187,7 +187,7 @@ data class that stores validated null payloads, sealed permits implementation data class BarBoxedBoolean
implements [BarBoxed](#barboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -312,7 +312,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -415,7 +415,7 @@ sealed interface that stores validated payloads using boxed classes data class AdditionalPropertiesBoxedBoolean
implements [AdditionalPropertiesBoxed](#additionalpropertiesboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md index f5ee810d1f5..b1bac3ae670 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md @@ -13,31 +13,31 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1Boxed](#additionalpropertiesareallowedbydefault1boxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedVoid](#additionalpropertiesareallowedbydefault1boxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedBoolean](#additionalpropertiesareallowedbydefault1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedNumber](#additionalpropertiesareallowedbydefault1boxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedString](#additionalpropertiesareallowedbydefault1boxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedList](#additionalpropertiesareallowedbydefault1boxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedMap](#additionalpropertiesareallowedbydefault1boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1](#additionalpropertiesareallowedbydefault1)
schema class | -| static class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefaultMapBuilder](#additionalpropertiesareallowedbydefaultmapbuilder)
builder for Map payloads | -| static class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefaultMap](#additionalpropertiesareallowedbydefaultmap)
output class for Map payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedVoid](#additionalpropertiesareallowedbydefault1boxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedBoolean](#additionalpropertiesareallowedbydefault1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedNumber](#additionalpropertiesareallowedbydefault1boxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedString](#additionalpropertiesareallowedbydefault1boxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedList](#additionalpropertiesareallowedbydefault1boxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedMap](#additionalpropertiesareallowedbydefault1boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1](#additionalpropertiesareallowedbydefault1)
schema class | +| class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefaultMapBuilder](#additionalpropertiesareallowedbydefaultmapbuilder)
builder for Map payloads | +| class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefaultMap](#additionalpropertiesareallowedbydefaultmap)
output class for Map payloads | | sealed interface | [AdditionalpropertiesAreAllowedByDefault.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesAreAllowedByDefault.Bar](#bar)
schema class | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesAreAllowedByDefault.Bar](#bar)
schema class | | sealed interface | [AdditionalpropertiesAreAllowedByDefault.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesAreAllowedByDefault.Foo](#foo)
schema class | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesAreAllowedByDefault.Foo](#foo)
schema class | ## AdditionalpropertiesAreAllowedByDefault1Boxed sealed interface AdditionalpropertiesAreAllowedByDefault1Boxed
@@ -72,7 +72,7 @@ data class that stores validated null payloads, sealed permits implementation data class AdditionalpropertiesAreAllowedByDefault1BoxedBoolean
implements [AdditionalpropertiesAreAllowedByDefault1Boxed](#additionalpropertiesareallowedbydefault1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -276,7 +276,7 @@ data class that stores validated null payloads, sealed permits implementation data class BarBoxedBoolean
implements [BarBoxed](#barboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -401,7 +401,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md index 90eab2eba43..0b32be06cb3 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md @@ -13,13 +13,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1Boxed](#additionalpropertiescanexistbyitself1boxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1BoxedMap](#additionalpropertiescanexistbyitself1boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1](#additionalpropertiescanexistbyitself1)
schema class | -| static class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMapBuilder](#additionalpropertiescanexistbyitselfmapbuilder)
builder for Map payloads | -| static class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMap](#additionalpropertiescanexistbyitselfmap)
output class for Map payloads | +| data class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1BoxedMap](#additionalpropertiescanexistbyitself1boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1](#additionalpropertiescanexistbyitself1)
schema class | +| class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMapBuilder](#additionalpropertiescanexistbyitselfmapbuilder)
builder for Map payloads | +| class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMap](#additionalpropertiescanexistbyitselfmap)
output class for Map payloads | | sealed interface | [AdditionalpropertiesCanExistByItself.AdditionalPropertiesBoxed](#additionalpropertiesboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesCanExistByItself.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | -| static class | [AdditionalpropertiesCanExistByItself.AdditionalProperties](#additionalproperties)
schema class | +| data class | [AdditionalpropertiesCanExistByItself.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | +| class | [AdditionalpropertiesCanExistByItself.AdditionalProperties](#additionalproperties)
schema class | ## AdditionalpropertiesCanExistByItself1Boxed sealed interface AdditionalpropertiesCanExistByItself1Boxed
@@ -128,7 +128,7 @@ sealed interface that stores validated payloads using boxed classes data class AdditionalPropertiesBoxedBoolean
implements [AdditionalPropertiesBoxed](#additionalpropertiesboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesShouldNotLookInApplicators.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesShouldNotLookInApplicators.md index 9ebee8d5775..1a7657efb37 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesShouldNotLookInApplicators.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesShouldNotLookInApplicators.md @@ -13,36 +13,36 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1Boxed](#additionalpropertiesshouldnotlookinapplicators1boxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedVoid](#additionalpropertiesshouldnotlookinapplicators1boxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedBoolean](#additionalpropertiesshouldnotlookinapplicators1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedNumber](#additionalpropertiesshouldnotlookinapplicators1boxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedString](#additionalpropertiesshouldnotlookinapplicators1boxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedList](#additionalpropertiesshouldnotlookinapplicators1boxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedMap](#additionalpropertiesshouldnotlookinapplicators1boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1](#additionalpropertiesshouldnotlookinapplicators1)
schema class | -| static class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicatorsMapBuilder](#additionalpropertiesshouldnotlookinapplicatorsmapbuilder)
builder for Map payloads | -| static class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicatorsMap](#additionalpropertiesshouldnotlookinapplicatorsmap)
output class for Map payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedVoid](#additionalpropertiesshouldnotlookinapplicators1boxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedBoolean](#additionalpropertiesshouldnotlookinapplicators1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedNumber](#additionalpropertiesshouldnotlookinapplicators1boxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedString](#additionalpropertiesshouldnotlookinapplicators1boxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedList](#additionalpropertiesshouldnotlookinapplicators1boxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1BoxedMap](#additionalpropertiesshouldnotlookinapplicators1boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicators1](#additionalpropertiesshouldnotlookinapplicators1)
schema class | +| class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicatorsMapBuilder](#additionalpropertiesshouldnotlookinapplicatorsmapbuilder)
builder for Map payloads | +| class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalpropertiesShouldNotLookInApplicatorsMap](#additionalpropertiesshouldnotlookinapplicatorsmap)
output class for Map payloads | | sealed interface | [AdditionalpropertiesShouldNotLookInApplicators.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0](#schema0)
schema class | -| static class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0](#schema0)
schema class | +| class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [AdditionalpropertiesShouldNotLookInApplicators.Schema0Map](#schema0map)
output class for Map payloads | | sealed interface | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesShouldNotLookInApplicators.Foo](#foo)
schema class | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesShouldNotLookInApplicators.Foo](#foo)
schema class | | sealed interface | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalPropertiesBoxed](#additionalpropertiesboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | -| static class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalProperties](#additionalproperties)
schema class | +| data class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | +| class | [AdditionalpropertiesShouldNotLookInApplicators.AdditionalProperties](#additionalproperties)
schema class | ## AdditionalpropertiesShouldNotLookInApplicators1Boxed sealed interface AdditionalpropertiesShouldNotLookInApplicators1Boxed
@@ -77,7 +77,7 @@ data class that stores validated null payloads, sealed permits implementation data class AdditionalpropertiesShouldNotLookInApplicators1BoxedBoolean
implements [AdditionalpropertiesShouldNotLookInApplicators1Boxed](#additionalpropertiesshouldnotlookinapplicators1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -254,7 +254,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -448,7 +448,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -551,7 +551,7 @@ sealed interface that stores validated payloads using boxed classes data class AdditionalPropertiesBoxedBoolean
implements [AdditionalPropertiesBoxed](#additionalpropertiesboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Allof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Allof.md index 5815520963b..aa43e78fba1 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Allof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Allof.md @@ -13,39 +13,39 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Allof.Allof1Boxed](#allof1boxed)
sealed interface for validated payloads | -| record | [Allof.Allof1BoxedVoid](#allof1boxedvoid)
boxed class to store validated null payloads | -| record | [Allof.Allof1BoxedBoolean](#allof1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Allof.Allof1BoxedNumber](#allof1boxednumber)
boxed class to store validated Number payloads | -| record | [Allof.Allof1BoxedString](#allof1boxedstring)
boxed class to store validated String payloads | -| record | [Allof.Allof1BoxedList](#allof1boxedlist)
boxed class to store validated List payloads | -| record | [Allof.Allof1BoxedMap](#allof1boxedmap)
boxed class to store validated Map payloads | -| static class | [Allof.Allof1](#allof1)
schema class | +| data class | [Allof.Allof1BoxedVoid](#allof1boxedvoid)
boxed class to store validated null payloads | +| data class | [Allof.Allof1BoxedBoolean](#allof1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Allof.Allof1BoxedNumber](#allof1boxednumber)
boxed class to store validated Number payloads | +| data class | [Allof.Allof1BoxedString](#allof1boxedstring)
boxed class to store validated String payloads | +| data class | [Allof.Allof1BoxedList](#allof1boxedlist)
boxed class to store validated List payloads | +| data class | [Allof.Allof1BoxedMap](#allof1boxedmap)
boxed class to store validated Map payloads | +| class | [Allof.Allof1](#allof1)
schema class | | sealed interface | [Allof.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [Allof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [Allof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Allof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [Allof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [Allof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [Allof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [Allof.Schema1](#schema1)
schema class | -| static class | [Allof.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | -| static class | [Allof.Schema1Map](#schema1map)
output class for Map payloads | +| data class | [Allof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [Allof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Allof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [Allof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [Allof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [Allof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [Allof.Schema1](#schema1)
schema class | +| class | [Allof.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | +| class | [Allof.Schema1Map](#schema1map)
output class for Map payloads | | sealed interface | [Allof.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [Allof.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [Allof.Foo](#foo)
schema class | +| data class | [Allof.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [Allof.Foo](#foo)
schema class | | sealed interface | [Allof.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [Allof.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [Allof.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [Allof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [Allof.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [Allof.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [Allof.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [Allof.Schema0](#schema0)
schema class | -| static class | [Allof.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [Allof.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [Allof.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [Allof.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Allof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [Allof.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [Allof.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [Allof.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [Allof.Schema0](#schema0)
schema class | +| class | [Allof.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [Allof.Schema0Map](#schema0map)
output class for Map payloads | | sealed interface | [Allof.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [Allof.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| static class | [Allof.Bar](#bar)
schema class | +| data class | [Allof.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| class | [Allof.Bar](#bar)
schema class | ## Allof1Boxed sealed interface Allof1Boxed
@@ -80,7 +80,7 @@ data class that stores validated null payloads, sealed permits implementation data class Allof1BoxedBoolean
implements [Allof1Boxed](#allof1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -227,7 +227,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -464,7 +464,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md index 75cfac35745..75215240e81 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md @@ -11,37 +11,37 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1Boxed](#allofcombinedwithanyofoneof1boxed)
sealed interface for validated payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedVoid](#allofcombinedwithanyofoneof1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedBoolean](#allofcombinedwithanyofoneof1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedNumber](#allofcombinedwithanyofoneof1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedString](#allofcombinedwithanyofoneof1boxedstring)
boxed class to store validated String payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedList](#allofcombinedwithanyofoneof1boxedlist)
boxed class to store validated List payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedMap](#allofcombinedwithanyofoneof1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1](#allofcombinedwithanyofoneof1)
schema class | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedVoid](#allofcombinedwithanyofoneof1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedBoolean](#allofcombinedwithanyofoneof1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedNumber](#allofcombinedwithanyofoneof1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedString](#allofcombinedwithanyofoneof1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedList](#allofcombinedwithanyofoneof1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedMap](#allofcombinedwithanyofoneof1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1](#allofcombinedwithanyofoneof1)
schema class | | sealed interface | [AllofCombinedWithAnyofOneof.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofCombinedWithAnyofOneof.Schema0](#schema0)
schema class | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofCombinedWithAnyofOneof.Schema0](#schema0)
schema class | | sealed interface | [AllofCombinedWithAnyofOneof.Schema01Boxed](#schema01boxed)
sealed interface for validated payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedBoolean](#schema01boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedNumber](#schema01boxednumber)
boxed class to store validated Number payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedString](#schema01boxedstring)
boxed class to store validated String payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedList](#schema01boxedlist)
boxed class to store validated List payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedMap](#schema01boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofCombinedWithAnyofOneof.Schema01](#schema01)
schema class | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedBoolean](#schema01boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedNumber](#schema01boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedString](#schema01boxedstring)
boxed class to store validated String payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedList](#schema01boxedlist)
boxed class to store validated List payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedMap](#schema01boxedmap)
boxed class to store validated Map payloads | +| class | [AllofCombinedWithAnyofOneof.Schema01](#schema01)
schema class | | sealed interface | [AllofCombinedWithAnyofOneof.Schema02Boxed](#schema02boxed)
sealed interface for validated payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedVoid](#schema02boxedvoid)
boxed class to store validated null payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedBoolean](#schema02boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedNumber](#schema02boxednumber)
boxed class to store validated Number payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedString](#schema02boxedstring)
boxed class to store validated String payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedList](#schema02boxedlist)
boxed class to store validated List payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedMap](#schema02boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofCombinedWithAnyofOneof.Schema02](#schema02)
schema class | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedVoid](#schema02boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedBoolean](#schema02boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedNumber](#schema02boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedString](#schema02boxedstring)
boxed class to store validated String payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedList](#schema02boxedlist)
boxed class to store validated List payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedMap](#schema02boxedmap)
boxed class to store validated Map payloads | +| class | [AllofCombinedWithAnyofOneof.Schema02](#schema02)
schema class | ## AllofCombinedWithAnyofOneof1Boxed sealed interface AllofCombinedWithAnyofOneof1Boxed
@@ -76,7 +76,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofCombinedWithAnyofOneof1BoxedBoolean
implements [AllofCombinedWithAnyofOneof1Boxed](#allofcombinedwithanyofoneof1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -225,7 +225,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -372,7 +372,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema01BoxedBoolean
implements [Schema01Boxed](#schema01boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -519,7 +519,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema02BoxedBoolean
implements [Schema02Boxed](#schema02boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md index e0fe3c0cc4f..61cae045ee0 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md @@ -11,29 +11,29 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofSimpleTypes.AllofSimpleTypes1Boxed](#allofsimpletypes1boxed)
sealed interface for validated payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedVoid](#allofsimpletypes1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedBoolean](#allofsimpletypes1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedNumber](#allofsimpletypes1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedString](#allofsimpletypes1boxedstring)
boxed class to store validated String payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedList](#allofsimpletypes1boxedlist)
boxed class to store validated List payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedMap](#allofsimpletypes1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofSimpleTypes.AllofSimpleTypes1](#allofsimpletypes1)
schema class | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedVoid](#allofsimpletypes1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedBoolean](#allofsimpletypes1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedNumber](#allofsimpletypes1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedString](#allofsimpletypes1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedList](#allofsimpletypes1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedMap](#allofsimpletypes1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofSimpleTypes.AllofSimpleTypes1](#allofsimpletypes1)
schema class | | sealed interface | [AllofSimpleTypes.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AllofSimpleTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofSimpleTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofSimpleTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofSimpleTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofSimpleTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofSimpleTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofSimpleTypes.Schema1](#schema1)
schema class | +| data class | [AllofSimpleTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofSimpleTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofSimpleTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofSimpleTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofSimpleTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofSimpleTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofSimpleTypes.Schema1](#schema1)
schema class | | sealed interface | [AllofSimpleTypes.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofSimpleTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofSimpleTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofSimpleTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofSimpleTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofSimpleTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofSimpleTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofSimpleTypes.Schema0](#schema0)
schema class | +| data class | [AllofSimpleTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofSimpleTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofSimpleTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofSimpleTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofSimpleTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofSimpleTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofSimpleTypes.Schema0](#schema0)
schema class | ## AllofSimpleTypes1Boxed sealed interface AllofSimpleTypes1Boxed
@@ -68,7 +68,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofSimpleTypes1BoxedBoolean
implements [AllofSimpleTypes1Boxed](#allofsimpletypes1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -215,7 +215,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -362,7 +362,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md index c3e2a4219f4..524f0fbafad 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md @@ -13,44 +13,44 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofWithBaseSchema.AllofWithBaseSchema1Boxed](#allofwithbaseschema1boxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedVoid](#allofwithbaseschema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedBoolean](#allofwithbaseschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedNumber](#allofwithbaseschema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedString](#allofwithbaseschema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedList](#allofwithbaseschema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedMap](#allofwithbaseschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithBaseSchema.AllofWithBaseSchema1](#allofwithbaseschema1)
schema class | -| static class | [AllofWithBaseSchema.AllofWithBaseSchemaMapBuilder](#allofwithbaseschemamapbuilder)
builder for Map payloads | -| static class | [AllofWithBaseSchema.AllofWithBaseSchemaMap](#allofwithbaseschemamap)
output class for Map payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedVoid](#allofwithbaseschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedBoolean](#allofwithbaseschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedNumber](#allofwithbaseschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedString](#allofwithbaseschema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedList](#allofwithbaseschema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedMap](#allofwithbaseschema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithBaseSchema.AllofWithBaseSchema1](#allofwithbaseschema1)
schema class | +| class | [AllofWithBaseSchema.AllofWithBaseSchemaMapBuilder](#allofwithbaseschemamapbuilder)
builder for Map payloads | +| class | [AllofWithBaseSchema.AllofWithBaseSchemaMap](#allofwithbaseschemamap)
output class for Map payloads | | sealed interface | [AllofWithBaseSchema.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| static class | [AllofWithBaseSchema.Bar](#bar)
schema class | +| data class | [AllofWithBaseSchema.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| class | [AllofWithBaseSchema.Bar](#bar)
schema class | | sealed interface | [AllofWithBaseSchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithBaseSchema.Schema1](#schema1)
schema class | -| static class | [AllofWithBaseSchema.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | -| static class | [AllofWithBaseSchema.Schema1Map](#schema1map)
output class for Map payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithBaseSchema.Schema1](#schema1)
schema class | +| class | [AllofWithBaseSchema.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | +| class | [AllofWithBaseSchema.Schema1Map](#schema1map)
output class for Map payloads | | sealed interface | [AllofWithBaseSchema.BazBoxed](#bazboxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.BazBoxedVoid](#bazboxedvoid)
boxed class to store validated null payloads | -| static class | [AllofWithBaseSchema.Baz](#baz)
schema class | +| data class | [AllofWithBaseSchema.BazBoxedVoid](#bazboxedvoid)
boxed class to store validated null payloads | +| class | [AllofWithBaseSchema.Baz](#baz)
schema class | | sealed interface | [AllofWithBaseSchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithBaseSchema.Schema0](#schema0)
schema class | -| static class | [AllofWithBaseSchema.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [AllofWithBaseSchema.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithBaseSchema.Schema0](#schema0)
schema class | +| class | [AllofWithBaseSchema.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [AllofWithBaseSchema.Schema0Map](#schema0map)
output class for Map payloads | | sealed interface | [AllofWithBaseSchema.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [AllofWithBaseSchema.Foo](#foo)
schema class | +| data class | [AllofWithBaseSchema.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [AllofWithBaseSchema.Foo](#foo)
schema class | ## AllofWithBaseSchema1Boxed sealed interface AllofWithBaseSchema1Boxed
@@ -85,7 +85,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofWithBaseSchema1BoxedBoolean
implements [AllofWithBaseSchema1Boxed](#allofwithbaseschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -326,7 +326,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -563,7 +563,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md index 8c5d1b108f4..a5af25147e9 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md @@ -11,21 +11,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1Boxed](#allofwithoneemptyschema1boxed)
sealed interface for validated payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedVoid](#allofwithoneemptyschema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedBoolean](#allofwithoneemptyschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedNumber](#allofwithoneemptyschema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedString](#allofwithoneemptyschema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedList](#allofwithoneemptyschema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedMap](#allofwithoneemptyschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1](#allofwithoneemptyschema1)
schema class | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedVoid](#allofwithoneemptyschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedBoolean](#allofwithoneemptyschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedNumber](#allofwithoneemptyschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedString](#allofwithoneemptyschema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedList](#allofwithoneemptyschema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedMap](#allofwithoneemptyschema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1](#allofwithoneemptyschema1)
schema class | | sealed interface | [AllofWithOneEmptySchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithOneEmptySchema.Schema0](#schema0)
schema class | +| data class | [AllofWithOneEmptySchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithOneEmptySchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithOneEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithOneEmptySchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithOneEmptySchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithOneEmptySchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithOneEmptySchema.Schema0](#schema0)
schema class | ## AllofWithOneEmptySchema1Boxed sealed interface AllofWithOneEmptySchema1Boxed
@@ -60,7 +60,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofWithOneEmptySchema1BoxedBoolean
implements [AllofWithOneEmptySchema1Boxed](#allofwithoneemptyschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -207,7 +207,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md index 26896d1c031..b65be297722 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1Boxed](#allofwiththefirstemptyschema1boxed)
sealed interface for validated payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedVoid](#allofwiththefirstemptyschema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedBoolean](#allofwiththefirstemptyschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedNumber](#allofwiththefirstemptyschema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedString](#allofwiththefirstemptyschema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedList](#allofwiththefirstemptyschema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedMap](#allofwiththefirstemptyschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1](#allofwiththefirstemptyschema1)
schema class | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedVoid](#allofwiththefirstemptyschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedBoolean](#allofwiththefirstemptyschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedNumber](#allofwiththefirstemptyschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedString](#allofwiththefirstemptyschema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedList](#allofwiththefirstemptyschema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedMap](#allofwiththefirstemptyschema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1](#allofwiththefirstemptyschema1)
schema class | | sealed interface | [AllofWithTheFirstEmptySchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AllofWithTheFirstEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| static class | [AllofWithTheFirstEmptySchema.Schema1](#schema1)
schema class | +| data class | [AllofWithTheFirstEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| class | [AllofWithTheFirstEmptySchema.Schema1](#schema1)
schema class | | sealed interface | [AllofWithTheFirstEmptySchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTheFirstEmptySchema.Schema0](#schema0)
schema class | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTheFirstEmptySchema.Schema0](#schema0)
schema class | ## AllofWithTheFirstEmptySchema1Boxed sealed interface AllofWithTheFirstEmptySchema1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofWithTheFirstEmptySchema1BoxedBoolean
implements [AllofWithTheFirstEmptySchema1Boxed](#allofwiththefirstemptyschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -245,7 +245,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md index 17ba600a8b9..319c3b77fd8 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1Boxed](#allofwiththelastemptyschema1boxed)
sealed interface for validated payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedVoid](#allofwiththelastemptyschema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedBoolean](#allofwiththelastemptyschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedNumber](#allofwiththelastemptyschema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedString](#allofwiththelastemptyschema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedList](#allofwiththelastemptyschema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedMap](#allofwiththelastemptyschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1](#allofwiththelastemptyschema1)
schema class | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedVoid](#allofwiththelastemptyschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedBoolean](#allofwiththelastemptyschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedNumber](#allofwiththelastemptyschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedString](#allofwiththelastemptyschema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedList](#allofwiththelastemptyschema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedMap](#allofwiththelastemptyschema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1](#allofwiththelastemptyschema1)
schema class | | sealed interface | [AllofWithTheLastEmptySchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTheLastEmptySchema.Schema1](#schema1)
schema class | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTheLastEmptySchema.Schema1](#schema1)
schema class | | sealed interface | [AllofWithTheLastEmptySchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofWithTheLastEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [AllofWithTheLastEmptySchema.Schema0](#schema0)
schema class | +| data class | [AllofWithTheLastEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [AllofWithTheLastEmptySchema.Schema0](#schema0)
schema class | ## AllofWithTheLastEmptySchema1Boxed sealed interface AllofWithTheLastEmptySchema1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofWithTheLastEmptySchema1BoxedBoolean
implements [AllofWithTheLastEmptySchema1Boxed](#allofwiththelastemptyschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md index ed872f52fe1..f4babda1127 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md @@ -11,29 +11,29 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1Boxed](#allofwithtwoemptyschemas1boxed)
sealed interface for validated payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedVoid](#allofwithtwoemptyschemas1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedBoolean](#allofwithtwoemptyschemas1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedNumber](#allofwithtwoemptyschemas1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedString](#allofwithtwoemptyschemas1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedList](#allofwithtwoemptyschemas1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedMap](#allofwithtwoemptyschemas1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1](#allofwithtwoemptyschemas1)
schema class | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedVoid](#allofwithtwoemptyschemas1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedBoolean](#allofwithtwoemptyschemas1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedNumber](#allofwithtwoemptyschemas1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedString](#allofwithtwoemptyschemas1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedList](#allofwithtwoemptyschemas1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedMap](#allofwithtwoemptyschemas1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1](#allofwithtwoemptyschemas1)
schema class | | sealed interface | [AllofWithTwoEmptySchemas.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTwoEmptySchemas.Schema1](#schema1)
schema class | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTwoEmptySchemas.Schema1](#schema1)
schema class | | sealed interface | [AllofWithTwoEmptySchemas.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTwoEmptySchemas.Schema0](#schema0)
schema class | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTwoEmptySchemas.Schema0](#schema0)
schema class | ## AllofWithTwoEmptySchemas1Boxed sealed interface AllofWithTwoEmptySchemas1Boxed
@@ -68,7 +68,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofWithTwoEmptySchemas1BoxedBoolean
implements [AllofWithTwoEmptySchemas1Boxed](#allofwithtwoemptyschemas1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -215,7 +215,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -340,7 +340,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Anyof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Anyof.md index 40574b1aa2c..5249f69696b 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Anyof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Anyof.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Anyof.Anyof1Boxed](#anyof1boxed)
sealed interface for validated payloads | -| record | [Anyof.Anyof1BoxedVoid](#anyof1boxedvoid)
boxed class to store validated null payloads | -| record | [Anyof.Anyof1BoxedBoolean](#anyof1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Anyof.Anyof1BoxedNumber](#anyof1boxednumber)
boxed class to store validated Number payloads | -| record | [Anyof.Anyof1BoxedString](#anyof1boxedstring)
boxed class to store validated String payloads | -| record | [Anyof.Anyof1BoxedList](#anyof1boxedlist)
boxed class to store validated List payloads | -| record | [Anyof.Anyof1BoxedMap](#anyof1boxedmap)
boxed class to store validated Map payloads | -| static class | [Anyof.Anyof1](#anyof1)
schema class | +| data class | [Anyof.Anyof1BoxedVoid](#anyof1boxedvoid)
boxed class to store validated null payloads | +| data class | [Anyof.Anyof1BoxedBoolean](#anyof1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Anyof.Anyof1BoxedNumber](#anyof1boxednumber)
boxed class to store validated Number payloads | +| data class | [Anyof.Anyof1BoxedString](#anyof1boxedstring)
boxed class to store validated String payloads | +| data class | [Anyof.Anyof1BoxedList](#anyof1boxedlist)
boxed class to store validated List payloads | +| data class | [Anyof.Anyof1BoxedMap](#anyof1boxedmap)
boxed class to store validated Map payloads | +| class | [Anyof.Anyof1](#anyof1)
schema class | | sealed interface | [Anyof.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [Anyof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [Anyof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Anyof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [Anyof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [Anyof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [Anyof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [Anyof.Schema1](#schema1)
schema class | +| data class | [Anyof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [Anyof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Anyof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [Anyof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [Anyof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [Anyof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [Anyof.Schema1](#schema1)
schema class | | sealed interface | [Anyof.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [Anyof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [Anyof.Schema0](#schema0)
schema class | +| data class | [Anyof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [Anyof.Schema0](#schema0)
schema class | ## Anyof1Boxed sealed interface Anyof1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class Anyof1BoxedBoolean
implements [Anyof1Boxed](#anyof1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md index accce6dccfa..8c91a23d6a0 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md @@ -13,39 +13,39 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AnyofComplexTypes.AnyofComplexTypes1Boxed](#anyofcomplextypes1boxed)
sealed interface for validated payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedVoid](#anyofcomplextypes1boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedBoolean](#anyofcomplextypes1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedNumber](#anyofcomplextypes1boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedString](#anyofcomplextypes1boxedstring)
boxed class to store validated String payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedList](#anyofcomplextypes1boxedlist)
boxed class to store validated List payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedMap](#anyofcomplextypes1boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofComplexTypes.AnyofComplexTypes1](#anyofcomplextypes1)
schema class | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedVoid](#anyofcomplextypes1boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedBoolean](#anyofcomplextypes1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedNumber](#anyofcomplextypes1boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedString](#anyofcomplextypes1boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedList](#anyofcomplextypes1boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedMap](#anyofcomplextypes1boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofComplexTypes.AnyofComplexTypes1](#anyofcomplextypes1)
schema class | | sealed interface | [AnyofComplexTypes.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AnyofComplexTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofComplexTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofComplexTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofComplexTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AnyofComplexTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AnyofComplexTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofComplexTypes.Schema1](#schema1)
schema class | -| static class | [AnyofComplexTypes.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | -| static class | [AnyofComplexTypes.Schema1Map](#schema1map)
output class for Map payloads | +| data class | [AnyofComplexTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofComplexTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofComplexTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofComplexTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofComplexTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofComplexTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofComplexTypes.Schema1](#schema1)
schema class | +| class | [AnyofComplexTypes.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | +| class | [AnyofComplexTypes.Schema1Map](#schema1map)
output class for Map payloads | | sealed interface | [AnyofComplexTypes.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [AnyofComplexTypes.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [AnyofComplexTypes.Foo](#foo)
schema class | +| data class | [AnyofComplexTypes.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [AnyofComplexTypes.Foo](#foo)
schema class | | sealed interface | [AnyofComplexTypes.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AnyofComplexTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofComplexTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofComplexTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofComplexTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AnyofComplexTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AnyofComplexTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofComplexTypes.Schema0](#schema0)
schema class | -| static class | [AnyofComplexTypes.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [AnyofComplexTypes.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [AnyofComplexTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofComplexTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofComplexTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofComplexTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofComplexTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofComplexTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofComplexTypes.Schema0](#schema0)
schema class | +| class | [AnyofComplexTypes.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [AnyofComplexTypes.Schema0Map](#schema0map)
output class for Map payloads | | sealed interface | [AnyofComplexTypes.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [AnyofComplexTypes.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| static class | [AnyofComplexTypes.Bar](#bar)
schema class | +| data class | [AnyofComplexTypes.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| class | [AnyofComplexTypes.Bar](#bar)
schema class | ## AnyofComplexTypes1Boxed sealed interface AnyofComplexTypes1Boxed
@@ -80,7 +80,7 @@ data class that stores validated null payloads, sealed permits implementation data class AnyofComplexTypes1BoxedBoolean
implements [AnyofComplexTypes1Boxed](#anyofcomplextypes1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -227,7 +227,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -464,7 +464,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md index a42940a33cf..1ff9277b898 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AnyofWithBaseSchema.AnyofWithBaseSchema1Boxed](#anyofwithbaseschema1boxed)
sealed interface for validated payloads | -| record | [AnyofWithBaseSchema.AnyofWithBaseSchema1BoxedString](#anyofwithbaseschema1boxedstring)
boxed class to store validated String payloads | -| static class | [AnyofWithBaseSchema.AnyofWithBaseSchema1](#anyofwithbaseschema1)
schema class | +| data class | [AnyofWithBaseSchema.AnyofWithBaseSchema1BoxedString](#anyofwithbaseschema1boxedstring)
boxed class to store validated String payloads | +| class | [AnyofWithBaseSchema.AnyofWithBaseSchema1](#anyofwithbaseschema1)
schema class | | sealed interface | [AnyofWithBaseSchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofWithBaseSchema.Schema1](#schema1)
schema class | +| data class | [AnyofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofWithBaseSchema.Schema1](#schema1)
schema class | | sealed interface | [AnyofWithBaseSchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofWithBaseSchema.Schema0](#schema0)
schema class | +| data class | [AnyofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofWithBaseSchema.Schema0](#schema0)
schema class | ## AnyofWithBaseSchema1Boxed sealed interface AnyofWithBaseSchema1Boxed
@@ -126,7 +126,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -273,7 +273,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md index 4dc4984ad15..3f9c0ed2f09 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1Boxed](#anyofwithoneemptyschema1boxed)
sealed interface for validated payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedVoid](#anyofwithoneemptyschema1boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedBoolean](#anyofwithoneemptyschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedNumber](#anyofwithoneemptyschema1boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedString](#anyofwithoneemptyschema1boxedstring)
boxed class to store validated String payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedList](#anyofwithoneemptyschema1boxedlist)
boxed class to store validated List payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedMap](#anyofwithoneemptyschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1](#anyofwithoneemptyschema1)
schema class | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedVoid](#anyofwithoneemptyschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedBoolean](#anyofwithoneemptyschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedNumber](#anyofwithoneemptyschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedString](#anyofwithoneemptyschema1boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedList](#anyofwithoneemptyschema1boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedMap](#anyofwithoneemptyschema1boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1](#anyofwithoneemptyschema1)
schema class | | sealed interface | [AnyofWithOneEmptySchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofWithOneEmptySchema.Schema1](#schema1)
schema class | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofWithOneEmptySchema.Schema1](#schema1)
schema class | | sealed interface | [AnyofWithOneEmptySchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AnyofWithOneEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [AnyofWithOneEmptySchema.Schema0](#schema0)
schema class | +| data class | [AnyofWithOneEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [AnyofWithOneEmptySchema.Schema0](#schema0)
schema class | ## AnyofWithOneEmptySchema1Boxed sealed interface AnyofWithOneEmptySchema1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class AnyofWithOneEmptySchema1BoxedBoolean
implements [AnyofWithOneEmptySchema1Boxed](#anyofwithoneemptyschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md index 1b6cb41537d..dd8a3a9ae0b 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md @@ -13,18 +13,18 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ArrayTypeMatchesArrays.ArrayTypeMatchesArrays1Boxed](#arraytypematchesarrays1boxed)
sealed interface for validated payloads | -| record | [ArrayTypeMatchesArrays.ArrayTypeMatchesArrays1BoxedList](#arraytypematchesarrays1boxedlist)
boxed class to store validated List payloads | -| static class | [ArrayTypeMatchesArrays.ArrayTypeMatchesArrays1](#arraytypematchesarrays1)
schema class | -| static class | [ArrayTypeMatchesArrays.ArrayTypeMatchesArraysListBuilder](#arraytypematchesarrayslistbuilder)
builder for List payloads | -| static class | [ArrayTypeMatchesArrays.ArrayTypeMatchesArraysList](#arraytypematchesarrayslist)
output class for List payloads | +| data class | [ArrayTypeMatchesArrays.ArrayTypeMatchesArrays1BoxedList](#arraytypematchesarrays1boxedlist)
boxed class to store validated List payloads | +| class | [ArrayTypeMatchesArrays.ArrayTypeMatchesArrays1](#arraytypematchesarrays1)
schema class | +| class | [ArrayTypeMatchesArrays.ArrayTypeMatchesArraysListBuilder](#arraytypematchesarrayslistbuilder)
builder for List payloads | +| class | [ArrayTypeMatchesArrays.ArrayTypeMatchesArraysList](#arraytypematchesarrayslist)
output class for List payloads | | sealed interface | [ArrayTypeMatchesArrays.ItemsBoxed](#itemsboxed)
sealed interface for validated payloads | -| record | [ArrayTypeMatchesArrays.ItemsBoxedVoid](#itemsboxedvoid)
boxed class to store validated null payloads | -| record | [ArrayTypeMatchesArrays.ItemsBoxedBoolean](#itemsboxedboolean)
boxed class to store validated boolean payloads | -| record | [ArrayTypeMatchesArrays.ItemsBoxedNumber](#itemsboxednumber)
boxed class to store validated Number payloads | -| record | [ArrayTypeMatchesArrays.ItemsBoxedString](#itemsboxedstring)
boxed class to store validated String payloads | -| record | [ArrayTypeMatchesArrays.ItemsBoxedList](#itemsboxedlist)
boxed class to store validated List payloads | -| record | [ArrayTypeMatchesArrays.ItemsBoxedMap](#itemsboxedmap)
boxed class to store validated Map payloads | -| static class | [ArrayTypeMatchesArrays.Items](#items)
schema class | +| data class | [ArrayTypeMatchesArrays.ItemsBoxedVoid](#itemsboxedvoid)
boxed class to store validated null payloads | +| data class | [ArrayTypeMatchesArrays.ItemsBoxedBoolean](#itemsboxedboolean)
boxed class to store validated boolean payloads | +| data class | [ArrayTypeMatchesArrays.ItemsBoxedNumber](#itemsboxednumber)
boxed class to store validated Number payloads | +| data class | [ArrayTypeMatchesArrays.ItemsBoxedString](#itemsboxedstring)
boxed class to store validated String payloads | +| data class | [ArrayTypeMatchesArrays.ItemsBoxedList](#itemsboxedlist)
boxed class to store validated List payloads | +| data class | [ArrayTypeMatchesArrays.ItemsBoxedMap](#itemsboxedmap)
boxed class to store validated Map payloads | +| class | [ArrayTypeMatchesArrays.Items](#items)
schema class | ## ArrayTypeMatchesArrays1Boxed sealed interface ArrayTypeMatchesArrays1Boxed
@@ -161,7 +161,7 @@ data class that stores validated null payloads, sealed permits implementation data class ItemsBoxedBoolean
implements [ItemsBoxed](#itemsboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BooleanTypeMatchesBooleans.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BooleanTypeMatchesBooleans.md index e64f7f92c4a..344757cb4d2 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BooleanTypeMatchesBooleans.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BooleanTypeMatchesBooleans.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [BooleanTypeMatchesBooleans.BooleanTypeMatchesBooleans1Boxed](#booleantypematchesbooleans1boxed)
sealed interface for validated payloads | -| record | [BooleanTypeMatchesBooleans.BooleanTypeMatchesBooleans1BoxedBoolean](#booleantypematchesbooleans1boxedboolean)
boxed class to store validated boolean payloads | -| static class | [BooleanTypeMatchesBooleans.BooleanTypeMatchesBooleans1](#booleantypematchesbooleans1)
schema class | +| data class | [BooleanTypeMatchesBooleans.BooleanTypeMatchesBooleans1BoxedBoolean](#booleantypematchesbooleans1boxedboolean)
boxed class to store validated boolean payloads | +| class | [BooleanTypeMatchesBooleans.BooleanTypeMatchesBooleans1](#booleantypematchesbooleans1)
schema class | ## BooleanTypeMatchesBooleans1Boxed sealed interface BooleanTypeMatchesBooleans1Boxed
@@ -25,7 +25,7 @@ sealed interface that stores validated payloads using boxed classes data class BooleanTypeMatchesBooleans1BoxedBoolean
implements [BooleanTypeMatchesBooleans1Boxed](#booleantypematchesbooleans1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByInt.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByInt.md index 18177758e2d..a1519c07e7d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByInt.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByInt.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ByInt.ByInt1Boxed](#byint1boxed)
sealed interface for validated payloads | -| record | [ByInt.ByInt1BoxedVoid](#byint1boxedvoid)
boxed class to store validated null payloads | -| record | [ByInt.ByInt1BoxedBoolean](#byint1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ByInt.ByInt1BoxedNumber](#byint1boxednumber)
boxed class to store validated Number payloads | -| record | [ByInt.ByInt1BoxedString](#byint1boxedstring)
boxed class to store validated String payloads | -| record | [ByInt.ByInt1BoxedList](#byint1boxedlist)
boxed class to store validated List payloads | -| record | [ByInt.ByInt1BoxedMap](#byint1boxedmap)
boxed class to store validated Map payloads | -| static class | [ByInt.ByInt1](#byint1)
schema class | +| data class | [ByInt.ByInt1BoxedVoid](#byint1boxedvoid)
boxed class to store validated null payloads | +| data class | [ByInt.ByInt1BoxedBoolean](#byint1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ByInt.ByInt1BoxedNumber](#byint1boxednumber)
boxed class to store validated Number payloads | +| data class | [ByInt.ByInt1BoxedString](#byint1boxedstring)
boxed class to store validated String payloads | +| data class | [ByInt.ByInt1BoxedList](#byint1boxedlist)
boxed class to store validated List payloads | +| data class | [ByInt.ByInt1BoxedMap](#byint1boxedmap)
boxed class to store validated Map payloads | +| class | [ByInt.ByInt1](#byint1)
schema class | ## ByInt1Boxed sealed interface ByInt1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class ByInt1BoxedBoolean
implements [ByInt1Boxed](#byint1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByNumber.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByNumber.md index 176534986d0..d3ecbf42a82 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByNumber.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ByNumber.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ByNumber.ByNumber1Boxed](#bynumber1boxed)
sealed interface for validated payloads | -| record | [ByNumber.ByNumber1BoxedVoid](#bynumber1boxedvoid)
boxed class to store validated null payloads | -| record | [ByNumber.ByNumber1BoxedBoolean](#bynumber1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ByNumber.ByNumber1BoxedNumber](#bynumber1boxednumber)
boxed class to store validated Number payloads | -| record | [ByNumber.ByNumber1BoxedString](#bynumber1boxedstring)
boxed class to store validated String payloads | -| record | [ByNumber.ByNumber1BoxedList](#bynumber1boxedlist)
boxed class to store validated List payloads | -| record | [ByNumber.ByNumber1BoxedMap](#bynumber1boxedmap)
boxed class to store validated Map payloads | -| static class | [ByNumber.ByNumber1](#bynumber1)
schema class | +| data class | [ByNumber.ByNumber1BoxedVoid](#bynumber1boxedvoid)
boxed class to store validated null payloads | +| data class | [ByNumber.ByNumber1BoxedBoolean](#bynumber1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ByNumber.ByNumber1BoxedNumber](#bynumber1boxednumber)
boxed class to store validated Number payloads | +| data class | [ByNumber.ByNumber1BoxedString](#bynumber1boxedstring)
boxed class to store validated String payloads | +| data class | [ByNumber.ByNumber1BoxedList](#bynumber1boxedlist)
boxed class to store validated List payloads | +| data class | [ByNumber.ByNumber1BoxedMap](#bynumber1boxedmap)
boxed class to store validated Map payloads | +| class | [ByNumber.ByNumber1](#bynumber1)
schema class | ## ByNumber1Boxed sealed interface ByNumber1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class ByNumber1BoxedBoolean
implements [ByNumber1Boxed](#bynumber1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BySmallNumber.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BySmallNumber.md index 6fdaee75920..e2e2cd88e3b 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BySmallNumber.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/BySmallNumber.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [BySmallNumber.BySmallNumber1Boxed](#bysmallnumber1boxed)
sealed interface for validated payloads | -| record | [BySmallNumber.BySmallNumber1BoxedVoid](#bysmallnumber1boxedvoid)
boxed class to store validated null payloads | -| record | [BySmallNumber.BySmallNumber1BoxedBoolean](#bysmallnumber1boxedboolean)
boxed class to store validated boolean payloads | -| record | [BySmallNumber.BySmallNumber1BoxedNumber](#bysmallnumber1boxednumber)
boxed class to store validated Number payloads | -| record | [BySmallNumber.BySmallNumber1BoxedString](#bysmallnumber1boxedstring)
boxed class to store validated String payloads | -| record | [BySmallNumber.BySmallNumber1BoxedList](#bysmallnumber1boxedlist)
boxed class to store validated List payloads | -| record | [BySmallNumber.BySmallNumber1BoxedMap](#bysmallnumber1boxedmap)
boxed class to store validated Map payloads | -| static class | [BySmallNumber.BySmallNumber1](#bysmallnumber1)
schema class | +| data class | [BySmallNumber.BySmallNumber1BoxedVoid](#bysmallnumber1boxedvoid)
boxed class to store validated null payloads | +| data class | [BySmallNumber.BySmallNumber1BoxedBoolean](#bysmallnumber1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [BySmallNumber.BySmallNumber1BoxedNumber](#bysmallnumber1boxednumber)
boxed class to store validated Number payloads | +| data class | [BySmallNumber.BySmallNumber1BoxedString](#bysmallnumber1boxedstring)
boxed class to store validated String payloads | +| data class | [BySmallNumber.BySmallNumber1BoxedList](#bysmallnumber1boxedlist)
boxed class to store validated List payloads | +| data class | [BySmallNumber.BySmallNumber1BoxedMap](#bysmallnumber1boxedmap)
boxed class to store validated Map payloads | +| class | [BySmallNumber.BySmallNumber1](#bysmallnumber1)
schema class | ## BySmallNumber1Boxed sealed interface BySmallNumber1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class BySmallNumber1BoxedBoolean
implements [BySmallNumber1Boxed](#bysmallnumber1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md index dc2e42c4cde..beefd4d6f22 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [DateTimeFormat.DateTimeFormat1Boxed](#datetimeformat1boxed)
sealed interface for validated payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedVoid](#datetimeformat1boxedvoid)
boxed class to store validated null payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedBoolean](#datetimeformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedNumber](#datetimeformat1boxednumber)
boxed class to store validated Number payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedString](#datetimeformat1boxedstring)
boxed class to store validated String payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedList](#datetimeformat1boxedlist)
boxed class to store validated List payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedMap](#datetimeformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [DateTimeFormat.DateTimeFormat1](#datetimeformat1)
schema class | +| data class | [DateTimeFormat.DateTimeFormat1BoxedVoid](#datetimeformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [DateTimeFormat.DateTimeFormat1BoxedBoolean](#datetimeformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [DateTimeFormat.DateTimeFormat1BoxedNumber](#datetimeformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [DateTimeFormat.DateTimeFormat1BoxedString](#datetimeformat1boxedstring)
boxed class to store validated String payloads | +| data class | [DateTimeFormat.DateTimeFormat1BoxedList](#datetimeformat1boxedlist)
boxed class to store validated List payloads | +| data class | [DateTimeFormat.DateTimeFormat1BoxedMap](#datetimeformat1boxedmap)
boxed class to store validated Map payloads | +| class | [DateTimeFormat.DateTimeFormat1](#datetimeformat1)
schema class | ## DateTimeFormat1Boxed sealed interface DateTimeFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class DateTimeFormat1BoxedBoolean
implements [DateTimeFormat1Boxed](#datetimeformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EmailFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EmailFormat.md index dac13ddd113..71860bb4fb8 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EmailFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EmailFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EmailFormat.EmailFormat1Boxed](#emailformat1boxed)
sealed interface for validated payloads | -| record | [EmailFormat.EmailFormat1BoxedVoid](#emailformat1boxedvoid)
boxed class to store validated null payloads | -| record | [EmailFormat.EmailFormat1BoxedBoolean](#emailformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [EmailFormat.EmailFormat1BoxedNumber](#emailformat1boxednumber)
boxed class to store validated Number payloads | -| record | [EmailFormat.EmailFormat1BoxedString](#emailformat1boxedstring)
boxed class to store validated String payloads | -| record | [EmailFormat.EmailFormat1BoxedList](#emailformat1boxedlist)
boxed class to store validated List payloads | -| record | [EmailFormat.EmailFormat1BoxedMap](#emailformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [EmailFormat.EmailFormat1](#emailformat1)
schema class | +| data class | [EmailFormat.EmailFormat1BoxedVoid](#emailformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [EmailFormat.EmailFormat1BoxedBoolean](#emailformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [EmailFormat.EmailFormat1BoxedNumber](#emailformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [EmailFormat.EmailFormat1BoxedString](#emailformat1boxedstring)
boxed class to store validated String payloads | +| data class | [EmailFormat.EmailFormat1BoxedList](#emailformat1boxedlist)
boxed class to store validated List payloads | +| data class | [EmailFormat.EmailFormat1BoxedMap](#emailformat1boxedmap)
boxed class to store validated Map payloads | +| class | [EmailFormat.EmailFormat1](#emailformat1)
schema class | ## EmailFormat1Boxed sealed interface EmailFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class EmailFormat1BoxedBoolean
implements [EmailFormat1Boxed](#emailformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md index 8f60cb361bf..516cb7fe94f 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1Boxed](#enumwith0doesnotmatchfalse1boxed)
sealed interface for validated payloads | -| record | [EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1BoxedNumber](#enumwith0doesnotmatchfalse1boxednumber)
boxed class to store validated Number payloads | -| static class | [EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1](#enumwith0doesnotmatchfalse1)
schema class | +| data class | [EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1BoxedNumber](#enumwith0doesnotmatchfalse1boxednumber)
boxed class to store validated Number payloads | +| class | [EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1](#enumwith0doesnotmatchfalse1)
schema class | | enum | [EnumWith0DoesNotMatchFalse.IntegerEnumWith0DoesNotMatchFalseEnums](#integerenumwith0doesnotmatchfalseenums)
Integer enum | | enum | [EnumWith0DoesNotMatchFalse.LongEnumWith0DoesNotMatchFalseEnums](#longenumwith0doesnotmatchfalseenums)
Long enum | | enum | [EnumWith0DoesNotMatchFalse.FloatEnumWith0DoesNotMatchFalseEnums](#floatenumwith0doesnotmatchfalseenums)
Float enum | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md index 5cae0b2c550..c5bbd69334c 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1Boxed](#enumwith1doesnotmatchtrue1boxed)
sealed interface for validated payloads | -| record | [EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1BoxedNumber](#enumwith1doesnotmatchtrue1boxednumber)
boxed class to store validated Number payloads | -| static class | [EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1](#enumwith1doesnotmatchtrue1)
schema class | +| data class | [EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1BoxedNumber](#enumwith1doesnotmatchtrue1boxednumber)
boxed class to store validated Number payloads | +| class | [EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1](#enumwith1doesnotmatchtrue1)
schema class | | enum | [EnumWith1DoesNotMatchTrue.IntegerEnumWith1DoesNotMatchTrueEnums](#integerenumwith1doesnotmatchtrueenums)
Integer enum | | enum | [EnumWith1DoesNotMatchTrue.LongEnumWith1DoesNotMatchTrueEnums](#longenumwith1doesnotmatchtrueenums)
Long enum | | enum | [EnumWith1DoesNotMatchTrue.FloatEnumWith1DoesNotMatchTrueEnums](#floatenumwith1doesnotmatchtrueenums)
Float enum | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md index 550856ef545..196c2f74b8b 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumWithEscapedCharacters.EnumWithEscapedCharacters1Boxed](#enumwithescapedcharacters1boxed)
sealed interface for validated payloads | -| record | [EnumWithEscapedCharacters.EnumWithEscapedCharacters1BoxedString](#enumwithescapedcharacters1boxedstring)
boxed class to store validated String payloads | -| static class | [EnumWithEscapedCharacters.EnumWithEscapedCharacters1](#enumwithescapedcharacters1)
schema class | +| data class | [EnumWithEscapedCharacters.EnumWithEscapedCharacters1BoxedString](#enumwithescapedcharacters1boxedstring)
boxed class to store validated String payloads | +| class | [EnumWithEscapedCharacters.EnumWithEscapedCharacters1](#enumwithescapedcharacters1)
schema class | | enum | [EnumWithEscapedCharacters.StringEnumWithEscapedCharactersEnums](#stringenumwithescapedcharactersenums)
String enum | ## EnumWithEscapedCharacters1Boxed diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md index dd710d242bb..797b5249d00 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01Boxed](#enumwithfalsedoesnotmatch01boxed)
sealed interface for validated payloads | -| record | [EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01BoxedBoolean](#enumwithfalsedoesnotmatch01boxedboolean)
boxed class to store validated boolean payloads | -| static class | [EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01](#enumwithfalsedoesnotmatch01)
schema class | +| data class | [EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01BoxedBoolean](#enumwithfalsedoesnotmatch01boxedboolean)
boxed class to store validated boolean payloads | +| class | [EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01](#enumwithfalsedoesnotmatch01)
schema class | | enum | [EnumWithFalseDoesNotMatch0.BooleanEnumWithFalseDoesNotMatch0Enums](#booleanenumwithfalsedoesnotmatch0enums)
boolean enum | ## EnumWithFalseDoesNotMatch01Boxed @@ -27,7 +27,7 @@ sealed interface that stores validated payloads using boxed classes data class EnumWithFalseDoesNotMatch01BoxedBoolean
implements [EnumWithFalseDoesNotMatch01Boxed](#enumwithfalsedoesnotmatch01boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md index b6b635b9f0b..db2c2c8d463 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11Boxed](#enumwithtruedoesnotmatch11boxed)
sealed interface for validated payloads | -| record | [EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11BoxedBoolean](#enumwithtruedoesnotmatch11boxedboolean)
boxed class to store validated boolean payloads | -| static class | [EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11](#enumwithtruedoesnotmatch11)
schema class | +| data class | [EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11BoxedBoolean](#enumwithtruedoesnotmatch11boxedboolean)
boxed class to store validated boolean payloads | +| class | [EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11](#enumwithtruedoesnotmatch11)
schema class | | enum | [EnumWithTrueDoesNotMatch1.BooleanEnumWithTrueDoesNotMatch1Enums](#booleanenumwithtruedoesnotmatch1enums)
boolean enum | ## EnumWithTrueDoesNotMatch11Boxed @@ -27,7 +27,7 @@ sealed interface that stores validated payloads using boxed classes data class EnumWithTrueDoesNotMatch11BoxedBoolean
implements [EnumWithTrueDoesNotMatch11Boxed](#enumwithtruedoesnotmatch11boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md index 95883b8654d..ee7139fb479 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md @@ -14,17 +14,17 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumsInProperties.EnumsInProperties1Boxed](#enumsinproperties1boxed)
sealed interface for validated payloads | -| record | [EnumsInProperties.EnumsInProperties1BoxedMap](#enumsinproperties1boxedmap)
boxed class to store validated Map payloads | -| static class | [EnumsInProperties.EnumsInProperties1](#enumsinproperties1)
schema class | -| static class | [EnumsInProperties.EnumsInPropertiesMapBuilder](#enumsinpropertiesmapbuilder)
builder for Map payloads | -| static class | [EnumsInProperties.EnumsInPropertiesMap](#enumsinpropertiesmap)
output class for Map payloads | +| data class | [EnumsInProperties.EnumsInProperties1BoxedMap](#enumsinproperties1boxedmap)
boxed class to store validated Map payloads | +| class | [EnumsInProperties.EnumsInProperties1](#enumsinproperties1)
schema class | +| class | [EnumsInProperties.EnumsInPropertiesMapBuilder](#enumsinpropertiesmapbuilder)
builder for Map payloads | +| class | [EnumsInProperties.EnumsInPropertiesMap](#enumsinpropertiesmap)
output class for Map payloads | | sealed interface | [EnumsInProperties.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [EnumsInProperties.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| static class | [EnumsInProperties.Bar](#bar)
schema class | +| data class | [EnumsInProperties.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| class | [EnumsInProperties.Bar](#bar)
schema class | | enum | [EnumsInProperties.StringBarEnums](#stringbarenums)
String enum | | sealed interface | [EnumsInProperties.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [EnumsInProperties.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [EnumsInProperties.Foo](#foo)
schema class | +| data class | [EnumsInProperties.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [EnumsInProperties.Foo](#foo)
schema class | | enum | [EnumsInProperties.StringFooEnums](#stringfooenums)
String enum | ## EnumsInProperties1Boxed diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md index 48fcb3c6c33..2938aa8693f 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md @@ -13,23 +13,23 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ForbiddenProperty.ForbiddenProperty1Boxed](#forbiddenproperty1boxed)
sealed interface for validated payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedVoid](#forbiddenproperty1boxedvoid)
boxed class to store validated null payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedBoolean](#forbiddenproperty1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedNumber](#forbiddenproperty1boxednumber)
boxed class to store validated Number payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedString](#forbiddenproperty1boxedstring)
boxed class to store validated String payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedList](#forbiddenproperty1boxedlist)
boxed class to store validated List payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedMap](#forbiddenproperty1boxedmap)
boxed class to store validated Map payloads | -| static class | [ForbiddenProperty.ForbiddenProperty1](#forbiddenproperty1)
schema class | -| static class | [ForbiddenProperty.ForbiddenPropertyMapBuilder](#forbiddenpropertymapbuilder)
builder for Map payloads | -| static class | [ForbiddenProperty.ForbiddenPropertyMap](#forbiddenpropertymap)
output class for Map payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedVoid](#forbiddenproperty1boxedvoid)
boxed class to store validated null payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedBoolean](#forbiddenproperty1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedNumber](#forbiddenproperty1boxednumber)
boxed class to store validated Number payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedString](#forbiddenproperty1boxedstring)
boxed class to store validated String payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedList](#forbiddenproperty1boxedlist)
boxed class to store validated List payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedMap](#forbiddenproperty1boxedmap)
boxed class to store validated Map payloads | +| class | [ForbiddenProperty.ForbiddenProperty1](#forbiddenproperty1)
schema class | +| class | [ForbiddenProperty.ForbiddenPropertyMapBuilder](#forbiddenpropertymapbuilder)
builder for Map payloads | +| class | [ForbiddenProperty.ForbiddenPropertyMap](#forbiddenpropertymap)
output class for Map payloads | | sealed interface | [ForbiddenProperty.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [ForbiddenProperty.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [ForbiddenProperty.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [ForbiddenProperty.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [ForbiddenProperty.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [ForbiddenProperty.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [ForbiddenProperty.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [ForbiddenProperty.Foo](#foo)
schema class | +| data class | [ForbiddenProperty.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [ForbiddenProperty.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [ForbiddenProperty.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [ForbiddenProperty.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [ForbiddenProperty.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [ForbiddenProperty.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [ForbiddenProperty.Foo](#foo)
schema class | ## ForbiddenProperty1Boxed sealed interface ForbiddenProperty1Boxed
@@ -64,7 +64,7 @@ data class that stores validated null payloads, sealed permits implementation data class ForbiddenProperty1BoxedBoolean
implements [ForbiddenProperty1Boxed](#forbiddenproperty1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -258,7 +258,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/HostnameFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/HostnameFormat.md index 15f1fa66b05..d994a4bf149 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/HostnameFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/HostnameFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [HostnameFormat.HostnameFormat1Boxed](#hostnameformat1boxed)
sealed interface for validated payloads | -| record | [HostnameFormat.HostnameFormat1BoxedVoid](#hostnameformat1boxedvoid)
boxed class to store validated null payloads | -| record | [HostnameFormat.HostnameFormat1BoxedBoolean](#hostnameformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [HostnameFormat.HostnameFormat1BoxedNumber](#hostnameformat1boxednumber)
boxed class to store validated Number payloads | -| record | [HostnameFormat.HostnameFormat1BoxedString](#hostnameformat1boxedstring)
boxed class to store validated String payloads | -| record | [HostnameFormat.HostnameFormat1BoxedList](#hostnameformat1boxedlist)
boxed class to store validated List payloads | -| record | [HostnameFormat.HostnameFormat1BoxedMap](#hostnameformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [HostnameFormat.HostnameFormat1](#hostnameformat1)
schema class | +| data class | [HostnameFormat.HostnameFormat1BoxedVoid](#hostnameformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [HostnameFormat.HostnameFormat1BoxedBoolean](#hostnameformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [HostnameFormat.HostnameFormat1BoxedNumber](#hostnameformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [HostnameFormat.HostnameFormat1BoxedString](#hostnameformat1boxedstring)
boxed class to store validated String payloads | +| data class | [HostnameFormat.HostnameFormat1BoxedList](#hostnameformat1boxedlist)
boxed class to store validated List payloads | +| data class | [HostnameFormat.HostnameFormat1BoxedMap](#hostnameformat1boxedmap)
boxed class to store validated Map payloads | +| class | [HostnameFormat.HostnameFormat1](#hostnameformat1)
schema class | ## HostnameFormat1Boxed sealed interface HostnameFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class HostnameFormat1BoxedBoolean
implements [HostnameFormat1Boxed](#hostnameformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/IntegerTypeMatchesIntegers.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/IntegerTypeMatchesIntegers.md index 39131a09a05..34c8485ddc7 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/IntegerTypeMatchesIntegers.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/IntegerTypeMatchesIntegers.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IntegerTypeMatchesIntegers.IntegerTypeMatchesIntegers1Boxed](#integertypematchesintegers1boxed)
sealed interface for validated payloads | -| record | [IntegerTypeMatchesIntegers.IntegerTypeMatchesIntegers1BoxedNumber](#integertypematchesintegers1boxednumber)
boxed class to store validated Number payloads | -| static class | [IntegerTypeMatchesIntegers.IntegerTypeMatchesIntegers1](#integertypematchesintegers1)
schema class | +| data class | [IntegerTypeMatchesIntegers.IntegerTypeMatchesIntegers1BoxedNumber](#integertypematchesintegers1boxednumber)
boxed class to store validated Number payloads | +| class | [IntegerTypeMatchesIntegers.IntegerTypeMatchesIntegers1](#integertypematchesintegers1)
schema class | ## IntegerTypeMatchesIntegers1Boxed sealed interface IntegerTypeMatchesIntegers1Boxed
diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md index a81729b8ce0..358f62d881c 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf1Boxed](#invalidinstanceshouldnotraiseerrorwhenfloatdivisioninf1boxed)
sealed interface for validated payloads | -| record | [InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf1BoxedNumber](#invalidinstanceshouldnotraiseerrorwhenfloatdivisioninf1boxednumber)
boxed class to store validated Number payloads | -| static class | [InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf1](#invalidinstanceshouldnotraiseerrorwhenfloatdivisioninf1)
schema class | +| data class | [InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf1BoxedNumber](#invalidinstanceshouldnotraiseerrorwhenfloatdivisioninf1boxednumber)
boxed class to store validated Number payloads | +| class | [InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf1](#invalidinstanceshouldnotraiseerrorwhenfloatdivisioninf1)
schema class | ## InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf1Boxed sealed interface InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf1Boxed
diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidStringValueForDefault.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidStringValueForDefault.md index 4eed4133624..98d0b28b748 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidStringValueForDefault.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/InvalidStringValueForDefault.md @@ -13,18 +13,18 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [InvalidStringValueForDefault.InvalidStringValueForDefault1Boxed](#invalidstringvaluefordefault1boxed)
sealed interface for validated payloads | -| record | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedVoid](#invalidstringvaluefordefault1boxedvoid)
boxed class to store validated null payloads | -| record | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedBoolean](#invalidstringvaluefordefault1boxedboolean)
boxed class to store validated boolean payloads | -| record | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedNumber](#invalidstringvaluefordefault1boxednumber)
boxed class to store validated Number payloads | -| record | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedString](#invalidstringvaluefordefault1boxedstring)
boxed class to store validated String payloads | -| record | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedList](#invalidstringvaluefordefault1boxedlist)
boxed class to store validated List payloads | -| record | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedMap](#invalidstringvaluefordefault1boxedmap)
boxed class to store validated Map payloads | -| static class | [InvalidStringValueForDefault.InvalidStringValueForDefault1](#invalidstringvaluefordefault1)
schema class | -| static class | [InvalidStringValueForDefault.InvalidStringValueForDefaultMapBuilder](#invalidstringvaluefordefaultmapbuilder)
builder for Map payloads | -| static class | [InvalidStringValueForDefault.InvalidStringValueForDefaultMap](#invalidstringvaluefordefaultmap)
output class for Map payloads | +| data class | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedVoid](#invalidstringvaluefordefault1boxedvoid)
boxed class to store validated null payloads | +| data class | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedBoolean](#invalidstringvaluefordefault1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedNumber](#invalidstringvaluefordefault1boxednumber)
boxed class to store validated Number payloads | +| data class | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedString](#invalidstringvaluefordefault1boxedstring)
boxed class to store validated String payloads | +| data class | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedList](#invalidstringvaluefordefault1boxedlist)
boxed class to store validated List payloads | +| data class | [InvalidStringValueForDefault.InvalidStringValueForDefault1BoxedMap](#invalidstringvaluefordefault1boxedmap)
boxed class to store validated Map payloads | +| class | [InvalidStringValueForDefault.InvalidStringValueForDefault1](#invalidstringvaluefordefault1)
schema class | +| class | [InvalidStringValueForDefault.InvalidStringValueForDefaultMapBuilder](#invalidstringvaluefordefaultmapbuilder)
builder for Map payloads | +| class | [InvalidStringValueForDefault.InvalidStringValueForDefaultMap](#invalidstringvaluefordefaultmap)
output class for Map payloads | | sealed interface | [InvalidStringValueForDefault.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [InvalidStringValueForDefault.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| static class | [InvalidStringValueForDefault.Bar](#bar)
schema class | +| data class | [InvalidStringValueForDefault.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| class | [InvalidStringValueForDefault.Bar](#bar)
schema class | ## InvalidStringValueForDefault1Boxed sealed interface InvalidStringValueForDefault1Boxed
@@ -59,7 +59,7 @@ data class that stores validated null payloads, sealed permits implementation data class InvalidStringValueForDefault1BoxedBoolean
implements [InvalidStringValueForDefault1Boxed](#invalidstringvaluefordefault1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv4Format.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv4Format.md index c783a2b1273..5ce5ef29e2d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv4Format.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv4Format.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Ipv4Format.Ipv4Format1Boxed](#ipv4format1boxed)
sealed interface for validated payloads | -| record | [Ipv4Format.Ipv4Format1BoxedVoid](#ipv4format1boxedvoid)
boxed class to store validated null payloads | -| record | [Ipv4Format.Ipv4Format1BoxedBoolean](#ipv4format1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Ipv4Format.Ipv4Format1BoxedNumber](#ipv4format1boxednumber)
boxed class to store validated Number payloads | -| record | [Ipv4Format.Ipv4Format1BoxedString](#ipv4format1boxedstring)
boxed class to store validated String payloads | -| record | [Ipv4Format.Ipv4Format1BoxedList](#ipv4format1boxedlist)
boxed class to store validated List payloads | -| record | [Ipv4Format.Ipv4Format1BoxedMap](#ipv4format1boxedmap)
boxed class to store validated Map payloads | -| static class | [Ipv4Format.Ipv4Format1](#ipv4format1)
schema class | +| data class | [Ipv4Format.Ipv4Format1BoxedVoid](#ipv4format1boxedvoid)
boxed class to store validated null payloads | +| data class | [Ipv4Format.Ipv4Format1BoxedBoolean](#ipv4format1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Ipv4Format.Ipv4Format1BoxedNumber](#ipv4format1boxednumber)
boxed class to store validated Number payloads | +| data class | [Ipv4Format.Ipv4Format1BoxedString](#ipv4format1boxedstring)
boxed class to store validated String payloads | +| data class | [Ipv4Format.Ipv4Format1BoxedList](#ipv4format1boxedlist)
boxed class to store validated List payloads | +| data class | [Ipv4Format.Ipv4Format1BoxedMap](#ipv4format1boxedmap)
boxed class to store validated Map payloads | +| class | [Ipv4Format.Ipv4Format1](#ipv4format1)
schema class | ## Ipv4Format1Boxed sealed interface Ipv4Format1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class Ipv4Format1BoxedBoolean
implements [Ipv4Format1Boxed](#ipv4format1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv6Format.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv6Format.md index 17cb88f4fc7..3a0e59be91b 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv6Format.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Ipv6Format.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Ipv6Format.Ipv6Format1Boxed](#ipv6format1boxed)
sealed interface for validated payloads | -| record | [Ipv6Format.Ipv6Format1BoxedVoid](#ipv6format1boxedvoid)
boxed class to store validated null payloads | -| record | [Ipv6Format.Ipv6Format1BoxedBoolean](#ipv6format1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Ipv6Format.Ipv6Format1BoxedNumber](#ipv6format1boxednumber)
boxed class to store validated Number payloads | -| record | [Ipv6Format.Ipv6Format1BoxedString](#ipv6format1boxedstring)
boxed class to store validated String payloads | -| record | [Ipv6Format.Ipv6Format1BoxedList](#ipv6format1boxedlist)
boxed class to store validated List payloads | -| record | [Ipv6Format.Ipv6Format1BoxedMap](#ipv6format1boxedmap)
boxed class to store validated Map payloads | -| static class | [Ipv6Format.Ipv6Format1](#ipv6format1)
schema class | +| data class | [Ipv6Format.Ipv6Format1BoxedVoid](#ipv6format1boxedvoid)
boxed class to store validated null payloads | +| data class | [Ipv6Format.Ipv6Format1BoxedBoolean](#ipv6format1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Ipv6Format.Ipv6Format1BoxedNumber](#ipv6format1boxednumber)
boxed class to store validated Number payloads | +| data class | [Ipv6Format.Ipv6Format1BoxedString](#ipv6format1boxedstring)
boxed class to store validated String payloads | +| data class | [Ipv6Format.Ipv6Format1BoxedList](#ipv6format1boxedlist)
boxed class to store validated List payloads | +| data class | [Ipv6Format.Ipv6Format1BoxedMap](#ipv6format1boxedmap)
boxed class to store validated Map payloads | +| class | [Ipv6Format.Ipv6Format1](#ipv6format1)
schema class | ## Ipv6Format1Boxed sealed interface Ipv6Format1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class Ipv6Format1BoxedBoolean
implements [Ipv6Format1Boxed](#ipv6format1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md index 586c19a0f14..7efb406a38d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [JsonPointerFormat.JsonPointerFormat1Boxed](#jsonpointerformat1boxed)
sealed interface for validated payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedVoid](#jsonpointerformat1boxedvoid)
boxed class to store validated null payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedBoolean](#jsonpointerformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedNumber](#jsonpointerformat1boxednumber)
boxed class to store validated Number payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedString](#jsonpointerformat1boxedstring)
boxed class to store validated String payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedList](#jsonpointerformat1boxedlist)
boxed class to store validated List payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedMap](#jsonpointerformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [JsonPointerFormat.JsonPointerFormat1](#jsonpointerformat1)
schema class | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedVoid](#jsonpointerformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedBoolean](#jsonpointerformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedNumber](#jsonpointerformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedString](#jsonpointerformat1boxedstring)
boxed class to store validated String payloads | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedList](#jsonpointerformat1boxedlist)
boxed class to store validated List payloads | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedMap](#jsonpointerformat1boxedmap)
boxed class to store validated Map payloads | +| class | [JsonPointerFormat.JsonPointerFormat1](#jsonpointerformat1)
schema class | ## JsonPointerFormat1Boxed sealed interface JsonPointerFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class JsonPointerFormat1BoxedBoolean
implements [JsonPointerFormat1Boxed](#jsonpointerformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidation.md index 690d7c14985..6702dd250eb 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MaximumValidation.MaximumValidation1Boxed](#maximumvalidation1boxed)
sealed interface for validated payloads | -| record | [MaximumValidation.MaximumValidation1BoxedVoid](#maximumvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MaximumValidation.MaximumValidation1BoxedBoolean](#maximumvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MaximumValidation.MaximumValidation1BoxedNumber](#maximumvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MaximumValidation.MaximumValidation1BoxedString](#maximumvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MaximumValidation.MaximumValidation1BoxedList](#maximumvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MaximumValidation.MaximumValidation1BoxedMap](#maximumvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MaximumValidation.MaximumValidation1](#maximumvalidation1)
schema class | +| data class | [MaximumValidation.MaximumValidation1BoxedVoid](#maximumvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MaximumValidation.MaximumValidation1BoxedBoolean](#maximumvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MaximumValidation.MaximumValidation1BoxedNumber](#maximumvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MaximumValidation.MaximumValidation1BoxedString](#maximumvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MaximumValidation.MaximumValidation1BoxedList](#maximumvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MaximumValidation.MaximumValidation1BoxedMap](#maximumvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MaximumValidation.MaximumValidation1](#maximumvalidation1)
schema class | ## MaximumValidation1Boxed sealed interface MaximumValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MaximumValidation1BoxedBoolean
implements [MaximumValidation1Boxed](#maximumvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md index 4cfa5c3d815..710091b79c3 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1Boxed](#maximumvalidationwithunsignedinteger1boxed)
sealed interface for validated payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedVoid](#maximumvalidationwithunsignedinteger1boxedvoid)
boxed class to store validated null payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedBoolean](#maximumvalidationwithunsignedinteger1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedNumber](#maximumvalidationwithunsignedinteger1boxednumber)
boxed class to store validated Number payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedString](#maximumvalidationwithunsignedinteger1boxedstring)
boxed class to store validated String payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedList](#maximumvalidationwithunsignedinteger1boxedlist)
boxed class to store validated List payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedMap](#maximumvalidationwithunsignedinteger1boxedmap)
boxed class to store validated Map payloads | -| static class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1](#maximumvalidationwithunsignedinteger1)
schema class | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedVoid](#maximumvalidationwithunsignedinteger1boxedvoid)
boxed class to store validated null payloads | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedBoolean](#maximumvalidationwithunsignedinteger1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedNumber](#maximumvalidationwithunsignedinteger1boxednumber)
boxed class to store validated Number payloads | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedString](#maximumvalidationwithunsignedinteger1boxedstring)
boxed class to store validated String payloads | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedList](#maximumvalidationwithunsignedinteger1boxedlist)
boxed class to store validated List payloads | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedMap](#maximumvalidationwithunsignedinteger1boxedmap)
boxed class to store validated Map payloads | +| class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1](#maximumvalidationwithunsignedinteger1)
schema class | ## MaximumValidationWithUnsignedInteger1Boxed sealed interface MaximumValidationWithUnsignedInteger1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MaximumValidationWithUnsignedInteger1BoxedBoolean
implements [MaximumValidationWithUnsignedInteger1Boxed](#maximumvalidationwithunsignedinteger1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md index e16781663ce..f15f8ae35c0 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MaxitemsValidation.MaxitemsValidation1Boxed](#maxitemsvalidation1boxed)
sealed interface for validated payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedVoid](#maxitemsvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedBoolean](#maxitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedNumber](#maxitemsvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedString](#maxitemsvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedList](#maxitemsvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedMap](#maxitemsvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MaxitemsValidation.MaxitemsValidation1](#maxitemsvalidation1)
schema class | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedVoid](#maxitemsvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedBoolean](#maxitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedNumber](#maxitemsvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedString](#maxitemsvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedList](#maxitemsvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedMap](#maxitemsvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MaxitemsValidation.MaxitemsValidation1](#maxitemsvalidation1)
schema class | ## MaxitemsValidation1Boxed sealed interface MaxitemsValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MaxitemsValidation1BoxedBoolean
implements [MaxitemsValidation1Boxed](#maxitemsvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md index 0232b8b9973..12cab7b46ff 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MaxlengthValidation.MaxlengthValidation1Boxed](#maxlengthvalidation1boxed)
sealed interface for validated payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedVoid](#maxlengthvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedBoolean](#maxlengthvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedNumber](#maxlengthvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedString](#maxlengthvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedList](#maxlengthvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedMap](#maxlengthvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MaxlengthValidation.MaxlengthValidation1](#maxlengthvalidation1)
schema class | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedVoid](#maxlengthvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedBoolean](#maxlengthvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedNumber](#maxlengthvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedString](#maxlengthvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedList](#maxlengthvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedMap](#maxlengthvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MaxlengthValidation.MaxlengthValidation1](#maxlengthvalidation1)
schema class | ## MaxlengthValidation1Boxed sealed interface MaxlengthValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MaxlengthValidation1BoxedBoolean
implements [MaxlengthValidation1Boxed](#maxlengthvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md index b3137f64e3a..2ec82dd101e 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1Boxed](#maxproperties0meanstheobjectisempty1boxed)
sealed interface for validated payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedVoid](#maxproperties0meanstheobjectisempty1boxedvoid)
boxed class to store validated null payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedBoolean](#maxproperties0meanstheobjectisempty1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedNumber](#maxproperties0meanstheobjectisempty1boxednumber)
boxed class to store validated Number payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedString](#maxproperties0meanstheobjectisempty1boxedstring)
boxed class to store validated String payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedList](#maxproperties0meanstheobjectisempty1boxedlist)
boxed class to store validated List payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedMap](#maxproperties0meanstheobjectisempty1boxedmap)
boxed class to store validated Map payloads | -| static class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1](#maxproperties0meanstheobjectisempty1)
schema class | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedVoid](#maxproperties0meanstheobjectisempty1boxedvoid)
boxed class to store validated null payloads | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedBoolean](#maxproperties0meanstheobjectisempty1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedNumber](#maxproperties0meanstheobjectisempty1boxednumber)
boxed class to store validated Number payloads | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedString](#maxproperties0meanstheobjectisempty1boxedstring)
boxed class to store validated String payloads | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedList](#maxproperties0meanstheobjectisempty1boxedlist)
boxed class to store validated List payloads | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedMap](#maxproperties0meanstheobjectisempty1boxedmap)
boxed class to store validated Map payloads | +| class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1](#maxproperties0meanstheobjectisempty1)
schema class | ## Maxproperties0MeansTheObjectIsEmpty1Boxed sealed interface Maxproperties0MeansTheObjectIsEmpty1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class Maxproperties0MeansTheObjectIsEmpty1BoxedBoolean
implements [Maxproperties0MeansTheObjectIsEmpty1Boxed](#maxproperties0meanstheobjectisempty1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md index 6d983c0d5df..fc4d9d5b839 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MaxpropertiesValidation.MaxpropertiesValidation1Boxed](#maxpropertiesvalidation1boxed)
sealed interface for validated payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedVoid](#maxpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedBoolean](#maxpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedNumber](#maxpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedString](#maxpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedList](#maxpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedMap](#maxpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MaxpropertiesValidation.MaxpropertiesValidation1](#maxpropertiesvalidation1)
schema class | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedVoid](#maxpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedBoolean](#maxpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedNumber](#maxpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedString](#maxpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedList](#maxpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedMap](#maxpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MaxpropertiesValidation.MaxpropertiesValidation1](#maxpropertiesvalidation1)
schema class | ## MaxpropertiesValidation1Boxed sealed interface MaxpropertiesValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MaxpropertiesValidation1BoxedBoolean
implements [MaxpropertiesValidation1Boxed](#maxpropertiesvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidation.md index 250a3d0e5f2..8c8ea8d059a 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MinimumValidation.MinimumValidation1Boxed](#minimumvalidation1boxed)
sealed interface for validated payloads | -| record | [MinimumValidation.MinimumValidation1BoxedVoid](#minimumvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MinimumValidation.MinimumValidation1BoxedBoolean](#minimumvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MinimumValidation.MinimumValidation1BoxedNumber](#minimumvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MinimumValidation.MinimumValidation1BoxedString](#minimumvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MinimumValidation.MinimumValidation1BoxedList](#minimumvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MinimumValidation.MinimumValidation1BoxedMap](#minimumvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MinimumValidation.MinimumValidation1](#minimumvalidation1)
schema class | +| data class | [MinimumValidation.MinimumValidation1BoxedVoid](#minimumvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MinimumValidation.MinimumValidation1BoxedBoolean](#minimumvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MinimumValidation.MinimumValidation1BoxedNumber](#minimumvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MinimumValidation.MinimumValidation1BoxedString](#minimumvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MinimumValidation.MinimumValidation1BoxedList](#minimumvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MinimumValidation.MinimumValidation1BoxedMap](#minimumvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MinimumValidation.MinimumValidation1](#minimumvalidation1)
schema class | ## MinimumValidation1Boxed sealed interface MinimumValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MinimumValidation1BoxedBoolean
implements [MinimumValidation1Boxed](#minimumvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md index c53ef5a6e3c..7d5bc982bd9 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1Boxed](#minimumvalidationwithsignedinteger1boxed)
sealed interface for validated payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedVoid](#minimumvalidationwithsignedinteger1boxedvoid)
boxed class to store validated null payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedBoolean](#minimumvalidationwithsignedinteger1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedNumber](#minimumvalidationwithsignedinteger1boxednumber)
boxed class to store validated Number payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedString](#minimumvalidationwithsignedinteger1boxedstring)
boxed class to store validated String payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedList](#minimumvalidationwithsignedinteger1boxedlist)
boxed class to store validated List payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedMap](#minimumvalidationwithsignedinteger1boxedmap)
boxed class to store validated Map payloads | -| static class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1](#minimumvalidationwithsignedinteger1)
schema class | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedVoid](#minimumvalidationwithsignedinteger1boxedvoid)
boxed class to store validated null payloads | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedBoolean](#minimumvalidationwithsignedinteger1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedNumber](#minimumvalidationwithsignedinteger1boxednumber)
boxed class to store validated Number payloads | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedString](#minimumvalidationwithsignedinteger1boxedstring)
boxed class to store validated String payloads | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedList](#minimumvalidationwithsignedinteger1boxedlist)
boxed class to store validated List payloads | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedMap](#minimumvalidationwithsignedinteger1boxedmap)
boxed class to store validated Map payloads | +| class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1](#minimumvalidationwithsignedinteger1)
schema class | ## MinimumValidationWithSignedInteger1Boxed sealed interface MinimumValidationWithSignedInteger1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MinimumValidationWithSignedInteger1BoxedBoolean
implements [MinimumValidationWithSignedInteger1Boxed](#minimumvalidationwithsignedinteger1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md index 1a60b834c4d..9eb55dd0ef4 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MinitemsValidation.MinitemsValidation1Boxed](#minitemsvalidation1boxed)
sealed interface for validated payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedVoid](#minitemsvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedBoolean](#minitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedNumber](#minitemsvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedString](#minitemsvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedList](#minitemsvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedMap](#minitemsvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MinitemsValidation.MinitemsValidation1](#minitemsvalidation1)
schema class | +| data class | [MinitemsValidation.MinitemsValidation1BoxedVoid](#minitemsvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MinitemsValidation.MinitemsValidation1BoxedBoolean](#minitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MinitemsValidation.MinitemsValidation1BoxedNumber](#minitemsvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MinitemsValidation.MinitemsValidation1BoxedString](#minitemsvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MinitemsValidation.MinitemsValidation1BoxedList](#minitemsvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MinitemsValidation.MinitemsValidation1BoxedMap](#minitemsvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MinitemsValidation.MinitemsValidation1](#minitemsvalidation1)
schema class | ## MinitemsValidation1Boxed sealed interface MinitemsValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MinitemsValidation1BoxedBoolean
implements [MinitemsValidation1Boxed](#minitemsvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md index 0d297ac6a05..f8cbb96bdeb 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MinlengthValidation.MinlengthValidation1Boxed](#minlengthvalidation1boxed)
sealed interface for validated payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedVoid](#minlengthvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedBoolean](#minlengthvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedNumber](#minlengthvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedString](#minlengthvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedList](#minlengthvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedMap](#minlengthvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MinlengthValidation.MinlengthValidation1](#minlengthvalidation1)
schema class | +| data class | [MinlengthValidation.MinlengthValidation1BoxedVoid](#minlengthvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MinlengthValidation.MinlengthValidation1BoxedBoolean](#minlengthvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MinlengthValidation.MinlengthValidation1BoxedNumber](#minlengthvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MinlengthValidation.MinlengthValidation1BoxedString](#minlengthvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MinlengthValidation.MinlengthValidation1BoxedList](#minlengthvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MinlengthValidation.MinlengthValidation1BoxedMap](#minlengthvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MinlengthValidation.MinlengthValidation1](#minlengthvalidation1)
schema class | ## MinlengthValidation1Boxed sealed interface MinlengthValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MinlengthValidation1BoxedBoolean
implements [MinlengthValidation1Boxed](#minlengthvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md index 123f8710fb8..0fd7be4b531 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MinpropertiesValidation.MinpropertiesValidation1Boxed](#minpropertiesvalidation1boxed)
sealed interface for validated payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedVoid](#minpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedBoolean](#minpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedNumber](#minpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedString](#minpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedList](#minpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedMap](#minpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MinpropertiesValidation.MinpropertiesValidation1](#minpropertiesvalidation1)
schema class | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedVoid](#minpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedBoolean](#minpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedNumber](#minpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedString](#minpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedList](#minpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedMap](#minpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MinpropertiesValidation.MinpropertiesValidation1](#minpropertiesvalidation1)
schema class | ## MinpropertiesValidation1Boxed sealed interface MinpropertiesValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MinpropertiesValidation1BoxedBoolean
implements [MinpropertiesValidation1Boxed](#minpropertiesvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md index e03aee22372..986e8de42df 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1Boxed](#nestedalloftocheckvalidationsemantics1boxed)
sealed interface for validated payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedVoid](#nestedalloftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedBoolean](#nestedalloftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedNumber](#nestedalloftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedString](#nestedalloftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedList](#nestedalloftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedMap](#nestedalloftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1](#nestedalloftocheckvalidationsemantics1)
schema class | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedVoid](#nestedalloftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedBoolean](#nestedalloftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedNumber](#nestedalloftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedString](#nestedalloftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedList](#nestedalloftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedMap](#nestedalloftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | +| class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1](#nestedalloftocheckvalidationsemantics1)
schema class | | sealed interface | [NestedAllofToCheckValidationSemantics.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedAllofToCheckValidationSemantics.Schema0](#schema0)
schema class | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [NestedAllofToCheckValidationSemantics.Schema0](#schema0)
schema class | | sealed interface | [NestedAllofToCheckValidationSemantics.Schema01Boxed](#schema01boxed)
sealed interface for validated payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | -| static class | [NestedAllofToCheckValidationSemantics.Schema01](#schema01)
schema class | +| data class | [NestedAllofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | +| class | [NestedAllofToCheckValidationSemantics.Schema01](#schema01)
schema class | ## NestedAllofToCheckValidationSemantics1Boxed sealed interface NestedAllofToCheckValidationSemantics1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class NestedAllofToCheckValidationSemantics1BoxedBoolean
implements [NestedAllofToCheckValidationSemantics1Boxed](#nestedalloftocheckvalidationsemantics1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md index 69052621055..14effe843c6 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1Boxed](#nestedanyoftocheckvalidationsemantics1boxed)
sealed interface for validated payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedVoid](#nestedanyoftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedBoolean](#nestedanyoftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedNumber](#nestedanyoftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedString](#nestedanyoftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedList](#nestedanyoftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedMap](#nestedanyoftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1](#nestedanyoftocheckvalidationsemantics1)
schema class | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedVoid](#nestedanyoftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedBoolean](#nestedanyoftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedNumber](#nestedanyoftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedString](#nestedanyoftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedList](#nestedanyoftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedMap](#nestedanyoftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | +| class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1](#nestedanyoftocheckvalidationsemantics1)
schema class | | sealed interface | [NestedAnyofToCheckValidationSemantics.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedAnyofToCheckValidationSemantics.Schema0](#schema0)
schema class | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [NestedAnyofToCheckValidationSemantics.Schema0](#schema0)
schema class | | sealed interface | [NestedAnyofToCheckValidationSemantics.Schema01Boxed](#schema01boxed)
sealed interface for validated payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | -| static class | [NestedAnyofToCheckValidationSemantics.Schema01](#schema01)
schema class | +| data class | [NestedAnyofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | +| class | [NestedAnyofToCheckValidationSemantics.Schema01](#schema01)
schema class | ## NestedAnyofToCheckValidationSemantics1Boxed sealed interface NestedAnyofToCheckValidationSemantics1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class NestedAnyofToCheckValidationSemantics1BoxedBoolean
implements [NestedAnyofToCheckValidationSemantics1Boxed](#nestedanyoftocheckvalidationsemantics1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedItems.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedItems.md index 35847c30b79..476142cfdec 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedItems.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedItems.md @@ -13,28 +13,28 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NestedItems.NestedItems1Boxed](#nesteditems1boxed)
sealed interface for validated payloads | -| record | [NestedItems.NestedItems1BoxedList](#nesteditems1boxedlist)
boxed class to store validated List payloads | -| static class | [NestedItems.NestedItems1](#nesteditems1)
schema class | -| static class | [NestedItems.NestedItemsListBuilder](#nesteditemslistbuilder)
builder for List payloads | -| static class | [NestedItems.NestedItemsList](#nesteditemslist)
output class for List payloads | +| data class | [NestedItems.NestedItems1BoxedList](#nesteditems1boxedlist)
boxed class to store validated List payloads | +| class | [NestedItems.NestedItems1](#nesteditems1)
schema class | +| class | [NestedItems.NestedItemsListBuilder](#nesteditemslistbuilder)
builder for List payloads | +| class | [NestedItems.NestedItemsList](#nesteditemslist)
output class for List payloads | | sealed interface | [NestedItems.ItemsBoxed](#itemsboxed)
sealed interface for validated payloads | -| record | [NestedItems.ItemsBoxedList](#itemsboxedlist)
boxed class to store validated List payloads | -| static class | [NestedItems.Items](#items)
schema class | -| static class | [NestedItems.ItemsListBuilder2](#itemslistbuilder2)
builder for List payloads | -| static class | [NestedItems.ItemsList2](#itemslist2)
output class for List payloads | +| data class | [NestedItems.ItemsBoxedList](#itemsboxedlist)
boxed class to store validated List payloads | +| class | [NestedItems.Items](#items)
schema class | +| class | [NestedItems.ItemsListBuilder2](#itemslistbuilder2)
builder for List payloads | +| class | [NestedItems.ItemsList2](#itemslist2)
output class for List payloads | | sealed interface | [NestedItems.Items1Boxed](#items1boxed)
sealed interface for validated payloads | -| record | [NestedItems.Items1BoxedList](#items1boxedlist)
boxed class to store validated List payloads | -| static class | [NestedItems.Items1](#items1)
schema class | -| static class | [NestedItems.ItemsListBuilder1](#itemslistbuilder1)
builder for List payloads | -| static class | [NestedItems.ItemsList1](#itemslist1)
output class for List payloads | +| data class | [NestedItems.Items1BoxedList](#items1boxedlist)
boxed class to store validated List payloads | +| class | [NestedItems.Items1](#items1)
schema class | +| class | [NestedItems.ItemsListBuilder1](#itemslistbuilder1)
builder for List payloads | +| class | [NestedItems.ItemsList1](#itemslist1)
output class for List payloads | | sealed interface | [NestedItems.Items2Boxed](#items2boxed)
sealed interface for validated payloads | -| record | [NestedItems.Items2BoxedList](#items2boxedlist)
boxed class to store validated List payloads | -| static class | [NestedItems.Items2](#items2)
schema class | -| static class | [NestedItems.ItemsListBuilder](#itemslistbuilder)
builder for List payloads | -| static class | [NestedItems.ItemsList](#itemslist)
output class for List payloads | +| data class | [NestedItems.Items2BoxedList](#items2boxedlist)
boxed class to store validated List payloads | +| class | [NestedItems.Items2](#items2)
schema class | +| class | [NestedItems.ItemsListBuilder](#itemslistbuilder)
builder for List payloads | +| class | [NestedItems.ItemsList](#itemslist)
output class for List payloads | | sealed interface | [NestedItems.Items3Boxed](#items3boxed)
sealed interface for validated payloads | -| record | [NestedItems.Items3BoxedNumber](#items3boxednumber)
boxed class to store validated Number payloads | -| static class | [NestedItems.Items3](#items3)
schema class | +| data class | [NestedItems.Items3BoxedNumber](#items3boxednumber)
boxed class to store validated Number payloads | +| class | [NestedItems.Items3](#items3)
schema class | ## NestedItems1Boxed sealed interface NestedItems1Boxed
diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md index 56984b6ed8d..d55ebaa7fcf 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1Boxed](#nestedoneoftocheckvalidationsemantics1boxed)
sealed interface for validated payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedVoid](#nestedoneoftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedBoolean](#nestedoneoftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedNumber](#nestedoneoftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedString](#nestedoneoftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedList](#nestedoneoftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedMap](#nestedoneoftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1](#nestedoneoftocheckvalidationsemantics1)
schema class | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedVoid](#nestedoneoftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedBoolean](#nestedoneoftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedNumber](#nestedoneoftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedString](#nestedoneoftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedList](#nestedoneoftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedMap](#nestedoneoftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | +| class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1](#nestedoneoftocheckvalidationsemantics1)
schema class | | sealed interface | [NestedOneofToCheckValidationSemantics.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedOneofToCheckValidationSemantics.Schema0](#schema0)
schema class | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [NestedOneofToCheckValidationSemantics.Schema0](#schema0)
schema class | | sealed interface | [NestedOneofToCheckValidationSemantics.Schema01Boxed](#schema01boxed)
sealed interface for validated payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | -| static class | [NestedOneofToCheckValidationSemantics.Schema01](#schema01)
schema class | +| data class | [NestedOneofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | +| class | [NestedOneofToCheckValidationSemantics.Schema01](#schema01)
schema class | ## NestedOneofToCheckValidationSemantics1Boxed sealed interface NestedOneofToCheckValidationSemantics1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class NestedOneofToCheckValidationSemantics1BoxedBoolean
implements [NestedOneofToCheckValidationSemantics1Boxed](#nestedoneoftocheckvalidationsemantics1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Not.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Not.md index 5c7f49889ba..fee314d30e3 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Not.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Not.md @@ -11,16 +11,16 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Not.Not1Boxed](#not1boxed)
sealed interface for validated payloads | -| record | [Not.Not1BoxedVoid](#not1boxedvoid)
boxed class to store validated null payloads | -| record | [Not.Not1BoxedBoolean](#not1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Not.Not1BoxedNumber](#not1boxednumber)
boxed class to store validated Number payloads | -| record | [Not.Not1BoxedString](#not1boxedstring)
boxed class to store validated String payloads | -| record | [Not.Not1BoxedList](#not1boxedlist)
boxed class to store validated List payloads | -| record | [Not.Not1BoxedMap](#not1boxedmap)
boxed class to store validated Map payloads | -| static class | [Not.Not1](#not1)
schema class | +| data class | [Not.Not1BoxedVoid](#not1boxedvoid)
boxed class to store validated null payloads | +| data class | [Not.Not1BoxedBoolean](#not1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Not.Not1BoxedNumber](#not1boxednumber)
boxed class to store validated Number payloads | +| data class | [Not.Not1BoxedString](#not1boxedstring)
boxed class to store validated String payloads | +| data class | [Not.Not1BoxedList](#not1boxedlist)
boxed class to store validated List payloads | +| data class | [Not.Not1BoxedMap](#not1boxedmap)
boxed class to store validated Map payloads | +| class | [Not.Not1](#not1)
schema class | | sealed interface | [Not.Not2Boxed](#not2boxed)
sealed interface for validated payloads | -| record | [Not.Not2BoxedNumber](#not2boxednumber)
boxed class to store validated Number payloads | -| static class | [Not.Not2](#not2)
schema class | +| data class | [Not.Not2BoxedNumber](#not2boxednumber)
boxed class to store validated Number payloads | +| class | [Not.Not2](#not2)
schema class | ## Not1Boxed sealed interface Not1Boxed
@@ -55,7 +55,7 @@ data class that stores validated null payloads, sealed permits implementation data class Not1BoxedBoolean
implements [Not1Boxed](#not1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md index f482909b92e..dc37cd29bfb 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md @@ -13,21 +13,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NotMoreComplexSchema.NotMoreComplexSchema1Boxed](#notmorecomplexschema1boxed)
sealed interface for validated payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedVoid](#notmorecomplexschema1boxedvoid)
boxed class to store validated null payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedBoolean](#notmorecomplexschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedNumber](#notmorecomplexschema1boxednumber)
boxed class to store validated Number payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedString](#notmorecomplexschema1boxedstring)
boxed class to store validated String payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedList](#notmorecomplexschema1boxedlist)
boxed class to store validated List payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedMap](#notmorecomplexschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [NotMoreComplexSchema.NotMoreComplexSchema1](#notmorecomplexschema1)
schema class | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedVoid](#notmorecomplexschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedBoolean](#notmorecomplexschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedNumber](#notmorecomplexschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedString](#notmorecomplexschema1boxedstring)
boxed class to store validated String payloads | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedList](#notmorecomplexschema1boxedlist)
boxed class to store validated List payloads | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedMap](#notmorecomplexschema1boxedmap)
boxed class to store validated Map payloads | +| class | [NotMoreComplexSchema.NotMoreComplexSchema1](#notmorecomplexschema1)
schema class | | sealed interface | [NotMoreComplexSchema.NotBoxed](#notboxed)
sealed interface for validated payloads | -| record | [NotMoreComplexSchema.NotBoxedMap](#notboxedmap)
boxed class to store validated Map payloads | -| static class | [NotMoreComplexSchema.Not](#not)
schema class | -| static class | [NotMoreComplexSchema.NotMapBuilder](#notmapbuilder)
builder for Map payloads | -| static class | [NotMoreComplexSchema.NotMap](#notmap)
output class for Map payloads | +| data class | [NotMoreComplexSchema.NotBoxedMap](#notboxedmap)
boxed class to store validated Map payloads | +| class | [NotMoreComplexSchema.Not](#not)
schema class | +| class | [NotMoreComplexSchema.NotMapBuilder](#notmapbuilder)
builder for Map payloads | +| class | [NotMoreComplexSchema.NotMap](#notmap)
output class for Map payloads | | sealed interface | [NotMoreComplexSchema.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [NotMoreComplexSchema.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [NotMoreComplexSchema.Foo](#foo)
schema class | +| data class | [NotMoreComplexSchema.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [NotMoreComplexSchema.Foo](#foo)
schema class | ## NotMoreComplexSchema1Boxed sealed interface NotMoreComplexSchema1Boxed
@@ -62,7 +62,7 @@ data class that stores validated null payloads, sealed permits implementation data class NotMoreComplexSchema1BoxedBoolean
implements [NotMoreComplexSchema1Boxed](#notmorecomplexschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md index bb6edb1453a..400cc7575ec 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NulCharactersInStrings.NulCharactersInStrings1Boxed](#nulcharactersinstrings1boxed)
sealed interface for validated payloads | -| record | [NulCharactersInStrings.NulCharactersInStrings1BoxedString](#nulcharactersinstrings1boxedstring)
boxed class to store validated String payloads | -| static class | [NulCharactersInStrings.NulCharactersInStrings1](#nulcharactersinstrings1)
schema class | +| data class | [NulCharactersInStrings.NulCharactersInStrings1BoxedString](#nulcharactersinstrings1boxedstring)
boxed class to store validated String payloads | +| class | [NulCharactersInStrings.NulCharactersInStrings1](#nulcharactersinstrings1)
schema class | | enum | [NulCharactersInStrings.StringNulCharactersInStringsEnums](#stringnulcharactersinstringsenums)
String enum | ## NulCharactersInStrings1Boxed diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NullTypeMatchesOnlyTheNullObject.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NullTypeMatchesOnlyTheNullObject.md index 0bcdf2e30e4..1f0effc0b3f 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NullTypeMatchesOnlyTheNullObject.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NullTypeMatchesOnlyTheNullObject.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NullTypeMatchesOnlyTheNullObject.NullTypeMatchesOnlyTheNullObject1Boxed](#nulltypematchesonlythenullobject1boxed)
sealed interface for validated payloads | -| record | [NullTypeMatchesOnlyTheNullObject.NullTypeMatchesOnlyTheNullObject1BoxedVoid](#nulltypematchesonlythenullobject1boxedvoid)
boxed class to store validated null payloads | -| static class | [NullTypeMatchesOnlyTheNullObject.NullTypeMatchesOnlyTheNullObject1](#nulltypematchesonlythenullobject1)
schema class | +| data class | [NullTypeMatchesOnlyTheNullObject.NullTypeMatchesOnlyTheNullObject1BoxedVoid](#nulltypematchesonlythenullobject1boxedvoid)
boxed class to store validated null payloads | +| class | [NullTypeMatchesOnlyTheNullObject.NullTypeMatchesOnlyTheNullObject1](#nulltypematchesonlythenullobject1)
schema class | ## NullTypeMatchesOnlyTheNullObject1Boxed sealed interface NullTypeMatchesOnlyTheNullObject1Boxed
diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NumberTypeMatchesNumbers.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NumberTypeMatchesNumbers.md index 02a48980434..dfe96e771e8 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NumberTypeMatchesNumbers.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/NumberTypeMatchesNumbers.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NumberTypeMatchesNumbers.NumberTypeMatchesNumbers1Boxed](#numbertypematchesnumbers1boxed)
sealed interface for validated payloads | -| record | [NumberTypeMatchesNumbers.NumberTypeMatchesNumbers1BoxedNumber](#numbertypematchesnumbers1boxednumber)
boxed class to store validated Number payloads | -| static class | [NumberTypeMatchesNumbers.NumberTypeMatchesNumbers1](#numbertypematchesnumbers1)
schema class | +| data class | [NumberTypeMatchesNumbers.NumberTypeMatchesNumbers1BoxedNumber](#numbertypematchesnumbers1boxednumber)
boxed class to store validated Number payloads | +| class | [NumberTypeMatchesNumbers.NumberTypeMatchesNumbers1](#numbertypematchesnumbers1)
schema class | ## NumberTypeMatchesNumbers1Boxed sealed interface NumberTypeMatchesNumbers1Boxed
diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md index 0626f8af721..31933832054 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md @@ -13,21 +13,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ObjectPropertiesValidation.ObjectPropertiesValidation1Boxed](#objectpropertiesvalidation1boxed)
sealed interface for validated payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedVoid](#objectpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedBoolean](#objectpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedNumber](#objectpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedString](#objectpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedList](#objectpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedMap](#objectpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [ObjectPropertiesValidation.ObjectPropertiesValidation1](#objectpropertiesvalidation1)
schema class | -| static class | [ObjectPropertiesValidation.ObjectPropertiesValidationMapBuilder](#objectpropertiesvalidationmapbuilder)
builder for Map payloads | -| static class | [ObjectPropertiesValidation.ObjectPropertiesValidationMap](#objectpropertiesvalidationmap)
output class for Map payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedVoid](#objectpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedBoolean](#objectpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedNumber](#objectpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedString](#objectpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedList](#objectpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedMap](#objectpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [ObjectPropertiesValidation.ObjectPropertiesValidation1](#objectpropertiesvalidation1)
schema class | +| class | [ObjectPropertiesValidation.ObjectPropertiesValidationMapBuilder](#objectpropertiesvalidationmapbuilder)
builder for Map payloads | +| class | [ObjectPropertiesValidation.ObjectPropertiesValidationMap](#objectpropertiesvalidationmap)
output class for Map payloads | | sealed interface | [ObjectPropertiesValidation.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [ObjectPropertiesValidation.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| static class | [ObjectPropertiesValidation.Bar](#bar)
schema class | +| data class | [ObjectPropertiesValidation.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| class | [ObjectPropertiesValidation.Bar](#bar)
schema class | | sealed interface | [ObjectPropertiesValidation.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [ObjectPropertiesValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| static class | [ObjectPropertiesValidation.Foo](#foo)
schema class | +| data class | [ObjectPropertiesValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| class | [ObjectPropertiesValidation.Foo](#foo)
schema class | ## ObjectPropertiesValidation1Boxed sealed interface ObjectPropertiesValidation1Boxed
@@ -62,7 +62,7 @@ data class that stores validated null payloads, sealed permits implementation data class ObjectPropertiesValidation1BoxedBoolean
implements [ObjectPropertiesValidation1Boxed](#objectpropertiesvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectTypeMatchesObjects.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectTypeMatchesObjects.md index ddc0d8b8aa6..0688dddd213 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectTypeMatchesObjects.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/ObjectTypeMatchesObjects.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ObjectTypeMatchesObjects.ObjectTypeMatchesObjects1Boxed](#objecttypematchesobjects1boxed)
sealed interface for validated payloads | -| record | [ObjectTypeMatchesObjects.ObjectTypeMatchesObjects1BoxedMap](#objecttypematchesobjects1boxedmap)
boxed class to store validated Map payloads | -| static class | [ObjectTypeMatchesObjects.ObjectTypeMatchesObjects1](#objecttypematchesobjects1)
schema class | +| data class | [ObjectTypeMatchesObjects.ObjectTypeMatchesObjects1BoxedMap](#objecttypematchesobjects1boxedmap)
boxed class to store validated Map payloads | +| class | [ObjectTypeMatchesObjects.ObjectTypeMatchesObjects1](#objecttypematchesobjects1)
schema class | ## ObjectTypeMatchesObjects1Boxed sealed interface ObjectTypeMatchesObjects1Boxed
diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Oneof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Oneof.md index 7d78c0ba37f..d389550b448 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Oneof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/Oneof.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Oneof.Oneof1Boxed](#oneof1boxed)
sealed interface for validated payloads | -| record | [Oneof.Oneof1BoxedVoid](#oneof1boxedvoid)
boxed class to store validated null payloads | -| record | [Oneof.Oneof1BoxedBoolean](#oneof1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Oneof.Oneof1BoxedNumber](#oneof1boxednumber)
boxed class to store validated Number payloads | -| record | [Oneof.Oneof1BoxedString](#oneof1boxedstring)
boxed class to store validated String payloads | -| record | [Oneof.Oneof1BoxedList](#oneof1boxedlist)
boxed class to store validated List payloads | -| record | [Oneof.Oneof1BoxedMap](#oneof1boxedmap)
boxed class to store validated Map payloads | -| static class | [Oneof.Oneof1](#oneof1)
schema class | +| data class | [Oneof.Oneof1BoxedVoid](#oneof1boxedvoid)
boxed class to store validated null payloads | +| data class | [Oneof.Oneof1BoxedBoolean](#oneof1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Oneof.Oneof1BoxedNumber](#oneof1boxednumber)
boxed class to store validated Number payloads | +| data class | [Oneof.Oneof1BoxedString](#oneof1boxedstring)
boxed class to store validated String payloads | +| data class | [Oneof.Oneof1BoxedList](#oneof1boxedlist)
boxed class to store validated List payloads | +| data class | [Oneof.Oneof1BoxedMap](#oneof1boxedmap)
boxed class to store validated Map payloads | +| class | [Oneof.Oneof1](#oneof1)
schema class | | sealed interface | [Oneof.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [Oneof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [Oneof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Oneof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [Oneof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [Oneof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [Oneof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [Oneof.Schema1](#schema1)
schema class | +| data class | [Oneof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [Oneof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Oneof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [Oneof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [Oneof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [Oneof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [Oneof.Schema1](#schema1)
schema class | | sealed interface | [Oneof.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [Oneof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [Oneof.Schema0](#schema0)
schema class | +| data class | [Oneof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [Oneof.Schema0](#schema0)
schema class | ## Oneof1Boxed sealed interface Oneof1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class Oneof1BoxedBoolean
implements [Oneof1Boxed](#oneof1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md index ae89d4929b6..5c1cf9a9524 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md @@ -13,39 +13,39 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [OneofComplexTypes.OneofComplexTypes1Boxed](#oneofcomplextypes1boxed)
sealed interface for validated payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedVoid](#oneofcomplextypes1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedBoolean](#oneofcomplextypes1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedNumber](#oneofcomplextypes1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedString](#oneofcomplextypes1boxedstring)
boxed class to store validated String payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedList](#oneofcomplextypes1boxedlist)
boxed class to store validated List payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedMap](#oneofcomplextypes1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofComplexTypes.OneofComplexTypes1](#oneofcomplextypes1)
schema class | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedVoid](#oneofcomplextypes1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedBoolean](#oneofcomplextypes1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedNumber](#oneofcomplextypes1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedString](#oneofcomplextypes1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedList](#oneofcomplextypes1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedMap](#oneofcomplextypes1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofComplexTypes.OneofComplexTypes1](#oneofcomplextypes1)
schema class | | sealed interface | [OneofComplexTypes.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [OneofComplexTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofComplexTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofComplexTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofComplexTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [OneofComplexTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [OneofComplexTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofComplexTypes.Schema1](#schema1)
schema class | -| static class | [OneofComplexTypes.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | -| static class | [OneofComplexTypes.Schema1Map](#schema1map)
output class for Map payloads | +| data class | [OneofComplexTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofComplexTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofComplexTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofComplexTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofComplexTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofComplexTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofComplexTypes.Schema1](#schema1)
schema class | +| class | [OneofComplexTypes.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | +| class | [OneofComplexTypes.Schema1Map](#schema1map)
output class for Map payloads | | sealed interface | [OneofComplexTypes.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [OneofComplexTypes.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [OneofComplexTypes.Foo](#foo)
schema class | +| data class | [OneofComplexTypes.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [OneofComplexTypes.Foo](#foo)
schema class | | sealed interface | [OneofComplexTypes.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [OneofComplexTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [OneofComplexTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofComplexTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [OneofComplexTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [OneofComplexTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [OneofComplexTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofComplexTypes.Schema0](#schema0)
schema class | -| static class | [OneofComplexTypes.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [OneofComplexTypes.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [OneofComplexTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofComplexTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofComplexTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofComplexTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [OneofComplexTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [OneofComplexTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [OneofComplexTypes.Schema0](#schema0)
schema class | +| class | [OneofComplexTypes.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [OneofComplexTypes.Schema0Map](#schema0map)
output class for Map payloads | | sealed interface | [OneofComplexTypes.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [OneofComplexTypes.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| static class | [OneofComplexTypes.Bar](#bar)
schema class | +| data class | [OneofComplexTypes.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| class | [OneofComplexTypes.Bar](#bar)
schema class | ## OneofComplexTypes1Boxed sealed interface OneofComplexTypes1Boxed
@@ -80,7 +80,7 @@ data class that stores validated null payloads, sealed permits implementation data class OneofComplexTypes1BoxedBoolean
implements [OneofComplexTypes1Boxed](#oneofcomplextypes1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -227,7 +227,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -464,7 +464,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md index 1076b3333d6..d269e5154fb 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [OneofWithBaseSchema.OneofWithBaseSchema1Boxed](#oneofwithbaseschema1boxed)
sealed interface for validated payloads | -| record | [OneofWithBaseSchema.OneofWithBaseSchema1BoxedString](#oneofwithbaseschema1boxedstring)
boxed class to store validated String payloads | -| static class | [OneofWithBaseSchema.OneofWithBaseSchema1](#oneofwithbaseschema1)
schema class | +| data class | [OneofWithBaseSchema.OneofWithBaseSchema1BoxedString](#oneofwithbaseschema1boxedstring)
boxed class to store validated String payloads | +| class | [OneofWithBaseSchema.OneofWithBaseSchema1](#oneofwithbaseschema1)
schema class | | sealed interface | [OneofWithBaseSchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [OneofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithBaseSchema.Schema1](#schema1)
schema class | +| data class | [OneofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithBaseSchema.Schema1](#schema1)
schema class | | sealed interface | [OneofWithBaseSchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [OneofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithBaseSchema.Schema0](#schema0)
schema class | +| data class | [OneofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithBaseSchema.Schema0](#schema0)
schema class | ## OneofWithBaseSchema1Boxed sealed interface OneofWithBaseSchema1Boxed
@@ -126,7 +126,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -273,7 +273,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md index d437a9d04b2..89c27cbbb27 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [OneofWithEmptySchema.OneofWithEmptySchema1Boxed](#oneofwithemptyschema1boxed)
sealed interface for validated payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedVoid](#oneofwithemptyschema1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedBoolean](#oneofwithemptyschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedNumber](#oneofwithemptyschema1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedString](#oneofwithemptyschema1boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedList](#oneofwithemptyschema1boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedMap](#oneofwithemptyschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithEmptySchema.OneofWithEmptySchema1](#oneofwithemptyschema1)
schema class | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedVoid](#oneofwithemptyschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedBoolean](#oneofwithemptyschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedNumber](#oneofwithemptyschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedString](#oneofwithemptyschema1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedList](#oneofwithemptyschema1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedMap](#oneofwithemptyschema1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithEmptySchema.OneofWithEmptySchema1](#oneofwithemptyschema1)
schema class | | sealed interface | [OneofWithEmptySchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [OneofWithEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithEmptySchema.Schema1](#schema1)
schema class | +| data class | [OneofWithEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithEmptySchema.Schema1](#schema1)
schema class | | sealed interface | [OneofWithEmptySchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [OneofWithEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [OneofWithEmptySchema.Schema0](#schema0)
schema class | +| data class | [OneofWithEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [OneofWithEmptySchema.Schema0](#schema0)
schema class | ## OneofWithEmptySchema1Boxed sealed interface OneofWithEmptySchema1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class OneofWithEmptySchema1BoxedBoolean
implements [OneofWithEmptySchema1Boxed](#oneofwithemptyschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md index 654e75c26c9..d8dc928abdf 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md @@ -13,28 +13,28 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [OneofWithRequired.OneofWithRequired1Boxed](#oneofwithrequired1boxed)
sealed interface for validated payloads | -| record | [OneofWithRequired.OneofWithRequired1BoxedMap](#oneofwithrequired1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithRequired.OneofWithRequired1](#oneofwithrequired1)
schema class | +| data class | [OneofWithRequired.OneofWithRequired1BoxedMap](#oneofwithrequired1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithRequired.OneofWithRequired1](#oneofwithrequired1)
schema class | | sealed interface | [OneofWithRequired.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [OneofWithRequired.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithRequired.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithRequired.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithRequired.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithRequired.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithRequired.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithRequired.Schema1](#schema1)
schema class | -| static class | [OneofWithRequired.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | -| static class | [OneofWithRequired.Schema1Map](#schema1map)
output class for Map payloads | +| data class | [OneofWithRequired.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithRequired.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithRequired.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithRequired.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithRequired.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithRequired.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithRequired.Schema1](#schema1)
schema class | +| class | [OneofWithRequired.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | +| class | [OneofWithRequired.Schema1Map](#schema1map)
output class for Map payloads | | sealed interface | [OneofWithRequired.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [OneofWithRequired.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithRequired.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithRequired.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithRequired.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithRequired.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithRequired.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithRequired.Schema0](#schema0)
schema class | -| static class | [OneofWithRequired.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [OneofWithRequired.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [OneofWithRequired.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithRequired.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithRequired.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithRequired.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithRequired.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithRequired.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithRequired.Schema0](#schema0)
schema class | +| class | [OneofWithRequired.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [OneofWithRequired.Schema0Map](#schema0map)
output class for Map payloads | ## OneofWithRequired1Boxed sealed interface OneofWithRequired1Boxed
@@ -113,7 +113,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -380,7 +380,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md index 55e8e387781..ecad63d7784 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PatternIsNotAnchored.PatternIsNotAnchored1Boxed](#patternisnotanchored1boxed)
sealed interface for validated payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedVoid](#patternisnotanchored1boxedvoid)
boxed class to store validated null payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedBoolean](#patternisnotanchored1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedNumber](#patternisnotanchored1boxednumber)
boxed class to store validated Number payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedString](#patternisnotanchored1boxedstring)
boxed class to store validated String payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedList](#patternisnotanchored1boxedlist)
boxed class to store validated List payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedMap](#patternisnotanchored1boxedmap)
boxed class to store validated Map payloads | -| static class | [PatternIsNotAnchored.PatternIsNotAnchored1](#patternisnotanchored1)
schema class | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedVoid](#patternisnotanchored1boxedvoid)
boxed class to store validated null payloads | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedBoolean](#patternisnotanchored1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedNumber](#patternisnotanchored1boxednumber)
boxed class to store validated Number payloads | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedString](#patternisnotanchored1boxedstring)
boxed class to store validated String payloads | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedList](#patternisnotanchored1boxedlist)
boxed class to store validated List payloads | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedMap](#patternisnotanchored1boxedmap)
boxed class to store validated Map payloads | +| class | [PatternIsNotAnchored.PatternIsNotAnchored1](#patternisnotanchored1)
schema class | ## PatternIsNotAnchored1Boxed sealed interface PatternIsNotAnchored1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class PatternIsNotAnchored1BoxedBoolean
implements [PatternIsNotAnchored1Boxed](#patternisnotanchored1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternValidation.md index 020ca576c3d..872a4242c5a 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PatternValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PatternValidation.PatternValidation1Boxed](#patternvalidation1boxed)
sealed interface for validated payloads | -| record | [PatternValidation.PatternValidation1BoxedVoid](#patternvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [PatternValidation.PatternValidation1BoxedBoolean](#patternvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PatternValidation.PatternValidation1BoxedNumber](#patternvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [PatternValidation.PatternValidation1BoxedString](#patternvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [PatternValidation.PatternValidation1BoxedList](#patternvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [PatternValidation.PatternValidation1BoxedMap](#patternvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [PatternValidation.PatternValidation1](#patternvalidation1)
schema class | +| data class | [PatternValidation.PatternValidation1BoxedVoid](#patternvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [PatternValidation.PatternValidation1BoxedBoolean](#patternvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PatternValidation.PatternValidation1BoxedNumber](#patternvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [PatternValidation.PatternValidation1BoxedString](#patternvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [PatternValidation.PatternValidation1BoxedList](#patternvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [PatternValidation.PatternValidation1BoxedMap](#patternvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [PatternValidation.PatternValidation1](#patternvalidation1)
schema class | ## PatternValidation1Boxed sealed interface PatternValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class PatternValidation1BoxedBoolean
implements [PatternValidation1Boxed](#patternvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md index b602055af40..9d2e1741199 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md @@ -13,33 +13,33 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1Boxed](#propertieswithescapedcharacters1boxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedVoid](#propertieswithescapedcharacters1boxedvoid)
boxed class to store validated null payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedBoolean](#propertieswithescapedcharacters1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedNumber](#propertieswithescapedcharacters1boxednumber)
boxed class to store validated Number payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedString](#propertieswithescapedcharacters1boxedstring)
boxed class to store validated String payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedList](#propertieswithescapedcharacters1boxedlist)
boxed class to store validated List payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedMap](#propertieswithescapedcharacters1boxedmap)
boxed class to store validated Map payloads | -| static class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1](#propertieswithescapedcharacters1)
schema class | -| static class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharactersMapBuilder](#propertieswithescapedcharactersmapbuilder)
builder for Map payloads | -| static class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharactersMap](#propertieswithescapedcharactersmap)
output class for Map payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedVoid](#propertieswithescapedcharacters1boxedvoid)
boxed class to store validated null payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedBoolean](#propertieswithescapedcharacters1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedNumber](#propertieswithescapedcharacters1boxednumber)
boxed class to store validated Number payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedString](#propertieswithescapedcharacters1boxedstring)
boxed class to store validated String payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedList](#propertieswithescapedcharacters1boxedlist)
boxed class to store validated List payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedMap](#propertieswithescapedcharacters1boxedmap)
boxed class to store validated Map payloads | +| class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1](#propertieswithescapedcharacters1)
schema class | +| class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharactersMapBuilder](#propertieswithescapedcharactersmapbuilder)
builder for Map payloads | +| class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharactersMap](#propertieswithescapedcharactersmap)
output class for Map payloads | | sealed interface | [PropertiesWithEscapedCharacters.Foou000CbarBoxed](#foou000cbarboxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.Foou000CbarBoxedNumber](#foou000cbarboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Foou000Cbar](#foou000cbar)
schema class | +| data class | [PropertiesWithEscapedCharacters.Foou000CbarBoxedNumber](#foou000cbarboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Foou000Cbar](#foou000cbar)
schema class | | sealed interface | [PropertiesWithEscapedCharacters.FootbarBoxed](#footbarboxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.FootbarBoxedNumber](#footbarboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Footbar](#footbar)
schema class | +| data class | [PropertiesWithEscapedCharacters.FootbarBoxedNumber](#footbarboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Footbar](#footbar)
schema class | | sealed interface | [PropertiesWithEscapedCharacters.FoorbarBoxed](#foorbarboxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.FoorbarBoxedNumber](#foorbarboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Foorbar](#foorbar)
schema class | +| data class | [PropertiesWithEscapedCharacters.FoorbarBoxedNumber](#foorbarboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Foorbar](#foorbar)
schema class | | sealed interface | [PropertiesWithEscapedCharacters.Foobar1Boxed](#foobar1boxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.Foobar1BoxedNumber](#foobar1boxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Foobar1](#foobar1)
schema class | +| data class | [PropertiesWithEscapedCharacters.Foobar1BoxedNumber](#foobar1boxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Foobar1](#foobar1)
schema class | | sealed interface | [PropertiesWithEscapedCharacters.FoobarBoxed](#foobarboxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.FoobarBoxedNumber](#foobarboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Foobar](#foobar)
schema class | +| data class | [PropertiesWithEscapedCharacters.FoobarBoxedNumber](#foobarboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Foobar](#foobar)
schema class | | sealed interface | [PropertiesWithEscapedCharacters.FoonbarBoxed](#foonbarboxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.FoonbarBoxedNumber](#foonbarboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Foonbar](#foonbar)
schema class | +| data class | [PropertiesWithEscapedCharacters.FoonbarBoxedNumber](#foonbarboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Foonbar](#foonbar)
schema class | ## PropertiesWithEscapedCharacters1Boxed sealed interface PropertiesWithEscapedCharacters1Boxed
@@ -74,7 +74,7 @@ data class that stores validated null payloads, sealed permits implementation data class PropertiesWithEscapedCharacters1BoxedBoolean
implements [PropertiesWithEscapedCharacters1Boxed](#propertieswithescapedcharacters1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md index 2cb82e8642d..8d451d72ab3 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md @@ -13,18 +13,18 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1Boxed](#propertynamedrefthatisnotareference1boxed)
sealed interface for validated payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedVoid](#propertynamedrefthatisnotareference1boxedvoid)
boxed class to store validated null payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedBoolean](#propertynamedrefthatisnotareference1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedNumber](#propertynamedrefthatisnotareference1boxednumber)
boxed class to store validated Number payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedString](#propertynamedrefthatisnotareference1boxedstring)
boxed class to store validated String payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedList](#propertynamedrefthatisnotareference1boxedlist)
boxed class to store validated List payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedMap](#propertynamedrefthatisnotareference1boxedmap)
boxed class to store validated Map payloads | -| static class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1](#propertynamedrefthatisnotareference1)
schema class | -| static class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReferenceMapBuilder](#propertynamedrefthatisnotareferencemapbuilder)
builder for Map payloads | -| static class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReferenceMap](#propertynamedrefthatisnotareferencemap)
output class for Map payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedVoid](#propertynamedrefthatisnotareference1boxedvoid)
boxed class to store validated null payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedBoolean](#propertynamedrefthatisnotareference1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedNumber](#propertynamedrefthatisnotareference1boxednumber)
boxed class to store validated Number payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedString](#propertynamedrefthatisnotareference1boxedstring)
boxed class to store validated String payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedList](#propertynamedrefthatisnotareference1boxedlist)
boxed class to store validated List payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedMap](#propertynamedrefthatisnotareference1boxedmap)
boxed class to store validated Map payloads | +| class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1](#propertynamedrefthatisnotareference1)
schema class | +| class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReferenceMapBuilder](#propertynamedrefthatisnotareferencemapbuilder)
builder for Map payloads | +| class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReferenceMap](#propertynamedrefthatisnotareferencemap)
output class for Map payloads | | sealed interface | [PropertyNamedRefThatIsNotAReference.RefBoxed](#refboxed)
sealed interface for validated payloads | -| record | [PropertyNamedRefThatIsNotAReference.RefBoxedString](#refboxedstring)
boxed class to store validated String payloads | -| static class | [PropertyNamedRefThatIsNotAReference.Ref](#ref)
schema class | +| data class | [PropertyNamedRefThatIsNotAReference.RefBoxedString](#refboxedstring)
boxed class to store validated String payloads | +| class | [PropertyNamedRefThatIsNotAReference.Ref](#ref)
schema class | ## PropertyNamedRefThatIsNotAReference1Boxed sealed interface PropertyNamedRefThatIsNotAReference1Boxed
@@ -59,7 +59,7 @@ data class that stores validated null payloads, sealed permits implementation data class PropertyNamedRefThatIsNotAReference1BoxedBoolean
implements [PropertyNamedRefThatIsNotAReference1Boxed](#propertynamedrefthatisnotareference1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAdditionalproperties.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAdditionalproperties.md index 8124fc1ff16..111bf72d3a7 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAdditionalproperties.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAdditionalproperties.md @@ -13,10 +13,10 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RefInAdditionalproperties.RefInAdditionalproperties1Boxed](#refinadditionalproperties1boxed)
sealed interface for validated payloads | -| record | [RefInAdditionalproperties.RefInAdditionalproperties1BoxedMap](#refinadditionalproperties1boxedmap)
boxed class to store validated Map payloads | -| static class | [RefInAdditionalproperties.RefInAdditionalproperties1](#refinadditionalproperties1)
schema class | -| static class | [RefInAdditionalproperties.RefInAdditionalpropertiesMapBuilder](#refinadditionalpropertiesmapbuilder)
builder for Map payloads | -| static class | [RefInAdditionalproperties.RefInAdditionalpropertiesMap](#refinadditionalpropertiesmap)
output class for Map payloads | +| data class | [RefInAdditionalproperties.RefInAdditionalproperties1BoxedMap](#refinadditionalproperties1boxedmap)
boxed class to store validated Map payloads | +| class | [RefInAdditionalproperties.RefInAdditionalproperties1](#refinadditionalproperties1)
schema class | +| class | [RefInAdditionalproperties.RefInAdditionalpropertiesMapBuilder](#refinadditionalpropertiesmapbuilder)
builder for Map payloads | +| class | [RefInAdditionalproperties.RefInAdditionalpropertiesMap](#refinadditionalpropertiesmap)
output class for Map payloads | ## RefInAdditionalproperties1Boxed sealed interface RefInAdditionalproperties1Boxed
diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAllof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAllof.md index fefdb33e616..e908167cc11 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAllof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAllof.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RefInAllof.RefInAllof1Boxed](#refinallof1boxed)
sealed interface for validated payloads | -| record | [RefInAllof.RefInAllof1BoxedVoid](#refinallof1boxedvoid)
boxed class to store validated null payloads | -| record | [RefInAllof.RefInAllof1BoxedBoolean](#refinallof1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RefInAllof.RefInAllof1BoxedNumber](#refinallof1boxednumber)
boxed class to store validated Number payloads | -| record | [RefInAllof.RefInAllof1BoxedString](#refinallof1boxedstring)
boxed class to store validated String payloads | -| record | [RefInAllof.RefInAllof1BoxedList](#refinallof1boxedlist)
boxed class to store validated List payloads | -| record | [RefInAllof.RefInAllof1BoxedMap](#refinallof1boxedmap)
boxed class to store validated Map payloads | -| static class | [RefInAllof.RefInAllof1](#refinallof1)
schema class | +| data class | [RefInAllof.RefInAllof1BoxedVoid](#refinallof1boxedvoid)
boxed class to store validated null payloads | +| data class | [RefInAllof.RefInAllof1BoxedBoolean](#refinallof1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RefInAllof.RefInAllof1BoxedNumber](#refinallof1boxednumber)
boxed class to store validated Number payloads | +| data class | [RefInAllof.RefInAllof1BoxedString](#refinallof1boxedstring)
boxed class to store validated String payloads | +| data class | [RefInAllof.RefInAllof1BoxedList](#refinallof1boxedlist)
boxed class to store validated List payloads | +| data class | [RefInAllof.RefInAllof1BoxedMap](#refinallof1boxedmap)
boxed class to store validated Map payloads | +| class | [RefInAllof.RefInAllof1](#refinallof1)
schema class | ## RefInAllof1Boxed sealed interface RefInAllof1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class RefInAllof1BoxedBoolean
implements [RefInAllof1Boxed](#refinallof1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAnyof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAnyof.md index 6b63e22b528..0cc534c5a97 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAnyof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInAnyof.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RefInAnyof.RefInAnyof1Boxed](#refinanyof1boxed)
sealed interface for validated payloads | -| record | [RefInAnyof.RefInAnyof1BoxedVoid](#refinanyof1boxedvoid)
boxed class to store validated null payloads | -| record | [RefInAnyof.RefInAnyof1BoxedBoolean](#refinanyof1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RefInAnyof.RefInAnyof1BoxedNumber](#refinanyof1boxednumber)
boxed class to store validated Number payloads | -| record | [RefInAnyof.RefInAnyof1BoxedString](#refinanyof1boxedstring)
boxed class to store validated String payloads | -| record | [RefInAnyof.RefInAnyof1BoxedList](#refinanyof1boxedlist)
boxed class to store validated List payloads | -| record | [RefInAnyof.RefInAnyof1BoxedMap](#refinanyof1boxedmap)
boxed class to store validated Map payloads | -| static class | [RefInAnyof.RefInAnyof1](#refinanyof1)
schema class | +| data class | [RefInAnyof.RefInAnyof1BoxedVoid](#refinanyof1boxedvoid)
boxed class to store validated null payloads | +| data class | [RefInAnyof.RefInAnyof1BoxedBoolean](#refinanyof1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RefInAnyof.RefInAnyof1BoxedNumber](#refinanyof1boxednumber)
boxed class to store validated Number payloads | +| data class | [RefInAnyof.RefInAnyof1BoxedString](#refinanyof1boxedstring)
boxed class to store validated String payloads | +| data class | [RefInAnyof.RefInAnyof1BoxedList](#refinanyof1boxedlist)
boxed class to store validated List payloads | +| data class | [RefInAnyof.RefInAnyof1BoxedMap](#refinanyof1boxedmap)
boxed class to store validated Map payloads | +| class | [RefInAnyof.RefInAnyof1](#refinanyof1)
schema class | ## RefInAnyof1Boxed sealed interface RefInAnyof1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class RefInAnyof1BoxedBoolean
implements [RefInAnyof1Boxed](#refinanyof1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInItems.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInItems.md index b5a16a8e740..b9fd7de22b0 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInItems.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInItems.md @@ -13,10 +13,10 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RefInItems.RefInItems1Boxed](#refinitems1boxed)
sealed interface for validated payloads | -| record | [RefInItems.RefInItems1BoxedList](#refinitems1boxedlist)
boxed class to store validated List payloads | -| static class | [RefInItems.RefInItems1](#refinitems1)
schema class | -| static class | [RefInItems.RefInItemsListBuilder](#refinitemslistbuilder)
builder for List payloads | -| static class | [RefInItems.RefInItemsList](#refinitemslist)
output class for List payloads | +| data class | [RefInItems.RefInItems1BoxedList](#refinitems1boxedlist)
boxed class to store validated List payloads | +| class | [RefInItems.RefInItems1](#refinitems1)
schema class | +| class | [RefInItems.RefInItemsListBuilder](#refinitemslistbuilder)
builder for List payloads | +| class | [RefInItems.RefInItemsList](#refinitemslist)
output class for List payloads | ## RefInItems1Boxed sealed interface RefInItems1Boxed
diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInNot.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInNot.md index b398209d45d..d195c408923 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInNot.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInNot.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RefInNot.RefInNot1Boxed](#refinnot1boxed)
sealed interface for validated payloads | -| record | [RefInNot.RefInNot1BoxedVoid](#refinnot1boxedvoid)
boxed class to store validated null payloads | -| record | [RefInNot.RefInNot1BoxedBoolean](#refinnot1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RefInNot.RefInNot1BoxedNumber](#refinnot1boxednumber)
boxed class to store validated Number payloads | -| record | [RefInNot.RefInNot1BoxedString](#refinnot1boxedstring)
boxed class to store validated String payloads | -| record | [RefInNot.RefInNot1BoxedList](#refinnot1boxedlist)
boxed class to store validated List payloads | -| record | [RefInNot.RefInNot1BoxedMap](#refinnot1boxedmap)
boxed class to store validated Map payloads | -| static class | [RefInNot.RefInNot1](#refinnot1)
schema class | +| data class | [RefInNot.RefInNot1BoxedVoid](#refinnot1boxedvoid)
boxed class to store validated null payloads | +| data class | [RefInNot.RefInNot1BoxedBoolean](#refinnot1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RefInNot.RefInNot1BoxedNumber](#refinnot1boxednumber)
boxed class to store validated Number payloads | +| data class | [RefInNot.RefInNot1BoxedString](#refinnot1boxedstring)
boxed class to store validated String payloads | +| data class | [RefInNot.RefInNot1BoxedList](#refinnot1boxedlist)
boxed class to store validated List payloads | +| data class | [RefInNot.RefInNot1BoxedMap](#refinnot1boxedmap)
boxed class to store validated Map payloads | +| class | [RefInNot.RefInNot1](#refinnot1)
schema class | ## RefInNot1Boxed sealed interface RefInNot1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class RefInNot1BoxedBoolean
implements [RefInNot1Boxed](#refinnot1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInOneof.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInOneof.md index 304a2d1db72..1987390c3df 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInOneof.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInOneof.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RefInOneof.RefInOneof1Boxed](#refinoneof1boxed)
sealed interface for validated payloads | -| record | [RefInOneof.RefInOneof1BoxedVoid](#refinoneof1boxedvoid)
boxed class to store validated null payloads | -| record | [RefInOneof.RefInOneof1BoxedBoolean](#refinoneof1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RefInOneof.RefInOneof1BoxedNumber](#refinoneof1boxednumber)
boxed class to store validated Number payloads | -| record | [RefInOneof.RefInOneof1BoxedString](#refinoneof1boxedstring)
boxed class to store validated String payloads | -| record | [RefInOneof.RefInOneof1BoxedList](#refinoneof1boxedlist)
boxed class to store validated List payloads | -| record | [RefInOneof.RefInOneof1BoxedMap](#refinoneof1boxedmap)
boxed class to store validated Map payloads | -| static class | [RefInOneof.RefInOneof1](#refinoneof1)
schema class | +| data class | [RefInOneof.RefInOneof1BoxedVoid](#refinoneof1boxedvoid)
boxed class to store validated null payloads | +| data class | [RefInOneof.RefInOneof1BoxedBoolean](#refinoneof1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RefInOneof.RefInOneof1BoxedNumber](#refinoneof1boxednumber)
boxed class to store validated Number payloads | +| data class | [RefInOneof.RefInOneof1BoxedString](#refinoneof1boxedstring)
boxed class to store validated String payloads | +| data class | [RefInOneof.RefInOneof1BoxedList](#refinoneof1boxedlist)
boxed class to store validated List payloads | +| data class | [RefInOneof.RefInOneof1BoxedMap](#refinoneof1boxedmap)
boxed class to store validated Map payloads | +| class | [RefInOneof.RefInOneof1](#refinoneof1)
schema class | ## RefInOneof1Boxed sealed interface RefInOneof1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class RefInOneof1BoxedBoolean
implements [RefInOneof1Boxed](#refinoneof1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInProperty.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInProperty.md index a60ec6aa667..6bc30e8936d 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInProperty.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RefInProperty.md @@ -13,15 +13,15 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RefInProperty.RefInProperty1Boxed](#refinproperty1boxed)
sealed interface for validated payloads | -| record | [RefInProperty.RefInProperty1BoxedVoid](#refinproperty1boxedvoid)
boxed class to store validated null payloads | -| record | [RefInProperty.RefInProperty1BoxedBoolean](#refinproperty1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RefInProperty.RefInProperty1BoxedNumber](#refinproperty1boxednumber)
boxed class to store validated Number payloads | -| record | [RefInProperty.RefInProperty1BoxedString](#refinproperty1boxedstring)
boxed class to store validated String payloads | -| record | [RefInProperty.RefInProperty1BoxedList](#refinproperty1boxedlist)
boxed class to store validated List payloads | -| record | [RefInProperty.RefInProperty1BoxedMap](#refinproperty1boxedmap)
boxed class to store validated Map payloads | -| static class | [RefInProperty.RefInProperty1](#refinproperty1)
schema class | -| static class | [RefInProperty.RefInPropertyMapBuilder](#refinpropertymapbuilder)
builder for Map payloads | -| static class | [RefInProperty.RefInPropertyMap](#refinpropertymap)
output class for Map payloads | +| data class | [RefInProperty.RefInProperty1BoxedVoid](#refinproperty1boxedvoid)
boxed class to store validated null payloads | +| data class | [RefInProperty.RefInProperty1BoxedBoolean](#refinproperty1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RefInProperty.RefInProperty1BoxedNumber](#refinproperty1boxednumber)
boxed class to store validated Number payloads | +| data class | [RefInProperty.RefInProperty1BoxedString](#refinproperty1boxedstring)
boxed class to store validated String payloads | +| data class | [RefInProperty.RefInProperty1BoxedList](#refinproperty1boxedlist)
boxed class to store validated List payloads | +| data class | [RefInProperty.RefInProperty1BoxedMap](#refinproperty1boxedmap)
boxed class to store validated Map payloads | +| class | [RefInProperty.RefInProperty1](#refinproperty1)
schema class | +| class | [RefInProperty.RefInPropertyMapBuilder](#refinpropertymapbuilder)
builder for Map payloads | +| class | [RefInProperty.RefInPropertyMap](#refinpropertymap)
output class for Map payloads | ## RefInProperty1Boxed sealed interface RefInProperty1Boxed
@@ -56,7 +56,7 @@ data class that stores validated null payloads, sealed permits implementation data class RefInProperty1BoxedBoolean
implements [RefInProperty1Boxed](#refinproperty1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md index 3dc803a4186..80acec0b953 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md @@ -13,23 +13,23 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RequiredDefaultValidation.RequiredDefaultValidation1Boxed](#requireddefaultvalidation1boxed)
sealed interface for validated payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedVoid](#requireddefaultvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedBoolean](#requireddefaultvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedNumber](#requireddefaultvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedString](#requireddefaultvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedList](#requireddefaultvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedMap](#requireddefaultvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredDefaultValidation.RequiredDefaultValidation1](#requireddefaultvalidation1)
schema class | -| static class | [RequiredDefaultValidation.RequiredDefaultValidationMapBuilder](#requireddefaultvalidationmapbuilder)
builder for Map payloads | -| static class | [RequiredDefaultValidation.RequiredDefaultValidationMap](#requireddefaultvalidationmap)
output class for Map payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedVoid](#requireddefaultvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedBoolean](#requireddefaultvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedNumber](#requireddefaultvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedString](#requireddefaultvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedList](#requireddefaultvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedMap](#requireddefaultvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [RequiredDefaultValidation.RequiredDefaultValidation1](#requireddefaultvalidation1)
schema class | +| class | [RequiredDefaultValidation.RequiredDefaultValidationMapBuilder](#requireddefaultvalidationmapbuilder)
builder for Map payloads | +| class | [RequiredDefaultValidation.RequiredDefaultValidationMap](#requireddefaultvalidationmap)
output class for Map payloads | | sealed interface | [RequiredDefaultValidation.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [RequiredDefaultValidation.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [RequiredDefaultValidation.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredDefaultValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [RequiredDefaultValidation.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [RequiredDefaultValidation.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [RequiredDefaultValidation.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredDefaultValidation.Foo](#foo)
schema class | +| data class | [RequiredDefaultValidation.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredDefaultValidation.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredDefaultValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredDefaultValidation.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [RequiredDefaultValidation.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [RequiredDefaultValidation.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [RequiredDefaultValidation.Foo](#foo)
schema class | ## RequiredDefaultValidation1Boxed sealed interface RequiredDefaultValidation1Boxed
@@ -64,7 +64,7 @@ data class that stores validated null payloads, sealed permits implementation data class RequiredDefaultValidation1BoxedBoolean
implements [RequiredDefaultValidation1Boxed](#requireddefaultvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -258,7 +258,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredValidation.md index a74cb2c2e08..5d2fc896d8a 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredValidation.md @@ -13,31 +13,31 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RequiredValidation.RequiredValidation1Boxed](#requiredvalidation1boxed)
sealed interface for validated payloads | -| record | [RequiredValidation.RequiredValidation1BoxedVoid](#requiredvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [RequiredValidation.RequiredValidation1BoxedBoolean](#requiredvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredValidation.RequiredValidation1BoxedNumber](#requiredvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [RequiredValidation.RequiredValidation1BoxedString](#requiredvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [RequiredValidation.RequiredValidation1BoxedList](#requiredvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [RequiredValidation.RequiredValidation1BoxedMap](#requiredvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredValidation.RequiredValidation1](#requiredvalidation1)
schema class | -| static class | [RequiredValidation.RequiredValidationMapBuilder](#requiredvalidationmapbuilder)
builder for Map payloads | -| static class | [RequiredValidation.RequiredValidationMap](#requiredvalidationmap)
output class for Map payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedVoid](#requiredvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedBoolean](#requiredvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedNumber](#requiredvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedString](#requiredvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedList](#requiredvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedMap](#requiredvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [RequiredValidation.RequiredValidation1](#requiredvalidation1)
schema class | +| class | [RequiredValidation.RequiredValidationMapBuilder](#requiredvalidationmapbuilder)
builder for Map payloads | +| class | [RequiredValidation.RequiredValidationMap](#requiredvalidationmap)
output class for Map payloads | | sealed interface | [RequiredValidation.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [RequiredValidation.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | -| record | [RequiredValidation.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredValidation.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| record | [RequiredValidation.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| record | [RequiredValidation.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | -| record | [RequiredValidation.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredValidation.Bar](#bar)
schema class | +| data class | [RequiredValidation.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredValidation.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredValidation.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredValidation.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| data class | [RequiredValidation.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | +| data class | [RequiredValidation.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | +| class | [RequiredValidation.Bar](#bar)
schema class | | sealed interface | [RequiredValidation.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [RequiredValidation.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [RequiredValidation.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [RequiredValidation.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [RequiredValidation.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [RequiredValidation.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredValidation.Foo](#foo)
schema class | +| data class | [RequiredValidation.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredValidation.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredValidation.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [RequiredValidation.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [RequiredValidation.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [RequiredValidation.Foo](#foo)
schema class | ## RequiredValidation1Boxed sealed interface RequiredValidation1Boxed
@@ -72,7 +72,7 @@ data class that stores validated null payloads, sealed permits implementation data class RequiredValidation1BoxedBoolean
implements [RequiredValidation1Boxed](#requiredvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -292,7 +292,7 @@ data class that stores validated null payloads, sealed permits implementation data class BarBoxedBoolean
implements [BarBoxed](#barboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -417,7 +417,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md index 7f624f006a5..c743a6baba5 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md @@ -13,23 +13,23 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RequiredWithEmptyArray.RequiredWithEmptyArray1Boxed](#requiredwithemptyarray1boxed)
sealed interface for validated payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedVoid](#requiredwithemptyarray1boxedvoid)
boxed class to store validated null payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedBoolean](#requiredwithemptyarray1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedNumber](#requiredwithemptyarray1boxednumber)
boxed class to store validated Number payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedString](#requiredwithemptyarray1boxedstring)
boxed class to store validated String payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedList](#requiredwithemptyarray1boxedlist)
boxed class to store validated List payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedMap](#requiredwithemptyarray1boxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredWithEmptyArray.RequiredWithEmptyArray1](#requiredwithemptyarray1)
schema class | -| static class | [RequiredWithEmptyArray.RequiredWithEmptyArrayMapBuilder](#requiredwithemptyarraymapbuilder)
builder for Map payloads | -| static class | [RequiredWithEmptyArray.RequiredWithEmptyArrayMap](#requiredwithemptyarraymap)
output class for Map payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedVoid](#requiredwithemptyarray1boxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedBoolean](#requiredwithemptyarray1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedNumber](#requiredwithemptyarray1boxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedString](#requiredwithemptyarray1boxedstring)
boxed class to store validated String payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedList](#requiredwithemptyarray1boxedlist)
boxed class to store validated List payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedMap](#requiredwithemptyarray1boxedmap)
boxed class to store validated Map payloads | +| class | [RequiredWithEmptyArray.RequiredWithEmptyArray1](#requiredwithemptyarray1)
schema class | +| class | [RequiredWithEmptyArray.RequiredWithEmptyArrayMapBuilder](#requiredwithemptyarraymapbuilder)
builder for Map payloads | +| class | [RequiredWithEmptyArray.RequiredWithEmptyArrayMap](#requiredwithemptyarraymap)
output class for Map payloads | | sealed interface | [RequiredWithEmptyArray.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [RequiredWithEmptyArray.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [RequiredWithEmptyArray.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredWithEmptyArray.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [RequiredWithEmptyArray.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [RequiredWithEmptyArray.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [RequiredWithEmptyArray.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredWithEmptyArray.Foo](#foo)
schema class | +| data class | [RequiredWithEmptyArray.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredWithEmptyArray.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredWithEmptyArray.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredWithEmptyArray.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [RequiredWithEmptyArray.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [RequiredWithEmptyArray.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [RequiredWithEmptyArray.Foo](#foo)
schema class | ## RequiredWithEmptyArray1Boxed sealed interface RequiredWithEmptyArray1Boxed
@@ -64,7 +64,7 @@ data class that stores validated null payloads, sealed permits implementation data class RequiredWithEmptyArray1BoxedBoolean
implements [RequiredWithEmptyArray1Boxed](#requiredwithemptyarray1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -258,7 +258,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md index 55ae80437f4..9cb36c2c0e7 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md @@ -13,15 +13,15 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1Boxed](#requiredwithescapedcharacters1boxed)
sealed interface for validated payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedVoid](#requiredwithescapedcharacters1boxedvoid)
boxed class to store validated null payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedBoolean](#requiredwithescapedcharacters1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedNumber](#requiredwithescapedcharacters1boxednumber)
boxed class to store validated Number payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedString](#requiredwithescapedcharacters1boxedstring)
boxed class to store validated String payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedList](#requiredwithescapedcharacters1boxedlist)
boxed class to store validated List payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedMap](#requiredwithescapedcharacters1boxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1](#requiredwithescapedcharacters1)
schema class | -| static class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharactersMapBuilder](#requiredwithescapedcharactersmapbuilder)
builder for Map payloads | -| static class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharactersMap](#requiredwithescapedcharactersmap)
output class for Map payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedVoid](#requiredwithescapedcharacters1boxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedBoolean](#requiredwithescapedcharacters1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedNumber](#requiredwithescapedcharacters1boxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedString](#requiredwithescapedcharacters1boxedstring)
boxed class to store validated String payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedList](#requiredwithescapedcharacters1boxedlist)
boxed class to store validated List payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedMap](#requiredwithescapedcharacters1boxedmap)
boxed class to store validated Map payloads | +| class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1](#requiredwithescapedcharacters1)
schema class | +| class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharactersMapBuilder](#requiredwithescapedcharactersmapbuilder)
builder for Map payloads | +| class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharactersMap](#requiredwithescapedcharactersmap)
output class for Map payloads | ## RequiredWithEscapedCharacters1Boxed sealed interface RequiredWithEscapedCharacters1Boxed
@@ -56,7 +56,7 @@ data class that stores validated null payloads, sealed permits implementation data class RequiredWithEscapedCharacters1BoxedBoolean
implements [RequiredWithEscapedCharacters1Boxed](#requiredwithescapedcharacters1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md index 3bc45e63aa7..4539e459ba4 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [SimpleEnumValidation.SimpleEnumValidation1Boxed](#simpleenumvalidation1boxed)
sealed interface for validated payloads | -| record | [SimpleEnumValidation.SimpleEnumValidation1BoxedNumber](#simpleenumvalidation1boxednumber)
boxed class to store validated Number payloads | -| static class | [SimpleEnumValidation.SimpleEnumValidation1](#simpleenumvalidation1)
schema class | +| data class | [SimpleEnumValidation.SimpleEnumValidation1BoxedNumber](#simpleenumvalidation1boxednumber)
boxed class to store validated Number payloads | +| class | [SimpleEnumValidation.SimpleEnumValidation1](#simpleenumvalidation1)
schema class | | enum | [SimpleEnumValidation.IntegerSimpleEnumValidationEnums](#integersimpleenumvalidationenums)
Integer enum | | enum | [SimpleEnumValidation.LongSimpleEnumValidationEnums](#longsimpleenumvalidationenums)
Long enum | | enum | [SimpleEnumValidation.FloatSimpleEnumValidationEnums](#floatsimpleenumvalidationenums)
Float enum | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/StringTypeMatchesStrings.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/StringTypeMatchesStrings.md index 30d0ca293d7..b60309c2bd0 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/StringTypeMatchesStrings.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/StringTypeMatchesStrings.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [StringTypeMatchesStrings.StringTypeMatchesStrings1Boxed](#stringtypematchesstrings1boxed)
sealed interface for validated payloads | -| record | [StringTypeMatchesStrings.StringTypeMatchesStrings1BoxedString](#stringtypematchesstrings1boxedstring)
boxed class to store validated String payloads | -| static class | [StringTypeMatchesStrings.StringTypeMatchesStrings1](#stringtypematchesstrings1)
schema class | +| data class | [StringTypeMatchesStrings.StringTypeMatchesStrings1BoxedString](#stringtypematchesstrings1boxedstring)
boxed class to store validated String payloads | +| class | [StringTypeMatchesStrings.StringTypeMatchesStrings1](#stringtypematchesstrings1)
schema class | ## StringTypeMatchesStrings1Boxed sealed interface StringTypeMatchesStrings1Boxed
diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md index a6dd7e06256..fd58d5710fd 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md @@ -13,13 +13,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing1Boxed](#thedefaultkeyworddoesnotdoanythingifthepropertyismissing1boxed)
sealed interface for validated payloads | -| record | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing1BoxedMap](#thedefaultkeyworddoesnotdoanythingifthepropertyismissing1boxedmap)
boxed class to store validated Map payloads | -| static class | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing1](#thedefaultkeyworddoesnotdoanythingifthepropertyismissing1)
schema class | -| static class | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingMapBuilder](#thedefaultkeyworddoesnotdoanythingifthepropertyismissingmapbuilder)
builder for Map payloads | -| static class | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingMap](#thedefaultkeyworddoesnotdoanythingifthepropertyismissingmap)
output class for Map payloads | +| data class | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing1BoxedMap](#thedefaultkeyworddoesnotdoanythingifthepropertyismissing1boxedmap)
boxed class to store validated Map payloads | +| class | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing1](#thedefaultkeyworddoesnotdoanythingifthepropertyismissing1)
schema class | +| class | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingMapBuilder](#thedefaultkeyworddoesnotdoanythingifthepropertyismissingmapbuilder)
builder for Map payloads | +| class | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingMap](#thedefaultkeyworddoesnotdoanythingifthepropertyismissingmap)
output class for Map payloads | | sealed interface | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.AlphaBoxed](#alphaboxed)
sealed interface for validated payloads | -| record | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.AlphaBoxedNumber](#alphaboxednumber)
boxed class to store validated Number payloads | -| static class | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.Alpha](#alpha)
schema class | +| data class | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.AlphaBoxedNumber](#alphaboxednumber)
boxed class to store validated Number payloads | +| class | [TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.Alpha](#alpha)
schema class | ## TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing1Boxed sealed interface TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing1Boxed
diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md index e973205c00e..3454bf20fe9 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1Boxed](#uniqueitemsfalsevalidation1boxed)
sealed interface for validated payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedVoid](#uniqueitemsfalsevalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedBoolean](#uniqueitemsfalsevalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedNumber](#uniqueitemsfalsevalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedString](#uniqueitemsfalsevalidation1boxedstring)
boxed class to store validated String payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedList](#uniqueitemsfalsevalidation1boxedlist)
boxed class to store validated List payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedMap](#uniqueitemsfalsevalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1](#uniqueitemsfalsevalidation1)
schema class | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedVoid](#uniqueitemsfalsevalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedBoolean](#uniqueitemsfalsevalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedNumber](#uniqueitemsfalsevalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedString](#uniqueitemsfalsevalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedList](#uniqueitemsfalsevalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedMap](#uniqueitemsfalsevalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1](#uniqueitemsfalsevalidation1)
schema class | ## UniqueitemsFalseValidation1Boxed sealed interface UniqueitemsFalseValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class UniqueitemsFalseValidation1BoxedBoolean
implements [UniqueitemsFalseValidation1Boxed](#uniqueitemsfalsevalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md index 4b3da1c0ec8..99368d6c1b3 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UniqueitemsValidation.UniqueitemsValidation1Boxed](#uniqueitemsvalidation1boxed)
sealed interface for validated payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedVoid](#uniqueitemsvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedBoolean](#uniqueitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedNumber](#uniqueitemsvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedString](#uniqueitemsvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedList](#uniqueitemsvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedMap](#uniqueitemsvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [UniqueitemsValidation.UniqueitemsValidation1](#uniqueitemsvalidation1)
schema class | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedVoid](#uniqueitemsvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedBoolean](#uniqueitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedNumber](#uniqueitemsvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedString](#uniqueitemsvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedList](#uniqueitemsvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedMap](#uniqueitemsvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [UniqueitemsValidation.UniqueitemsValidation1](#uniqueitemsvalidation1)
schema class | ## UniqueitemsValidation1Boxed sealed interface UniqueitemsValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class UniqueitemsValidation1BoxedBoolean
implements [UniqueitemsValidation1Boxed](#uniqueitemsvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriFormat.md index 6c21950a1cb..207ae83de09 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UriFormat.UriFormat1Boxed](#uriformat1boxed)
sealed interface for validated payloads | -| record | [UriFormat.UriFormat1BoxedVoid](#uriformat1boxedvoid)
boxed class to store validated null payloads | -| record | [UriFormat.UriFormat1BoxedBoolean](#uriformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UriFormat.UriFormat1BoxedNumber](#uriformat1boxednumber)
boxed class to store validated Number payloads | -| record | [UriFormat.UriFormat1BoxedString](#uriformat1boxedstring)
boxed class to store validated String payloads | -| record | [UriFormat.UriFormat1BoxedList](#uriformat1boxedlist)
boxed class to store validated List payloads | -| record | [UriFormat.UriFormat1BoxedMap](#uriformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [UriFormat.UriFormat1](#uriformat1)
schema class | +| data class | [UriFormat.UriFormat1BoxedVoid](#uriformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [UriFormat.UriFormat1BoxedBoolean](#uriformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UriFormat.UriFormat1BoxedNumber](#uriformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [UriFormat.UriFormat1BoxedString](#uriformat1boxedstring)
boxed class to store validated String payloads | +| data class | [UriFormat.UriFormat1BoxedList](#uriformat1boxedlist)
boxed class to store validated List payloads | +| data class | [UriFormat.UriFormat1BoxedMap](#uriformat1boxedmap)
boxed class to store validated Map payloads | +| class | [UriFormat.UriFormat1](#uriformat1)
schema class | ## UriFormat1Boxed sealed interface UriFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class UriFormat1BoxedBoolean
implements [UriFormat1Boxed](#uriformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md index 16ef1cd0916..7b866bde5d8 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UriReferenceFormat.UriReferenceFormat1Boxed](#urireferenceformat1boxed)
sealed interface for validated payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedVoid](#urireferenceformat1boxedvoid)
boxed class to store validated null payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedBoolean](#urireferenceformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedNumber](#urireferenceformat1boxednumber)
boxed class to store validated Number payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedString](#urireferenceformat1boxedstring)
boxed class to store validated String payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedList](#urireferenceformat1boxedlist)
boxed class to store validated List payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedMap](#urireferenceformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [UriReferenceFormat.UriReferenceFormat1](#urireferenceformat1)
schema class | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedVoid](#urireferenceformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedBoolean](#urireferenceformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedNumber](#urireferenceformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedString](#urireferenceformat1boxedstring)
boxed class to store validated String payloads | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedList](#urireferenceformat1boxedlist)
boxed class to store validated List payloads | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedMap](#urireferenceformat1boxedmap)
boxed class to store validated Map payloads | +| class | [UriReferenceFormat.UriReferenceFormat1](#urireferenceformat1)
schema class | ## UriReferenceFormat1Boxed sealed interface UriReferenceFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class UriReferenceFormat1BoxedBoolean
implements [UriReferenceFormat1Boxed](#urireferenceformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md index 7b608e65bcd..e2612eac0fc 100644 --- a/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md +++ b/samples/client/3_0_3_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UriTemplateFormat.UriTemplateFormat1Boxed](#uritemplateformat1boxed)
sealed interface for validated payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedVoid](#uritemplateformat1boxedvoid)
boxed class to store validated null payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedBoolean](#uritemplateformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedNumber](#uritemplateformat1boxednumber)
boxed class to store validated Number payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedString](#uritemplateformat1boxedstring)
boxed class to store validated String payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedList](#uritemplateformat1boxedlist)
boxed class to store validated List payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedMap](#uritemplateformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [UriTemplateFormat.UriTemplateFormat1](#uritemplateformat1)
schema class | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedVoid](#uritemplateformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedBoolean](#uritemplateformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedNumber](#uritemplateformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedString](#uritemplateformat1boxedstring)
boxed class to store validated String payloads | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedList](#uritemplateformat1boxedlist)
boxed class to store validated List payloads | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedMap](#uritemplateformat1boxedmap)
boxed class to store validated Map payloads | +| class | [UriTemplateFormat.UriTemplateFormat1](#uritemplateformat1)
schema class | ## UriTemplateFormat1Boxed sealed interface UriTemplateFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class UriTemplateFormat1BoxedBoolean
implements [UriTemplateFormat1Boxed](#uritemplateformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ASchemaGivenForPrefixitems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ASchemaGivenForPrefixitems.md index ab192b8e99e..05226f16f9f 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ASchemaGivenForPrefixitems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ASchemaGivenForPrefixitems.md @@ -13,21 +13,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1Boxed](#aschemagivenforprefixitems1boxed)
sealed interface for validated payloads | -| record | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedVoid](#aschemagivenforprefixitems1boxedvoid)
boxed class to store validated null payloads | -| record | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedBoolean](#aschemagivenforprefixitems1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedNumber](#aschemagivenforprefixitems1boxednumber)
boxed class to store validated Number payloads | -| record | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedString](#aschemagivenforprefixitems1boxedstring)
boxed class to store validated String payloads | -| record | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedList](#aschemagivenforprefixitems1boxedlist)
boxed class to store validated List payloads | -| record | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedMap](#aschemagivenforprefixitems1boxedmap)
boxed class to store validated Map payloads | -| static class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1](#aschemagivenforprefixitems1)
schema class | +| data class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedVoid](#aschemagivenforprefixitems1boxedvoid)
boxed class to store validated null payloads | +| data class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedBoolean](#aschemagivenforprefixitems1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedNumber](#aschemagivenforprefixitems1boxednumber)
boxed class to store validated Number payloads | +| data class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedString](#aschemagivenforprefixitems1boxedstring)
boxed class to store validated String payloads | +| data class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedList](#aschemagivenforprefixitems1boxedlist)
boxed class to store validated List payloads | +| data class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1BoxedMap](#aschemagivenforprefixitems1boxedmap)
boxed class to store validated Map payloads | +| class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitems1](#aschemagivenforprefixitems1)
schema class | | sealed interface | [ASchemaGivenForPrefixitems.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [ASchemaGivenForPrefixitems.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| static class | [ASchemaGivenForPrefixitems.Schema1](#schema1)
schema class | +| data class | [ASchemaGivenForPrefixitems.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| class | [ASchemaGivenForPrefixitems.Schema1](#schema1)
schema class | | sealed interface | [ASchemaGivenForPrefixitems.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [ASchemaGivenForPrefixitems.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [ASchemaGivenForPrefixitems.Schema0](#schema0)
schema class | -| static class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitemsListBuilder](#aschemagivenforprefixitemslistbuilder)
builder for List payloads | -| static class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitemsList](#aschemagivenforprefixitemslist)
output class for List payloads | +| data class | [ASchemaGivenForPrefixitems.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [ASchemaGivenForPrefixitems.Schema0](#schema0)
schema class | +| class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitemsListBuilder](#aschemagivenforprefixitemslistbuilder)
builder for List payloads | +| class | [ASchemaGivenForPrefixitems.ASchemaGivenForPrefixitemsList](#aschemagivenforprefixitemslist)
output class for List payloads | ## ASchemaGivenForPrefixitems1Boxed sealed interface ASchemaGivenForPrefixitems1Boxed
@@ -62,7 +62,7 @@ data class that stores validated null payloads, sealed permits implementation data class ASchemaGivenForPrefixitems1BoxedBoolean
implements [ASchemaGivenForPrefixitems1Boxed](#aschemagivenforprefixitems1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalItemsAreAllowedByDefault.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalItemsAreAllowedByDefault.md index 24eaacadd16..74a17621552 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalItemsAreAllowedByDefault.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalItemsAreAllowedByDefault.md @@ -13,18 +13,18 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1Boxed](#additionalitemsareallowedbydefault1boxed)
sealed interface for validated payloads | -| record | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedVoid](#additionalitemsareallowedbydefault1boxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedBoolean](#additionalitemsareallowedbydefault1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedNumber](#additionalitemsareallowedbydefault1boxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedString](#additionalitemsareallowedbydefault1boxedstring)
boxed class to store validated String payloads | -| record | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedList](#additionalitemsareallowedbydefault1boxedlist)
boxed class to store validated List payloads | -| record | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedMap](#additionalitemsareallowedbydefault1boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1](#additionalitemsareallowedbydefault1)
schema class | +| data class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedVoid](#additionalitemsareallowedbydefault1boxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedBoolean](#additionalitemsareallowedbydefault1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedNumber](#additionalitemsareallowedbydefault1boxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedString](#additionalitemsareallowedbydefault1boxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedList](#additionalitemsareallowedbydefault1boxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1BoxedMap](#additionalitemsareallowedbydefault1boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefault1](#additionalitemsareallowedbydefault1)
schema class | | sealed interface | [AdditionalItemsAreAllowedByDefault.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AdditionalItemsAreAllowedByDefault.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [AdditionalItemsAreAllowedByDefault.Schema0](#schema0)
schema class | -| static class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefaultListBuilder](#additionalitemsareallowedbydefaultlistbuilder)
builder for List payloads | -| static class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefaultList](#additionalitemsareallowedbydefaultlist)
output class for List payloads | +| data class | [AdditionalItemsAreAllowedByDefault.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [AdditionalItemsAreAllowedByDefault.Schema0](#schema0)
schema class | +| class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefaultListBuilder](#additionalitemsareallowedbydefaultlistbuilder)
builder for List payloads | +| class | [AdditionalItemsAreAllowedByDefault.AdditionalItemsAreAllowedByDefaultList](#additionalitemsareallowedbydefaultlist)
output class for List payloads | ## AdditionalItemsAreAllowedByDefault1Boxed sealed interface AdditionalItemsAreAllowedByDefault1Boxed
@@ -59,7 +59,7 @@ data class that stores validated null payloads, sealed permits implementation data class AdditionalItemsAreAllowedByDefault1BoxedBoolean
implements [AdditionalItemsAreAllowedByDefault1Boxed](#additionalitemsareallowedbydefault1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md index f5ee810d1f5..b1bac3ae670 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesAreAllowedByDefault.md @@ -13,31 +13,31 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1Boxed](#additionalpropertiesareallowedbydefault1boxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedVoid](#additionalpropertiesareallowedbydefault1boxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedBoolean](#additionalpropertiesareallowedbydefault1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedNumber](#additionalpropertiesareallowedbydefault1boxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedString](#additionalpropertiesareallowedbydefault1boxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedList](#additionalpropertiesareallowedbydefault1boxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedMap](#additionalpropertiesareallowedbydefault1boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1](#additionalpropertiesareallowedbydefault1)
schema class | -| static class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefaultMapBuilder](#additionalpropertiesareallowedbydefaultmapbuilder)
builder for Map payloads | -| static class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefaultMap](#additionalpropertiesareallowedbydefaultmap)
output class for Map payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedVoid](#additionalpropertiesareallowedbydefault1boxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedBoolean](#additionalpropertiesareallowedbydefault1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedNumber](#additionalpropertiesareallowedbydefault1boxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedString](#additionalpropertiesareallowedbydefault1boxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedList](#additionalpropertiesareallowedbydefault1boxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1BoxedMap](#additionalpropertiesareallowedbydefault1boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefault1](#additionalpropertiesareallowedbydefault1)
schema class | +| class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefaultMapBuilder](#additionalpropertiesareallowedbydefaultmapbuilder)
builder for Map payloads | +| class | [AdditionalpropertiesAreAllowedByDefault.AdditionalpropertiesAreAllowedByDefaultMap](#additionalpropertiesareallowedbydefaultmap)
output class for Map payloads | | sealed interface | [AdditionalpropertiesAreAllowedByDefault.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesAreAllowedByDefault.Bar](#bar)
schema class | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesAreAllowedByDefault.Bar](#bar)
schema class | | sealed interface | [AdditionalpropertiesAreAllowedByDefault.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesAreAllowedByDefault.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesAreAllowedByDefault.Foo](#foo)
schema class | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesAreAllowedByDefault.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesAreAllowedByDefault.Foo](#foo)
schema class | ## AdditionalpropertiesAreAllowedByDefault1Boxed sealed interface AdditionalpropertiesAreAllowedByDefault1Boxed
@@ -72,7 +72,7 @@ data class that stores validated null payloads, sealed permits implementation data class AdditionalpropertiesAreAllowedByDefault1BoxedBoolean
implements [AdditionalpropertiesAreAllowedByDefault1Boxed](#additionalpropertiesareallowedbydefault1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -276,7 +276,7 @@ data class that stores validated null payloads, sealed permits implementation data class BarBoxedBoolean
implements [BarBoxed](#barboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -401,7 +401,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md index 90eab2eba43..0b32be06cb3 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesCanExistByItself.md @@ -13,13 +13,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1Boxed](#additionalpropertiescanexistbyitself1boxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1BoxedMap](#additionalpropertiescanexistbyitself1boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1](#additionalpropertiescanexistbyitself1)
schema class | -| static class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMapBuilder](#additionalpropertiescanexistbyitselfmapbuilder)
builder for Map payloads | -| static class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMap](#additionalpropertiescanexistbyitselfmap)
output class for Map payloads | +| data class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1BoxedMap](#additionalpropertiescanexistbyitself1boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItself1](#additionalpropertiescanexistbyitself1)
schema class | +| class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMapBuilder](#additionalpropertiescanexistbyitselfmapbuilder)
builder for Map payloads | +| class | [AdditionalpropertiesCanExistByItself.AdditionalpropertiesCanExistByItselfMap](#additionalpropertiescanexistbyitselfmap)
output class for Map payloads | | sealed interface | [AdditionalpropertiesCanExistByItself.AdditionalPropertiesBoxed](#additionalpropertiesboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesCanExistByItself.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | -| static class | [AdditionalpropertiesCanExistByItself.AdditionalProperties](#additionalproperties)
schema class | +| data class | [AdditionalpropertiesCanExistByItself.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | +| class | [AdditionalpropertiesCanExistByItself.AdditionalProperties](#additionalproperties)
schema class | ## AdditionalpropertiesCanExistByItself1Boxed sealed interface AdditionalpropertiesCanExistByItself1Boxed
@@ -128,7 +128,7 @@ sealed interface that stores validated payloads using boxed classes data class AdditionalPropertiesBoxedBoolean
implements [AdditionalPropertiesBoxed](#additionalpropertiesboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesDoesNotLookInApplicators.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesDoesNotLookInApplicators.md index 0db528dc30e..666cc0bb77d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesDoesNotLookInApplicators.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesDoesNotLookInApplicators.md @@ -13,36 +13,36 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1Boxed](#additionalpropertiesdoesnotlookinapplicators1boxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedVoid](#additionalpropertiesdoesnotlookinapplicators1boxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedBoolean](#additionalpropertiesdoesnotlookinapplicators1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedNumber](#additionalpropertiesdoesnotlookinapplicators1boxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedString](#additionalpropertiesdoesnotlookinapplicators1boxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedList](#additionalpropertiesdoesnotlookinapplicators1boxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedMap](#additionalpropertiesdoesnotlookinapplicators1boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1](#additionalpropertiesdoesnotlookinapplicators1)
schema class | -| static class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicatorsMapBuilder](#additionalpropertiesdoesnotlookinapplicatorsmapbuilder)
builder for Map payloads | -| static class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicatorsMap](#additionalpropertiesdoesnotlookinapplicatorsmap)
output class for Map payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedVoid](#additionalpropertiesdoesnotlookinapplicators1boxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedBoolean](#additionalpropertiesdoesnotlookinapplicators1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedNumber](#additionalpropertiesdoesnotlookinapplicators1boxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedString](#additionalpropertiesdoesnotlookinapplicators1boxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedList](#additionalpropertiesdoesnotlookinapplicators1boxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1BoxedMap](#additionalpropertiesdoesnotlookinapplicators1boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicators1](#additionalpropertiesdoesnotlookinapplicators1)
schema class | +| class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicatorsMapBuilder](#additionalpropertiesdoesnotlookinapplicatorsmapbuilder)
builder for Map payloads | +| class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalpropertiesDoesNotLookInApplicatorsMap](#additionalpropertiesdoesnotlookinapplicatorsmap)
output class for Map payloads | | sealed interface | [AdditionalpropertiesDoesNotLookInApplicators.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0](#schema0)
schema class | -| static class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0](#schema0)
schema class | +| class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [AdditionalpropertiesDoesNotLookInApplicators.Schema0Map](#schema0map)
output class for Map payloads | | sealed interface | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesDoesNotLookInApplicators.Foo](#foo)
schema class | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesDoesNotLookInApplicators.Foo](#foo)
schema class | | sealed interface | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalPropertiesBoxed](#additionalpropertiesboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | -| static class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalProperties](#additionalproperties)
schema class | +| data class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | +| class | [AdditionalpropertiesDoesNotLookInApplicators.AdditionalProperties](#additionalproperties)
schema class | ## AdditionalpropertiesDoesNotLookInApplicators1Boxed sealed interface AdditionalpropertiesDoesNotLookInApplicators1Boxed
@@ -77,7 +77,7 @@ data class that stores validated null payloads, sealed permits implementation data class AdditionalpropertiesDoesNotLookInApplicators1BoxedBoolean
implements [AdditionalpropertiesDoesNotLookInApplicators1Boxed](#additionalpropertiesdoesnotlookinapplicators1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -254,7 +254,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -448,7 +448,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -551,7 +551,7 @@ sealed interface that stores validated payloads using boxed classes data class AdditionalPropertiesBoxedBoolean
implements [AdditionalPropertiesBoxed](#additionalpropertiesboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithNullValuedInstanceProperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithNullValuedInstanceProperties.md index 8350dd3628a..da8ce45d418 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithNullValuedInstanceProperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithNullValuedInstanceProperties.md @@ -13,13 +13,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstanceProperties1Boxed](#additionalpropertieswithnullvaluedinstanceproperties1boxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstanceProperties1BoxedMap](#additionalpropertieswithnullvaluedinstanceproperties1boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstanceProperties1](#additionalpropertieswithnullvaluedinstanceproperties1)
schema class | -| static class | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstancePropertiesMapBuilder](#additionalpropertieswithnullvaluedinstancepropertiesmapbuilder)
builder for Map payloads | -| static class | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstancePropertiesMap](#additionalpropertieswithnullvaluedinstancepropertiesmap)
output class for Map payloads | +| data class | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstanceProperties1BoxedMap](#additionalpropertieswithnullvaluedinstanceproperties1boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstanceProperties1](#additionalpropertieswithnullvaluedinstanceproperties1)
schema class | +| class | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstancePropertiesMapBuilder](#additionalpropertieswithnullvaluedinstancepropertiesmapbuilder)
builder for Map payloads | +| class | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalpropertiesWithNullValuedInstancePropertiesMap](#additionalpropertieswithnullvaluedinstancepropertiesmap)
output class for Map payloads | | sealed interface | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalPropertiesBoxed](#additionalpropertiesboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalPropertiesBoxedVoid](#additionalpropertiesboxedvoid)
boxed class to store validated null payloads | -| static class | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalProperties](#additionalproperties)
schema class | +| data class | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalPropertiesBoxedVoid](#additionalpropertiesboxedvoid)
boxed class to store validated null payloads | +| class | [AdditionalpropertiesWithNullValuedInstanceProperties.AdditionalProperties](#additionalproperties)
schema class | ## AdditionalpropertiesWithNullValuedInstanceProperties1Boxed sealed interface AdditionalpropertiesWithNullValuedInstanceProperties1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithSchema.md index 5b62b442324..cc198cccc9b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AdditionalpropertiesWithSchema.md @@ -13,29 +13,29 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchema1Boxed](#additionalpropertieswithschema1boxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchema1BoxedMap](#additionalpropertieswithschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchema1](#additionalpropertieswithschema1)
schema class | -| static class | [AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchemaMapBuilder](#additionalpropertieswithschemamapbuilder)
builder for Map payloads | -| static class | [AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchemaMap](#additionalpropertieswithschemamap)
output class for Map payloads | +| data class | [AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchema1BoxedMap](#additionalpropertieswithschema1boxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchema1](#additionalpropertieswithschema1)
schema class | +| class | [AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchemaMapBuilder](#additionalpropertieswithschemamapbuilder)
builder for Map payloads | +| class | [AdditionalpropertiesWithSchema.AdditionalpropertiesWithSchemaMap](#additionalpropertieswithschemamap)
output class for Map payloads | | sealed interface | [AdditionalpropertiesWithSchema.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesWithSchema.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesWithSchema.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesWithSchema.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesWithSchema.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesWithSchema.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesWithSchema.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesWithSchema.Bar](#bar)
schema class | +| data class | [AdditionalpropertiesWithSchema.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesWithSchema.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesWithSchema.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesWithSchema.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesWithSchema.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesWithSchema.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesWithSchema.Bar](#bar)
schema class | | sealed interface | [AdditionalpropertiesWithSchema.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesWithSchema.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [AdditionalpropertiesWithSchema.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [AdditionalpropertiesWithSchema.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [AdditionalpropertiesWithSchema.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [AdditionalpropertiesWithSchema.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [AdditionalpropertiesWithSchema.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [AdditionalpropertiesWithSchema.Foo](#foo)
schema class | +| data class | [AdditionalpropertiesWithSchema.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [AdditionalpropertiesWithSchema.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [AdditionalpropertiesWithSchema.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [AdditionalpropertiesWithSchema.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [AdditionalpropertiesWithSchema.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [AdditionalpropertiesWithSchema.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [AdditionalpropertiesWithSchema.Foo](#foo)
schema class | | sealed interface | [AdditionalpropertiesWithSchema.AdditionalPropertiesBoxed](#additionalpropertiesboxed)
sealed interface for validated payloads | -| record | [AdditionalpropertiesWithSchema.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | -| static class | [AdditionalpropertiesWithSchema.AdditionalProperties](#additionalproperties)
schema class | +| data class | [AdditionalpropertiesWithSchema.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | +| class | [AdditionalpropertiesWithSchema.AdditionalProperties](#additionalproperties)
schema class | ## AdditionalpropertiesWithSchema1Boxed sealed interface AdditionalpropertiesWithSchema1Boxed
@@ -187,7 +187,7 @@ data class that stores validated null payloads, sealed permits implementation data class BarBoxedBoolean
implements [BarBoxed](#barboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -312,7 +312,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -415,7 +415,7 @@ sealed interface that stores validated payloads using boxed classes data class AdditionalPropertiesBoxedBoolean
implements [AdditionalPropertiesBoxed](#additionalpropertiesboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Allof.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Allof.md index 5815520963b..aa43e78fba1 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Allof.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Allof.md @@ -13,39 +13,39 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Allof.Allof1Boxed](#allof1boxed)
sealed interface for validated payloads | -| record | [Allof.Allof1BoxedVoid](#allof1boxedvoid)
boxed class to store validated null payloads | -| record | [Allof.Allof1BoxedBoolean](#allof1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Allof.Allof1BoxedNumber](#allof1boxednumber)
boxed class to store validated Number payloads | -| record | [Allof.Allof1BoxedString](#allof1boxedstring)
boxed class to store validated String payloads | -| record | [Allof.Allof1BoxedList](#allof1boxedlist)
boxed class to store validated List payloads | -| record | [Allof.Allof1BoxedMap](#allof1boxedmap)
boxed class to store validated Map payloads | -| static class | [Allof.Allof1](#allof1)
schema class | +| data class | [Allof.Allof1BoxedVoid](#allof1boxedvoid)
boxed class to store validated null payloads | +| data class | [Allof.Allof1BoxedBoolean](#allof1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Allof.Allof1BoxedNumber](#allof1boxednumber)
boxed class to store validated Number payloads | +| data class | [Allof.Allof1BoxedString](#allof1boxedstring)
boxed class to store validated String payloads | +| data class | [Allof.Allof1BoxedList](#allof1boxedlist)
boxed class to store validated List payloads | +| data class | [Allof.Allof1BoxedMap](#allof1boxedmap)
boxed class to store validated Map payloads | +| class | [Allof.Allof1](#allof1)
schema class | | sealed interface | [Allof.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [Allof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [Allof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Allof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [Allof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [Allof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [Allof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [Allof.Schema1](#schema1)
schema class | -| static class | [Allof.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | -| static class | [Allof.Schema1Map](#schema1map)
output class for Map payloads | +| data class | [Allof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [Allof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Allof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [Allof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [Allof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [Allof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [Allof.Schema1](#schema1)
schema class | +| class | [Allof.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | +| class | [Allof.Schema1Map](#schema1map)
output class for Map payloads | | sealed interface | [Allof.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [Allof.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [Allof.Foo](#foo)
schema class | +| data class | [Allof.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [Allof.Foo](#foo)
schema class | | sealed interface | [Allof.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [Allof.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [Allof.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [Allof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [Allof.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [Allof.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [Allof.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [Allof.Schema0](#schema0)
schema class | -| static class | [Allof.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [Allof.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [Allof.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [Allof.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Allof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [Allof.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [Allof.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [Allof.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [Allof.Schema0](#schema0)
schema class | +| class | [Allof.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [Allof.Schema0Map](#schema0map)
output class for Map payloads | | sealed interface | [Allof.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [Allof.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| static class | [Allof.Bar](#bar)
schema class | +| data class | [Allof.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| class | [Allof.Bar](#bar)
schema class | ## Allof1Boxed sealed interface Allof1Boxed
@@ -80,7 +80,7 @@ data class that stores validated null payloads, sealed permits implementation data class Allof1BoxedBoolean
implements [Allof1Boxed](#allof1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -227,7 +227,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -464,7 +464,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md index 75cfac35745..75215240e81 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofCombinedWithAnyofOneof.md @@ -11,37 +11,37 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1Boxed](#allofcombinedwithanyofoneof1boxed)
sealed interface for validated payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedVoid](#allofcombinedwithanyofoneof1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedBoolean](#allofcombinedwithanyofoneof1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedNumber](#allofcombinedwithanyofoneof1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedString](#allofcombinedwithanyofoneof1boxedstring)
boxed class to store validated String payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedList](#allofcombinedwithanyofoneof1boxedlist)
boxed class to store validated List payloads | -| record | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedMap](#allofcombinedwithanyofoneof1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1](#allofcombinedwithanyofoneof1)
schema class | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedVoid](#allofcombinedwithanyofoneof1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedBoolean](#allofcombinedwithanyofoneof1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedNumber](#allofcombinedwithanyofoneof1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedString](#allofcombinedwithanyofoneof1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedList](#allofcombinedwithanyofoneof1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1BoxedMap](#allofcombinedwithanyofoneof1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofCombinedWithAnyofOneof.AllofCombinedWithAnyofOneof1](#allofcombinedwithanyofoneof1)
schema class | | sealed interface | [AllofCombinedWithAnyofOneof.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofCombinedWithAnyofOneof.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofCombinedWithAnyofOneof.Schema0](#schema0)
schema class | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofCombinedWithAnyofOneof.Schema0](#schema0)
schema class | | sealed interface | [AllofCombinedWithAnyofOneof.Schema01Boxed](#schema01boxed)
sealed interface for validated payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedBoolean](#schema01boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedNumber](#schema01boxednumber)
boxed class to store validated Number payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedString](#schema01boxedstring)
boxed class to store validated String payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedList](#schema01boxedlist)
boxed class to store validated List payloads | -| record | [AllofCombinedWithAnyofOneof.Schema01BoxedMap](#schema01boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofCombinedWithAnyofOneof.Schema01](#schema01)
schema class | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedBoolean](#schema01boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedNumber](#schema01boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedString](#schema01boxedstring)
boxed class to store validated String payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedList](#schema01boxedlist)
boxed class to store validated List payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema01BoxedMap](#schema01boxedmap)
boxed class to store validated Map payloads | +| class | [AllofCombinedWithAnyofOneof.Schema01](#schema01)
schema class | | sealed interface | [AllofCombinedWithAnyofOneof.Schema02Boxed](#schema02boxed)
sealed interface for validated payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedVoid](#schema02boxedvoid)
boxed class to store validated null payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedBoolean](#schema02boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedNumber](#schema02boxednumber)
boxed class to store validated Number payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedString](#schema02boxedstring)
boxed class to store validated String payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedList](#schema02boxedlist)
boxed class to store validated List payloads | -| record | [AllofCombinedWithAnyofOneof.Schema02BoxedMap](#schema02boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofCombinedWithAnyofOneof.Schema02](#schema02)
schema class | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedVoid](#schema02boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedBoolean](#schema02boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedNumber](#schema02boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedString](#schema02boxedstring)
boxed class to store validated String payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedList](#schema02boxedlist)
boxed class to store validated List payloads | +| data class | [AllofCombinedWithAnyofOneof.Schema02BoxedMap](#schema02boxedmap)
boxed class to store validated Map payloads | +| class | [AllofCombinedWithAnyofOneof.Schema02](#schema02)
schema class | ## AllofCombinedWithAnyofOneof1Boxed sealed interface AllofCombinedWithAnyofOneof1Boxed
@@ -76,7 +76,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofCombinedWithAnyofOneof1BoxedBoolean
implements [AllofCombinedWithAnyofOneof1Boxed](#allofcombinedwithanyofoneof1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -225,7 +225,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -372,7 +372,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema01BoxedBoolean
implements [Schema01Boxed](#schema01boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -519,7 +519,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema02BoxedBoolean
implements [Schema02Boxed](#schema02boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md index e0fe3c0cc4f..61cae045ee0 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofSimpleTypes.md @@ -11,29 +11,29 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofSimpleTypes.AllofSimpleTypes1Boxed](#allofsimpletypes1boxed)
sealed interface for validated payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedVoid](#allofsimpletypes1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedBoolean](#allofsimpletypes1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedNumber](#allofsimpletypes1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedString](#allofsimpletypes1boxedstring)
boxed class to store validated String payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedList](#allofsimpletypes1boxedlist)
boxed class to store validated List payloads | -| record | [AllofSimpleTypes.AllofSimpleTypes1BoxedMap](#allofsimpletypes1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofSimpleTypes.AllofSimpleTypes1](#allofsimpletypes1)
schema class | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedVoid](#allofsimpletypes1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedBoolean](#allofsimpletypes1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedNumber](#allofsimpletypes1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedString](#allofsimpletypes1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedList](#allofsimpletypes1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofSimpleTypes.AllofSimpleTypes1BoxedMap](#allofsimpletypes1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofSimpleTypes.AllofSimpleTypes1](#allofsimpletypes1)
schema class | | sealed interface | [AllofSimpleTypes.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AllofSimpleTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofSimpleTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofSimpleTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofSimpleTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofSimpleTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofSimpleTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofSimpleTypes.Schema1](#schema1)
schema class | +| data class | [AllofSimpleTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofSimpleTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofSimpleTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofSimpleTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofSimpleTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofSimpleTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofSimpleTypes.Schema1](#schema1)
schema class | | sealed interface | [AllofSimpleTypes.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofSimpleTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofSimpleTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofSimpleTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofSimpleTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofSimpleTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofSimpleTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofSimpleTypes.Schema0](#schema0)
schema class | +| data class | [AllofSimpleTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofSimpleTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofSimpleTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofSimpleTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofSimpleTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofSimpleTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofSimpleTypes.Schema0](#schema0)
schema class | ## AllofSimpleTypes1Boxed sealed interface AllofSimpleTypes1Boxed
@@ -68,7 +68,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofSimpleTypes1BoxedBoolean
implements [AllofSimpleTypes1Boxed](#allofsimpletypes1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -215,7 +215,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -362,7 +362,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md index c3e2a4219f4..524f0fbafad 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithBaseSchema.md @@ -13,44 +13,44 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofWithBaseSchema.AllofWithBaseSchema1Boxed](#allofwithbaseschema1boxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedVoid](#allofwithbaseschema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedBoolean](#allofwithbaseschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedNumber](#allofwithbaseschema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedString](#allofwithbaseschema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedList](#allofwithbaseschema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedMap](#allofwithbaseschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithBaseSchema.AllofWithBaseSchema1](#allofwithbaseschema1)
schema class | -| static class | [AllofWithBaseSchema.AllofWithBaseSchemaMapBuilder](#allofwithbaseschemamapbuilder)
builder for Map payloads | -| static class | [AllofWithBaseSchema.AllofWithBaseSchemaMap](#allofwithbaseschemamap)
output class for Map payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedVoid](#allofwithbaseschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedBoolean](#allofwithbaseschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedNumber](#allofwithbaseschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedString](#allofwithbaseschema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedList](#allofwithbaseschema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithBaseSchema.AllofWithBaseSchema1BoxedMap](#allofwithbaseschema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithBaseSchema.AllofWithBaseSchema1](#allofwithbaseschema1)
schema class | +| class | [AllofWithBaseSchema.AllofWithBaseSchemaMapBuilder](#allofwithbaseschemamapbuilder)
builder for Map payloads | +| class | [AllofWithBaseSchema.AllofWithBaseSchemaMap](#allofwithbaseschemamap)
output class for Map payloads | | sealed interface | [AllofWithBaseSchema.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| static class | [AllofWithBaseSchema.Bar](#bar)
schema class | +| data class | [AllofWithBaseSchema.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| class | [AllofWithBaseSchema.Bar](#bar)
schema class | | sealed interface | [AllofWithBaseSchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithBaseSchema.Schema1](#schema1)
schema class | -| static class | [AllofWithBaseSchema.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | -| static class | [AllofWithBaseSchema.Schema1Map](#schema1map)
output class for Map payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithBaseSchema.Schema1](#schema1)
schema class | +| class | [AllofWithBaseSchema.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | +| class | [AllofWithBaseSchema.Schema1Map](#schema1map)
output class for Map payloads | | sealed interface | [AllofWithBaseSchema.BazBoxed](#bazboxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.BazBoxedVoid](#bazboxedvoid)
boxed class to store validated null payloads | -| static class | [AllofWithBaseSchema.Baz](#baz)
schema class | +| data class | [AllofWithBaseSchema.BazBoxedVoid](#bazboxedvoid)
boxed class to store validated null payloads | +| class | [AllofWithBaseSchema.Baz](#baz)
schema class | | sealed interface | [AllofWithBaseSchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithBaseSchema.Schema0](#schema0)
schema class | -| static class | [AllofWithBaseSchema.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [AllofWithBaseSchema.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithBaseSchema.Schema0](#schema0)
schema class | +| class | [AllofWithBaseSchema.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [AllofWithBaseSchema.Schema0Map](#schema0map)
output class for Map payloads | | sealed interface | [AllofWithBaseSchema.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [AllofWithBaseSchema.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [AllofWithBaseSchema.Foo](#foo)
schema class | +| data class | [AllofWithBaseSchema.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [AllofWithBaseSchema.Foo](#foo)
schema class | ## AllofWithBaseSchema1Boxed sealed interface AllofWithBaseSchema1Boxed
@@ -85,7 +85,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofWithBaseSchema1BoxedBoolean
implements [AllofWithBaseSchema1Boxed](#allofwithbaseschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -326,7 +326,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -563,7 +563,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md index 8c5d1b108f4..a5af25147e9 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithOneEmptySchema.md @@ -11,21 +11,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1Boxed](#allofwithoneemptyschema1boxed)
sealed interface for validated payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedVoid](#allofwithoneemptyschema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedBoolean](#allofwithoneemptyschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedNumber](#allofwithoneemptyschema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedString](#allofwithoneemptyschema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedList](#allofwithoneemptyschema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedMap](#allofwithoneemptyschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1](#allofwithoneemptyschema1)
schema class | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedVoid](#allofwithoneemptyschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedBoolean](#allofwithoneemptyschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedNumber](#allofwithoneemptyschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedString](#allofwithoneemptyschema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedList](#allofwithoneemptyschema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1BoxedMap](#allofwithoneemptyschema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithOneEmptySchema.AllofWithOneEmptySchema1](#allofwithoneemptyschema1)
schema class | | sealed interface | [AllofWithOneEmptySchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithOneEmptySchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithOneEmptySchema.Schema0](#schema0)
schema class | +| data class | [AllofWithOneEmptySchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithOneEmptySchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithOneEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithOneEmptySchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithOneEmptySchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithOneEmptySchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithOneEmptySchema.Schema0](#schema0)
schema class | ## AllofWithOneEmptySchema1Boxed sealed interface AllofWithOneEmptySchema1Boxed
@@ -60,7 +60,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofWithOneEmptySchema1BoxedBoolean
implements [AllofWithOneEmptySchema1Boxed](#allofwithoneemptyschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -207,7 +207,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md index 26896d1c031..b65be297722 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheFirstEmptySchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1Boxed](#allofwiththefirstemptyschema1boxed)
sealed interface for validated payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedVoid](#allofwiththefirstemptyschema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedBoolean](#allofwiththefirstemptyschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedNumber](#allofwiththefirstemptyschema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedString](#allofwiththefirstemptyschema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedList](#allofwiththefirstemptyschema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedMap](#allofwiththefirstemptyschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1](#allofwiththefirstemptyschema1)
schema class | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedVoid](#allofwiththefirstemptyschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedBoolean](#allofwiththefirstemptyschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedNumber](#allofwiththefirstemptyschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedString](#allofwiththefirstemptyschema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedList](#allofwiththefirstemptyschema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1BoxedMap](#allofwiththefirstemptyschema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTheFirstEmptySchema.AllofWithTheFirstEmptySchema1](#allofwiththefirstemptyschema1)
schema class | | sealed interface | [AllofWithTheFirstEmptySchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AllofWithTheFirstEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| static class | [AllofWithTheFirstEmptySchema.Schema1](#schema1)
schema class | +| data class | [AllofWithTheFirstEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| class | [AllofWithTheFirstEmptySchema.Schema1](#schema1)
schema class | | sealed interface | [AllofWithTheFirstEmptySchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTheFirstEmptySchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTheFirstEmptySchema.Schema0](#schema0)
schema class | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTheFirstEmptySchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTheFirstEmptySchema.Schema0](#schema0)
schema class | ## AllofWithTheFirstEmptySchema1Boxed sealed interface AllofWithTheFirstEmptySchema1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofWithTheFirstEmptySchema1BoxedBoolean
implements [AllofWithTheFirstEmptySchema1Boxed](#allofwiththefirstemptyschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -245,7 +245,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md index 17ba600a8b9..319c3b77fd8 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTheLastEmptySchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1Boxed](#allofwiththelastemptyschema1boxed)
sealed interface for validated payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedVoid](#allofwiththelastemptyschema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedBoolean](#allofwiththelastemptyschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedNumber](#allofwiththelastemptyschema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedString](#allofwiththelastemptyschema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedList](#allofwiththelastemptyschema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedMap](#allofwiththelastemptyschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1](#allofwiththelastemptyschema1)
schema class | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedVoid](#allofwiththelastemptyschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedBoolean](#allofwiththelastemptyschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedNumber](#allofwiththelastemptyschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedString](#allofwiththelastemptyschema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedList](#allofwiththelastemptyschema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1BoxedMap](#allofwiththelastemptyschema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTheLastEmptySchema.AllofWithTheLastEmptySchema1](#allofwiththelastemptyschema1)
schema class | | sealed interface | [AllofWithTheLastEmptySchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTheLastEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTheLastEmptySchema.Schema1](#schema1)
schema class | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTheLastEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTheLastEmptySchema.Schema1](#schema1)
schema class | | sealed interface | [AllofWithTheLastEmptySchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofWithTheLastEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [AllofWithTheLastEmptySchema.Schema0](#schema0)
schema class | +| data class | [AllofWithTheLastEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [AllofWithTheLastEmptySchema.Schema0](#schema0)
schema class | ## AllofWithTheLastEmptySchema1Boxed sealed interface AllofWithTheLastEmptySchema1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofWithTheLastEmptySchema1BoxedBoolean
implements [AllofWithTheLastEmptySchema1Boxed](#allofwiththelastemptyschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md index ed872f52fe1..f4babda1127 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AllofWithTwoEmptySchemas.md @@ -11,29 +11,29 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1Boxed](#allofwithtwoemptyschemas1boxed)
sealed interface for validated payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedVoid](#allofwithtwoemptyschemas1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedBoolean](#allofwithtwoemptyschemas1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedNumber](#allofwithtwoemptyschemas1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedString](#allofwithtwoemptyschemas1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedList](#allofwithtwoemptyschemas1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedMap](#allofwithtwoemptyschemas1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1](#allofwithtwoemptyschemas1)
schema class | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedVoid](#allofwithtwoemptyschemas1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedBoolean](#allofwithtwoemptyschemas1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedNumber](#allofwithtwoemptyschemas1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedString](#allofwithtwoemptyschemas1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedList](#allofwithtwoemptyschemas1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1BoxedMap](#allofwithtwoemptyschemas1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTwoEmptySchemas.AllofWithTwoEmptySchemas1](#allofwithtwoemptyschemas1)
schema class | | sealed interface | [AllofWithTwoEmptySchemas.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTwoEmptySchemas.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTwoEmptySchemas.Schema1](#schema1)
schema class | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTwoEmptySchemas.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTwoEmptySchemas.Schema1](#schema1)
schema class | | sealed interface | [AllofWithTwoEmptySchemas.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AllofWithTwoEmptySchemas.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AllofWithTwoEmptySchemas.Schema0](#schema0)
schema class | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AllofWithTwoEmptySchemas.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AllofWithTwoEmptySchemas.Schema0](#schema0)
schema class | ## AllofWithTwoEmptySchemas1Boxed sealed interface AllofWithTwoEmptySchemas1Boxed
@@ -68,7 +68,7 @@ data class that stores validated null payloads, sealed permits implementation data class AllofWithTwoEmptySchemas1BoxedBoolean
implements [AllofWithTwoEmptySchemas1Boxed](#allofwithtwoemptyschemas1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -215,7 +215,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -340,7 +340,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Anyof.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Anyof.md index 40574b1aa2c..5249f69696b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Anyof.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Anyof.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Anyof.Anyof1Boxed](#anyof1boxed)
sealed interface for validated payloads | -| record | [Anyof.Anyof1BoxedVoid](#anyof1boxedvoid)
boxed class to store validated null payloads | -| record | [Anyof.Anyof1BoxedBoolean](#anyof1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Anyof.Anyof1BoxedNumber](#anyof1boxednumber)
boxed class to store validated Number payloads | -| record | [Anyof.Anyof1BoxedString](#anyof1boxedstring)
boxed class to store validated String payloads | -| record | [Anyof.Anyof1BoxedList](#anyof1boxedlist)
boxed class to store validated List payloads | -| record | [Anyof.Anyof1BoxedMap](#anyof1boxedmap)
boxed class to store validated Map payloads | -| static class | [Anyof.Anyof1](#anyof1)
schema class | +| data class | [Anyof.Anyof1BoxedVoid](#anyof1boxedvoid)
boxed class to store validated null payloads | +| data class | [Anyof.Anyof1BoxedBoolean](#anyof1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Anyof.Anyof1BoxedNumber](#anyof1boxednumber)
boxed class to store validated Number payloads | +| data class | [Anyof.Anyof1BoxedString](#anyof1boxedstring)
boxed class to store validated String payloads | +| data class | [Anyof.Anyof1BoxedList](#anyof1boxedlist)
boxed class to store validated List payloads | +| data class | [Anyof.Anyof1BoxedMap](#anyof1boxedmap)
boxed class to store validated Map payloads | +| class | [Anyof.Anyof1](#anyof1)
schema class | | sealed interface | [Anyof.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [Anyof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [Anyof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Anyof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [Anyof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [Anyof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [Anyof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [Anyof.Schema1](#schema1)
schema class | +| data class | [Anyof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [Anyof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Anyof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [Anyof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [Anyof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [Anyof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [Anyof.Schema1](#schema1)
schema class | | sealed interface | [Anyof.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [Anyof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [Anyof.Schema0](#schema0)
schema class | +| data class | [Anyof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [Anyof.Schema0](#schema0)
schema class | ## Anyof1Boxed sealed interface Anyof1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class Anyof1BoxedBoolean
implements [Anyof1Boxed](#anyof1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md index accce6dccfa..8c91a23d6a0 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofComplexTypes.md @@ -13,39 +13,39 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AnyofComplexTypes.AnyofComplexTypes1Boxed](#anyofcomplextypes1boxed)
sealed interface for validated payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedVoid](#anyofcomplextypes1boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedBoolean](#anyofcomplextypes1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedNumber](#anyofcomplextypes1boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedString](#anyofcomplextypes1boxedstring)
boxed class to store validated String payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedList](#anyofcomplextypes1boxedlist)
boxed class to store validated List payloads | -| record | [AnyofComplexTypes.AnyofComplexTypes1BoxedMap](#anyofcomplextypes1boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofComplexTypes.AnyofComplexTypes1](#anyofcomplextypes1)
schema class | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedVoid](#anyofcomplextypes1boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedBoolean](#anyofcomplextypes1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedNumber](#anyofcomplextypes1boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedString](#anyofcomplextypes1boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedList](#anyofcomplextypes1boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofComplexTypes.AnyofComplexTypes1BoxedMap](#anyofcomplextypes1boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofComplexTypes.AnyofComplexTypes1](#anyofcomplextypes1)
schema class | | sealed interface | [AnyofComplexTypes.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AnyofComplexTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofComplexTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofComplexTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofComplexTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AnyofComplexTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AnyofComplexTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofComplexTypes.Schema1](#schema1)
schema class | -| static class | [AnyofComplexTypes.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | -| static class | [AnyofComplexTypes.Schema1Map](#schema1map)
output class for Map payloads | +| data class | [AnyofComplexTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofComplexTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofComplexTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofComplexTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofComplexTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofComplexTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofComplexTypes.Schema1](#schema1)
schema class | +| class | [AnyofComplexTypes.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | +| class | [AnyofComplexTypes.Schema1Map](#schema1map)
output class for Map payloads | | sealed interface | [AnyofComplexTypes.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [AnyofComplexTypes.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [AnyofComplexTypes.Foo](#foo)
schema class | +| data class | [AnyofComplexTypes.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [AnyofComplexTypes.Foo](#foo)
schema class | | sealed interface | [AnyofComplexTypes.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AnyofComplexTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofComplexTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofComplexTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofComplexTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AnyofComplexTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AnyofComplexTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofComplexTypes.Schema0](#schema0)
schema class | -| static class | [AnyofComplexTypes.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [AnyofComplexTypes.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [AnyofComplexTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofComplexTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofComplexTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofComplexTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofComplexTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofComplexTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofComplexTypes.Schema0](#schema0)
schema class | +| class | [AnyofComplexTypes.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [AnyofComplexTypes.Schema0Map](#schema0map)
output class for Map payloads | | sealed interface | [AnyofComplexTypes.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [AnyofComplexTypes.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| static class | [AnyofComplexTypes.Bar](#bar)
schema class | +| data class | [AnyofComplexTypes.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| class | [AnyofComplexTypes.Bar](#bar)
schema class | ## AnyofComplexTypes1Boxed sealed interface AnyofComplexTypes1Boxed
@@ -80,7 +80,7 @@ data class that stores validated null payloads, sealed permits implementation data class AnyofComplexTypes1BoxedBoolean
implements [AnyofComplexTypes1Boxed](#anyofcomplextypes1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -227,7 +227,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -464,7 +464,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md index a42940a33cf..1ff9277b898 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithBaseSchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AnyofWithBaseSchema.AnyofWithBaseSchema1Boxed](#anyofwithbaseschema1boxed)
sealed interface for validated payloads | -| record | [AnyofWithBaseSchema.AnyofWithBaseSchema1BoxedString](#anyofwithbaseschema1boxedstring)
boxed class to store validated String payloads | -| static class | [AnyofWithBaseSchema.AnyofWithBaseSchema1](#anyofwithbaseschema1)
schema class | +| data class | [AnyofWithBaseSchema.AnyofWithBaseSchema1BoxedString](#anyofwithbaseschema1boxedstring)
boxed class to store validated String payloads | +| class | [AnyofWithBaseSchema.AnyofWithBaseSchema1](#anyofwithbaseschema1)
schema class | | sealed interface | [AnyofWithBaseSchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AnyofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofWithBaseSchema.Schema1](#schema1)
schema class | +| data class | [AnyofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofWithBaseSchema.Schema1](#schema1)
schema class | | sealed interface | [AnyofWithBaseSchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [AnyofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofWithBaseSchema.Schema0](#schema0)
schema class | +| data class | [AnyofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofWithBaseSchema.Schema0](#schema0)
schema class | ## AnyofWithBaseSchema1Boxed sealed interface AnyofWithBaseSchema1Boxed
@@ -126,7 +126,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -273,7 +273,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md index 4dc4984ad15..3f9c0ed2f09 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/AnyofWithOneEmptySchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1Boxed](#anyofwithoneemptyschema1boxed)
sealed interface for validated payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedVoid](#anyofwithoneemptyschema1boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedBoolean](#anyofwithoneemptyschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedNumber](#anyofwithoneemptyschema1boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedString](#anyofwithoneemptyschema1boxedstring)
boxed class to store validated String payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedList](#anyofwithoneemptyschema1boxedlist)
boxed class to store validated List payloads | -| record | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedMap](#anyofwithoneemptyschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1](#anyofwithoneemptyschema1)
schema class | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedVoid](#anyofwithoneemptyschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedBoolean](#anyofwithoneemptyschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedNumber](#anyofwithoneemptyschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedString](#anyofwithoneemptyschema1boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedList](#anyofwithoneemptyschema1boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1BoxedMap](#anyofwithoneemptyschema1boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofWithOneEmptySchema.AnyofWithOneEmptySchema1](#anyofwithoneemptyschema1)
schema class | | sealed interface | [AnyofWithOneEmptySchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [AnyofWithOneEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [AnyofWithOneEmptySchema.Schema1](#schema1)
schema class | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [AnyofWithOneEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [AnyofWithOneEmptySchema.Schema1](#schema1)
schema class | | sealed interface | [AnyofWithOneEmptySchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [AnyofWithOneEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [AnyofWithOneEmptySchema.Schema0](#schema0)
schema class | +| data class | [AnyofWithOneEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [AnyofWithOneEmptySchema.Schema0](#schema0)
schema class | ## AnyofWithOneEmptySchema1Boxed sealed interface AnyofWithOneEmptySchema1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class AnyofWithOneEmptySchema1BoxedBoolean
implements [AnyofWithOneEmptySchema1Boxed](#anyofwithoneemptyschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md index f96565a4be4..f53605df20f 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ArrayTypeMatchesArrays.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ArrayTypeMatchesArrays.ArrayTypeMatchesArrays1Boxed](#arraytypematchesarrays1boxed)
sealed interface for validated payloads | -| record | [ArrayTypeMatchesArrays.ArrayTypeMatchesArrays1BoxedList](#arraytypematchesarrays1boxedlist)
boxed class to store validated List payloads | -| static class | [ArrayTypeMatchesArrays.ArrayTypeMatchesArrays1](#arraytypematchesarrays1)
schema class | +| data class | [ArrayTypeMatchesArrays.ArrayTypeMatchesArrays1BoxedList](#arraytypematchesarrays1boxedlist)
boxed class to store validated List payloads | +| class | [ArrayTypeMatchesArrays.ArrayTypeMatchesArrays1](#arraytypematchesarrays1)
schema class | ## ArrayTypeMatchesArrays1Boxed sealed interface ArrayTypeMatchesArrays1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BooleanTypeMatchesBooleans.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BooleanTypeMatchesBooleans.md index e64f7f92c4a..344757cb4d2 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BooleanTypeMatchesBooleans.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BooleanTypeMatchesBooleans.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [BooleanTypeMatchesBooleans.BooleanTypeMatchesBooleans1Boxed](#booleantypematchesbooleans1boxed)
sealed interface for validated payloads | -| record | [BooleanTypeMatchesBooleans.BooleanTypeMatchesBooleans1BoxedBoolean](#booleantypematchesbooleans1boxedboolean)
boxed class to store validated boolean payloads | -| static class | [BooleanTypeMatchesBooleans.BooleanTypeMatchesBooleans1](#booleantypematchesbooleans1)
schema class | +| data class | [BooleanTypeMatchesBooleans.BooleanTypeMatchesBooleans1BoxedBoolean](#booleantypematchesbooleans1boxedboolean)
boxed class to store validated boolean payloads | +| class | [BooleanTypeMatchesBooleans.BooleanTypeMatchesBooleans1](#booleantypematchesbooleans1)
schema class | ## BooleanTypeMatchesBooleans1Boxed sealed interface BooleanTypeMatchesBooleans1Boxed
@@ -25,7 +25,7 @@ sealed interface that stores validated payloads using boxed classes data class BooleanTypeMatchesBooleans1BoxedBoolean
implements [BooleanTypeMatchesBooleans1Boxed](#booleantypematchesbooleans1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByInt.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByInt.md index 18177758e2d..a1519c07e7d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByInt.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByInt.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ByInt.ByInt1Boxed](#byint1boxed)
sealed interface for validated payloads | -| record | [ByInt.ByInt1BoxedVoid](#byint1boxedvoid)
boxed class to store validated null payloads | -| record | [ByInt.ByInt1BoxedBoolean](#byint1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ByInt.ByInt1BoxedNumber](#byint1boxednumber)
boxed class to store validated Number payloads | -| record | [ByInt.ByInt1BoxedString](#byint1boxedstring)
boxed class to store validated String payloads | -| record | [ByInt.ByInt1BoxedList](#byint1boxedlist)
boxed class to store validated List payloads | -| record | [ByInt.ByInt1BoxedMap](#byint1boxedmap)
boxed class to store validated Map payloads | -| static class | [ByInt.ByInt1](#byint1)
schema class | +| data class | [ByInt.ByInt1BoxedVoid](#byint1boxedvoid)
boxed class to store validated null payloads | +| data class | [ByInt.ByInt1BoxedBoolean](#byint1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ByInt.ByInt1BoxedNumber](#byint1boxednumber)
boxed class to store validated Number payloads | +| data class | [ByInt.ByInt1BoxedString](#byint1boxedstring)
boxed class to store validated String payloads | +| data class | [ByInt.ByInt1BoxedList](#byint1boxedlist)
boxed class to store validated List payloads | +| data class | [ByInt.ByInt1BoxedMap](#byint1boxedmap)
boxed class to store validated Map payloads | +| class | [ByInt.ByInt1](#byint1)
schema class | ## ByInt1Boxed sealed interface ByInt1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class ByInt1BoxedBoolean
implements [ByInt1Boxed](#byint1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByNumber.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByNumber.md index 176534986d0..d3ecbf42a82 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByNumber.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ByNumber.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ByNumber.ByNumber1Boxed](#bynumber1boxed)
sealed interface for validated payloads | -| record | [ByNumber.ByNumber1BoxedVoid](#bynumber1boxedvoid)
boxed class to store validated null payloads | -| record | [ByNumber.ByNumber1BoxedBoolean](#bynumber1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ByNumber.ByNumber1BoxedNumber](#bynumber1boxednumber)
boxed class to store validated Number payloads | -| record | [ByNumber.ByNumber1BoxedString](#bynumber1boxedstring)
boxed class to store validated String payloads | -| record | [ByNumber.ByNumber1BoxedList](#bynumber1boxedlist)
boxed class to store validated List payloads | -| record | [ByNumber.ByNumber1BoxedMap](#bynumber1boxedmap)
boxed class to store validated Map payloads | -| static class | [ByNumber.ByNumber1](#bynumber1)
schema class | +| data class | [ByNumber.ByNumber1BoxedVoid](#bynumber1boxedvoid)
boxed class to store validated null payloads | +| data class | [ByNumber.ByNumber1BoxedBoolean](#bynumber1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ByNumber.ByNumber1BoxedNumber](#bynumber1boxednumber)
boxed class to store validated Number payloads | +| data class | [ByNumber.ByNumber1BoxedString](#bynumber1boxedstring)
boxed class to store validated String payloads | +| data class | [ByNumber.ByNumber1BoxedList](#bynumber1boxedlist)
boxed class to store validated List payloads | +| data class | [ByNumber.ByNumber1BoxedMap](#bynumber1boxedmap)
boxed class to store validated Map payloads | +| class | [ByNumber.ByNumber1](#bynumber1)
schema class | ## ByNumber1Boxed sealed interface ByNumber1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class ByNumber1BoxedBoolean
implements [ByNumber1Boxed](#bynumber1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BySmallNumber.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BySmallNumber.md index 6fdaee75920..e2e2cd88e3b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BySmallNumber.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/BySmallNumber.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [BySmallNumber.BySmallNumber1Boxed](#bysmallnumber1boxed)
sealed interface for validated payloads | -| record | [BySmallNumber.BySmallNumber1BoxedVoid](#bysmallnumber1boxedvoid)
boxed class to store validated null payloads | -| record | [BySmallNumber.BySmallNumber1BoxedBoolean](#bysmallnumber1boxedboolean)
boxed class to store validated boolean payloads | -| record | [BySmallNumber.BySmallNumber1BoxedNumber](#bysmallnumber1boxednumber)
boxed class to store validated Number payloads | -| record | [BySmallNumber.BySmallNumber1BoxedString](#bysmallnumber1boxedstring)
boxed class to store validated String payloads | -| record | [BySmallNumber.BySmallNumber1BoxedList](#bysmallnumber1boxedlist)
boxed class to store validated List payloads | -| record | [BySmallNumber.BySmallNumber1BoxedMap](#bysmallnumber1boxedmap)
boxed class to store validated Map payloads | -| static class | [BySmallNumber.BySmallNumber1](#bysmallnumber1)
schema class | +| data class | [BySmallNumber.BySmallNumber1BoxedVoid](#bysmallnumber1boxedvoid)
boxed class to store validated null payloads | +| data class | [BySmallNumber.BySmallNumber1BoxedBoolean](#bysmallnumber1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [BySmallNumber.BySmallNumber1BoxedNumber](#bysmallnumber1boxednumber)
boxed class to store validated Number payloads | +| data class | [BySmallNumber.BySmallNumber1BoxedString](#bysmallnumber1boxedstring)
boxed class to store validated String payloads | +| data class | [BySmallNumber.BySmallNumber1BoxedList](#bysmallnumber1boxedlist)
boxed class to store validated List payloads | +| data class | [BySmallNumber.BySmallNumber1BoxedMap](#bysmallnumber1boxedmap)
boxed class to store validated Map payloads | +| class | [BySmallNumber.BySmallNumber1](#bysmallnumber1)
schema class | ## BySmallNumber1Boxed sealed interface BySmallNumber1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class BySmallNumber1BoxedBoolean
implements [BySmallNumber1Boxed](#bysmallnumber1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ConstNulCharactersInStrings.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ConstNulCharactersInStrings.md index dbfa4fd595e..d52a481701b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ConstNulCharactersInStrings.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ConstNulCharactersInStrings.md @@ -12,13 +12,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1Boxed](#constnulcharactersinstrings1boxed)
sealed interface for validated payloads | -| record | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedVoid](#constnulcharactersinstrings1boxedvoid)
boxed class to store validated null payloads | -| record | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedBoolean](#constnulcharactersinstrings1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedNumber](#constnulcharactersinstrings1boxednumber)
boxed class to store validated Number payloads | -| record | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedString](#constnulcharactersinstrings1boxedstring)
boxed class to store validated String payloads | -| record | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedList](#constnulcharactersinstrings1boxedlist)
boxed class to store validated List payloads | -| record | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedMap](#constnulcharactersinstrings1boxedmap)
boxed class to store validated Map payloads | -| static class | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1](#constnulcharactersinstrings1)
schema class | +| data class | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedVoid](#constnulcharactersinstrings1boxedvoid)
boxed class to store validated null payloads | +| data class | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedBoolean](#constnulcharactersinstrings1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedNumber](#constnulcharactersinstrings1boxednumber)
boxed class to store validated Number payloads | +| data class | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedString](#constnulcharactersinstrings1boxedstring)
boxed class to store validated String payloads | +| data class | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedList](#constnulcharactersinstrings1boxedlist)
boxed class to store validated List payloads | +| data class | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1BoxedMap](#constnulcharactersinstrings1boxedmap)
boxed class to store validated Map payloads | +| class | [ConstNulCharactersInStrings.ConstNulCharactersInStrings1](#constnulcharactersinstrings1)
schema class | | enum | [ConstNulCharactersInStrings.StringConstNulCharactersInStringsConst](#stringconstnulcharactersinstringsconst)
String enum | ## ConstNulCharactersInStrings1Boxed @@ -54,7 +54,7 @@ data class that stores validated null payloads, sealed permits implementation data class ConstNulCharactersInStrings1BoxedBoolean
implements [ConstNulCharactersInStrings1Boxed](#constnulcharactersinstrings1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsKeywordValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsKeywordValidation.md index 75ebabb2cb6..1bce72296ec 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsKeywordValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsKeywordValidation.md @@ -11,21 +11,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ContainsKeywordValidation.ContainsKeywordValidation1Boxed](#containskeywordvalidation1boxed)
sealed interface for validated payloads | -| record | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedVoid](#containskeywordvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedBoolean](#containskeywordvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedNumber](#containskeywordvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedString](#containskeywordvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedList](#containskeywordvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedMap](#containskeywordvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [ContainsKeywordValidation.ContainsKeywordValidation1](#containskeywordvalidation1)
schema class | +| data class | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedVoid](#containskeywordvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedBoolean](#containskeywordvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedNumber](#containskeywordvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedString](#containskeywordvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedList](#containskeywordvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [ContainsKeywordValidation.ContainsKeywordValidation1BoxedMap](#containskeywordvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [ContainsKeywordValidation.ContainsKeywordValidation1](#containskeywordvalidation1)
schema class | | sealed interface | [ContainsKeywordValidation.ContainsBoxed](#containsboxed)
sealed interface for validated payloads | -| record | [ContainsKeywordValidation.ContainsBoxedVoid](#containsboxedvoid)
boxed class to store validated null payloads | -| record | [ContainsKeywordValidation.ContainsBoxedBoolean](#containsboxedboolean)
boxed class to store validated boolean payloads | -| record | [ContainsKeywordValidation.ContainsBoxedNumber](#containsboxednumber)
boxed class to store validated Number payloads | -| record | [ContainsKeywordValidation.ContainsBoxedString](#containsboxedstring)
boxed class to store validated String payloads | -| record | [ContainsKeywordValidation.ContainsBoxedList](#containsboxedlist)
boxed class to store validated List payloads | -| record | [ContainsKeywordValidation.ContainsBoxedMap](#containsboxedmap)
boxed class to store validated Map payloads | -| static class | [ContainsKeywordValidation.Contains](#contains)
schema class | +| data class | [ContainsKeywordValidation.ContainsBoxedVoid](#containsboxedvoid)
boxed class to store validated null payloads | +| data class | [ContainsKeywordValidation.ContainsBoxedBoolean](#containsboxedboolean)
boxed class to store validated boolean payloads | +| data class | [ContainsKeywordValidation.ContainsBoxedNumber](#containsboxednumber)
boxed class to store validated Number payloads | +| data class | [ContainsKeywordValidation.ContainsBoxedString](#containsboxedstring)
boxed class to store validated String payloads | +| data class | [ContainsKeywordValidation.ContainsBoxedList](#containsboxedlist)
boxed class to store validated List payloads | +| data class | [ContainsKeywordValidation.ContainsBoxedMap](#containsboxedmap)
boxed class to store validated Map payloads | +| class | [ContainsKeywordValidation.Contains](#contains)
schema class | ## ContainsKeywordValidation1Boxed sealed interface ContainsKeywordValidation1Boxed
@@ -60,7 +60,7 @@ data class that stores validated null payloads, sealed permits implementation data class ContainsKeywordValidation1BoxedBoolean
implements [ContainsKeywordValidation1Boxed](#containskeywordvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -207,7 +207,7 @@ data class that stores validated null payloads, sealed permits implementation data class ContainsBoxedBoolean
implements [ContainsBoxed](#containsboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsWithNullInstanceElements.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsWithNullInstanceElements.md index 9fcebd10188..063afd178d4 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsWithNullInstanceElements.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ContainsWithNullInstanceElements.md @@ -11,16 +11,16 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1Boxed](#containswithnullinstanceelements1boxed)
sealed interface for validated payloads | -| record | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedVoid](#containswithnullinstanceelements1boxedvoid)
boxed class to store validated null payloads | -| record | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedBoolean](#containswithnullinstanceelements1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedNumber](#containswithnullinstanceelements1boxednumber)
boxed class to store validated Number payloads | -| record | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedString](#containswithnullinstanceelements1boxedstring)
boxed class to store validated String payloads | -| record | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedList](#containswithnullinstanceelements1boxedlist)
boxed class to store validated List payloads | -| record | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedMap](#containswithnullinstanceelements1boxedmap)
boxed class to store validated Map payloads | -| static class | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1](#containswithnullinstanceelements1)
schema class | +| data class | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedVoid](#containswithnullinstanceelements1boxedvoid)
boxed class to store validated null payloads | +| data class | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedBoolean](#containswithnullinstanceelements1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedNumber](#containswithnullinstanceelements1boxednumber)
boxed class to store validated Number payloads | +| data class | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedString](#containswithnullinstanceelements1boxedstring)
boxed class to store validated String payloads | +| data class | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedList](#containswithnullinstanceelements1boxedlist)
boxed class to store validated List payloads | +| data class | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1BoxedMap](#containswithnullinstanceelements1boxedmap)
boxed class to store validated Map payloads | +| class | [ContainsWithNullInstanceElements.ContainsWithNullInstanceElements1](#containswithnullinstanceelements1)
schema class | | sealed interface | [ContainsWithNullInstanceElements.ContainsBoxed](#containsboxed)
sealed interface for validated payloads | -| record | [ContainsWithNullInstanceElements.ContainsBoxedVoid](#containsboxedvoid)
boxed class to store validated null payloads | -| static class | [ContainsWithNullInstanceElements.Contains](#contains)
schema class | +| data class | [ContainsWithNullInstanceElements.ContainsBoxedVoid](#containsboxedvoid)
boxed class to store validated null payloads | +| class | [ContainsWithNullInstanceElements.Contains](#contains)
schema class | ## ContainsWithNullInstanceElements1Boxed sealed interface ContainsWithNullInstanceElements1Boxed
@@ -55,7 +55,7 @@ data class that stores validated null payloads, sealed permits implementation data class ContainsWithNullInstanceElements1BoxedBoolean
implements [ContainsWithNullInstanceElements1Boxed](#containswithnullinstanceelements1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateFormat.md index cc689d3276d..ce1a01cf9c5 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [DateFormat.DateFormat1Boxed](#dateformat1boxed)
sealed interface for validated payloads | -| record | [DateFormat.DateFormat1BoxedVoid](#dateformat1boxedvoid)
boxed class to store validated null payloads | -| record | [DateFormat.DateFormat1BoxedBoolean](#dateformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [DateFormat.DateFormat1BoxedNumber](#dateformat1boxednumber)
boxed class to store validated Number payloads | -| record | [DateFormat.DateFormat1BoxedString](#dateformat1boxedstring)
boxed class to store validated String payloads | -| record | [DateFormat.DateFormat1BoxedList](#dateformat1boxedlist)
boxed class to store validated List payloads | -| record | [DateFormat.DateFormat1BoxedMap](#dateformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [DateFormat.DateFormat1](#dateformat1)
schema class | +| data class | [DateFormat.DateFormat1BoxedVoid](#dateformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [DateFormat.DateFormat1BoxedBoolean](#dateformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [DateFormat.DateFormat1BoxedNumber](#dateformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [DateFormat.DateFormat1BoxedString](#dateformat1boxedstring)
boxed class to store validated String payloads | +| data class | [DateFormat.DateFormat1BoxedList](#dateformat1boxedlist)
boxed class to store validated List payloads | +| data class | [DateFormat.DateFormat1BoxedMap](#dateformat1boxedmap)
boxed class to store validated Map payloads | +| class | [DateFormat.DateFormat1](#dateformat1)
schema class | ## DateFormat1Boxed sealed interface DateFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class DateFormat1BoxedBoolean
implements [DateFormat1Boxed](#dateformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md index dc2e42c4cde..beefd4d6f22 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DateTimeFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [DateTimeFormat.DateTimeFormat1Boxed](#datetimeformat1boxed)
sealed interface for validated payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedVoid](#datetimeformat1boxedvoid)
boxed class to store validated null payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedBoolean](#datetimeformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedNumber](#datetimeformat1boxednumber)
boxed class to store validated Number payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedString](#datetimeformat1boxedstring)
boxed class to store validated String payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedList](#datetimeformat1boxedlist)
boxed class to store validated List payloads | -| record | [DateTimeFormat.DateTimeFormat1BoxedMap](#datetimeformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [DateTimeFormat.DateTimeFormat1](#datetimeformat1)
schema class | +| data class | [DateTimeFormat.DateTimeFormat1BoxedVoid](#datetimeformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [DateTimeFormat.DateTimeFormat1BoxedBoolean](#datetimeformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [DateTimeFormat.DateTimeFormat1BoxedNumber](#datetimeformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [DateTimeFormat.DateTimeFormat1BoxedString](#datetimeformat1boxedstring)
boxed class to store validated String payloads | +| data class | [DateTimeFormat.DateTimeFormat1BoxedList](#datetimeformat1boxedlist)
boxed class to store validated List payloads | +| data class | [DateTimeFormat.DateTimeFormat1BoxedMap](#datetimeformat1boxedmap)
boxed class to store validated Map payloads | +| class | [DateTimeFormat.DateTimeFormat1](#datetimeformat1)
schema class | ## DateTimeFormat1Boxed sealed interface DateTimeFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class DateTimeFormat1BoxedBoolean
implements [DateTimeFormat1Boxed](#datetimeformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependenciesWithEscapedCharacters.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependenciesWithEscapedCharacters.md index 9e00432d5b1..6cf5740022d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependenciesWithEscapedCharacters.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependenciesWithEscapedCharacters.md @@ -13,31 +13,31 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1Boxed](#dependentschemasdependencieswithescapedcharacters1boxed)
sealed interface for validated payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedVoid](#dependentschemasdependencieswithescapedcharacters1boxedvoid)
boxed class to store validated null payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedBoolean](#dependentschemasdependencieswithescapedcharacters1boxedboolean)
boxed class to store validated boolean payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedNumber](#dependentschemasdependencieswithescapedcharacters1boxednumber)
boxed class to store validated Number payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedString](#dependentschemasdependencieswithescapedcharacters1boxedstring)
boxed class to store validated String payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedList](#dependentschemasdependencieswithescapedcharacters1boxedlist)
boxed class to store validated List payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedMap](#dependentschemasdependencieswithescapedcharacters1boxedmap)
boxed class to store validated Map payloads | -| static class | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1](#dependentschemasdependencieswithescapedcharacters1)
schema class | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedVoid](#dependentschemasdependencieswithescapedcharacters1boxedvoid)
boxed class to store validated null payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedBoolean](#dependentschemasdependencieswithescapedcharacters1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedNumber](#dependentschemasdependencieswithescapedcharacters1boxednumber)
boxed class to store validated Number payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedString](#dependentschemasdependencieswithescapedcharacters1boxedstring)
boxed class to store validated String payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedList](#dependentschemasdependencieswithescapedcharacters1boxedlist)
boxed class to store validated List payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1BoxedMap](#dependentschemasdependencieswithescapedcharacters1boxedmap)
boxed class to store validated Map payloads | +| class | [DependentSchemasDependenciesWithEscapedCharacters.DependentSchemasDependenciesWithEscapedCharacters1](#dependentschemasdependencieswithescapedcharacters1)
schema class | | sealed interface | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxed](#foobarboxed)
sealed interface for validated payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedVoid](#foobarboxedvoid)
boxed class to store validated null payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedBoolean](#foobarboxedboolean)
boxed class to store validated boolean payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedNumber](#foobarboxednumber)
boxed class to store validated Number payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedString](#foobarboxedstring)
boxed class to store validated String payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedList](#foobarboxedlist)
boxed class to store validated List payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedMap](#foobarboxedmap)
boxed class to store validated Map payloads | -| static class | [DependentSchemasDependenciesWithEscapedCharacters.Foobar](#foobar)
schema class | -| static class | [DependentSchemasDependenciesWithEscapedCharacters.FoobarMapBuilder](#foobarmapbuilder)
builder for Map payloads | -| static class | [DependentSchemasDependenciesWithEscapedCharacters.FoobarMap](#foobarmap)
output class for Map payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedVoid](#foobarboxedvoid)
boxed class to store validated null payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedBoolean](#foobarboxedboolean)
boxed class to store validated boolean payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedNumber](#foobarboxednumber)
boxed class to store validated Number payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedString](#foobarboxedstring)
boxed class to store validated String payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedList](#foobarboxedlist)
boxed class to store validated List payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FoobarBoxedMap](#foobarboxedmap)
boxed class to store validated Map payloads | +| class | [DependentSchemasDependenciesWithEscapedCharacters.Foobar](#foobar)
schema class | +| class | [DependentSchemasDependenciesWithEscapedCharacters.FoobarMapBuilder](#foobarmapbuilder)
builder for Map payloads | +| class | [DependentSchemasDependenciesWithEscapedCharacters.FoobarMap](#foobarmap)
output class for Map payloads | | sealed interface | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxed](#footbarboxed)
sealed interface for validated payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedVoid](#footbarboxedvoid)
boxed class to store validated null payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedBoolean](#footbarboxedboolean)
boxed class to store validated boolean payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedNumber](#footbarboxednumber)
boxed class to store validated Number payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedString](#footbarboxedstring)
boxed class to store validated String payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedList](#footbarboxedlist)
boxed class to store validated List payloads | -| record | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedMap](#footbarboxedmap)
boxed class to store validated Map payloads | -| static class | [DependentSchemasDependenciesWithEscapedCharacters.Footbar](#footbar)
schema class | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedVoid](#footbarboxedvoid)
boxed class to store validated null payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedBoolean](#footbarboxedboolean)
boxed class to store validated boolean payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedNumber](#footbarboxednumber)
boxed class to store validated Number payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedString](#footbarboxedstring)
boxed class to store validated String payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedList](#footbarboxedlist)
boxed class to store validated List payloads | +| data class | [DependentSchemasDependenciesWithEscapedCharacters.FootbarBoxedMap](#footbarboxedmap)
boxed class to store validated Map payloads | +| class | [DependentSchemasDependenciesWithEscapedCharacters.Footbar](#footbar)
schema class | ## DependentSchemasDependenciesWithEscapedCharacters1Boxed sealed interface DependentSchemasDependenciesWithEscapedCharacters1Boxed
@@ -72,7 +72,7 @@ data class that stores validated null payloads, sealed permits implementation data class DependentSchemasDependenciesWithEscapedCharacters1BoxedBoolean
implements [DependentSchemasDependenciesWithEscapedCharacters1Boxed](#dependentschemasdependencieswithescapedcharacters1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -219,7 +219,7 @@ data class that stores validated null payloads, sealed permits implementation data class FoobarBoxedBoolean
implements [FoobarBoxed](#foobarboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -428,7 +428,7 @@ data class that stores validated null payloads, sealed permits implementation data class FootbarBoxedBoolean
implements [FootbarBoxed](#footbarboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependentSubschemaIncompatibleWithRoot.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependentSubschemaIncompatibleWithRoot.md index d15a53b981a..c24bd5a00a7 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependentSubschemaIncompatibleWithRoot.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasDependentSubschemaIncompatibleWithRoot.md @@ -13,44 +13,44 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1Boxed](#dependentschemasdependentsubschemaincompatiblewithroot1boxed)
sealed interface for validated payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedVoid](#dependentschemasdependentsubschemaincompatiblewithroot1boxedvoid)
boxed class to store validated null payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedBoolean](#dependentschemasdependentsubschemaincompatiblewithroot1boxedboolean)
boxed class to store validated boolean payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedNumber](#dependentschemasdependentsubschemaincompatiblewithroot1boxednumber)
boxed class to store validated Number payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedString](#dependentschemasdependentsubschemaincompatiblewithroot1boxedstring)
boxed class to store validated String payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedList](#dependentschemasdependentsubschemaincompatiblewithroot1boxedlist)
boxed class to store validated List payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedMap](#dependentschemasdependentsubschemaincompatiblewithroot1boxedmap)
boxed class to store validated Map payloads | -| static class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1](#dependentschemasdependentsubschemaincompatiblewithroot1)
schema class | -| static class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRootMapBuilder](#dependentschemasdependentsubschemaincompatiblewithrootmapbuilder)
builder for Map payloads | -| static class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRootMap](#dependentschemasdependentsubschemaincompatiblewithrootmap)
output class for Map payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedVoid](#dependentschemasdependentsubschemaincompatiblewithroot1boxedvoid)
boxed class to store validated null payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedBoolean](#dependentschemasdependentsubschemaincompatiblewithroot1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedNumber](#dependentschemasdependentsubschemaincompatiblewithroot1boxednumber)
boxed class to store validated Number payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedString](#dependentschemasdependentsubschemaincompatiblewithroot1boxedstring)
boxed class to store validated String payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedList](#dependentschemasdependentsubschemaincompatiblewithroot1boxedlist)
boxed class to store validated List payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedMap](#dependentschemasdependentsubschemaincompatiblewithroot1boxedmap)
boxed class to store validated Map payloads | +| class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRoot1](#dependentschemasdependentsubschemaincompatiblewithroot1)
schema class | +| class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRootMapBuilder](#dependentschemasdependentsubschemaincompatiblewithrootmapbuilder)
builder for Map payloads | +| class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.DependentSchemasDependentSubschemaIncompatibleWithRootMap](#dependentschemasdependentsubschemaincompatiblewithrootmap)
output class for Map payloads | | sealed interface | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.Foo](#foo)
schema class | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.Foo](#foo)
schema class | | sealed interface | [DependentSchemasDependentSubschemaIncompatibleWithRoot.Foo1Boxed](#foo1boxed)
sealed interface for validated payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.Foo1BoxedMap](#foo1boxedmap)
boxed class to store validated Map payloads | -| static class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.Foo1](#foo1)
schema class | -| static class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooMapBuilder1](#foomapbuilder1)
builder for Map payloads | -| static class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooMap](#foomap)
output class for Map payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.Foo1BoxedMap](#foo1boxedmap)
boxed class to store validated Map payloads | +| class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.Foo1](#foo1)
schema class | +| class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooMapBuilder1](#foomapbuilder1)
builder for Map payloads | +| class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.FooMap](#foomap)
output class for Map payloads | | sealed interface | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | -| static class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.Bar](#bar)
schema class | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | +| class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.Bar](#bar)
schema class | | sealed interface | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxed](#additionalpropertiesboxed)
sealed interface for validated payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedVoid](#additionalpropertiesboxedvoid)
boxed class to store validated null payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedNumber](#additionalpropertiesboxednumber)
boxed class to store validated Number payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedString](#additionalpropertiesboxedstring)
boxed class to store validated String payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedList](#additionalpropertiesboxedlist)
boxed class to store validated List payloads | -| record | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedMap](#additionalpropertiesboxedmap)
boxed class to store validated Map payloads | -| static class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalProperties](#additionalproperties)
schema class | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedVoid](#additionalpropertiesboxedvoid)
boxed class to store validated null payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedNumber](#additionalpropertiesboxednumber)
boxed class to store validated Number payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedString](#additionalpropertiesboxedstring)
boxed class to store validated String payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedList](#additionalpropertiesboxedlist)
boxed class to store validated List payloads | +| data class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalPropertiesBoxedMap](#additionalpropertiesboxedmap)
boxed class to store validated Map payloads | +| class | [DependentSchemasDependentSubschemaIncompatibleWithRoot.AdditionalProperties](#additionalproperties)
schema class | ## DependentSchemasDependentSubschemaIncompatibleWithRoot1Boxed sealed interface DependentSchemasDependentSubschemaIncompatibleWithRoot1Boxed
@@ -85,7 +85,7 @@ data class that stores validated null payloads, sealed permits implementation data class DependentSchemasDependentSubschemaIncompatibleWithRoot1BoxedBoolean
implements [DependentSchemasDependentSubschemaIncompatibleWithRoot1Boxed](#dependentschemasdependentsubschemaincompatiblewithroot1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -280,7 +280,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -508,7 +508,7 @@ data class that stores validated null payloads, sealed permits implementation data class BarBoxedBoolean
implements [BarBoxed](#barboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -633,7 +633,7 @@ data class that stores validated null payloads, sealed permits implementation data class AdditionalPropertiesBoxedBoolean
implements [AdditionalPropertiesBoxed](#additionalpropertiesboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasSingleDependency.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasSingleDependency.md index ef4c40af344..2342e473a80 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasSingleDependency.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DependentSchemasSingleDependency.md @@ -13,29 +13,29 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1Boxed](#dependentschemassingledependency1boxed)
sealed interface for validated payloads | -| record | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedVoid](#dependentschemassingledependency1boxedvoid)
boxed class to store validated null payloads | -| record | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedBoolean](#dependentschemassingledependency1boxedboolean)
boxed class to store validated boolean payloads | -| record | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedNumber](#dependentschemassingledependency1boxednumber)
boxed class to store validated Number payloads | -| record | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedString](#dependentschemassingledependency1boxedstring)
boxed class to store validated String payloads | -| record | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedList](#dependentschemassingledependency1boxedlist)
boxed class to store validated List payloads | -| record | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedMap](#dependentschemassingledependency1boxedmap)
boxed class to store validated Map payloads | -| static class | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1](#dependentschemassingledependency1)
schema class | +| data class | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedVoid](#dependentschemassingledependency1boxedvoid)
boxed class to store validated null payloads | +| data class | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedBoolean](#dependentschemassingledependency1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedNumber](#dependentschemassingledependency1boxednumber)
boxed class to store validated Number payloads | +| data class | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedString](#dependentschemassingledependency1boxedstring)
boxed class to store validated String payloads | +| data class | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedList](#dependentschemassingledependency1boxedlist)
boxed class to store validated List payloads | +| data class | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1BoxedMap](#dependentschemassingledependency1boxedmap)
boxed class to store validated Map payloads | +| class | [DependentSchemasSingleDependency.DependentSchemasSingleDependency1](#dependentschemassingledependency1)
schema class | | sealed interface | [DependentSchemasSingleDependency.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [DependentSchemasSingleDependency.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | -| record | [DependentSchemasSingleDependency.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | -| record | [DependentSchemasSingleDependency.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| record | [DependentSchemasSingleDependency.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| record | [DependentSchemasSingleDependency.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | -| record | [DependentSchemasSingleDependency.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | -| static class | [DependentSchemasSingleDependency.Bar](#bar)
schema class | -| static class | [DependentSchemasSingleDependency.BarMapBuilder1](#barmapbuilder1)
builder for Map payloads | -| static class | [DependentSchemasSingleDependency.BarMap](#barmap)
output class for Map payloads | +| data class | [DependentSchemasSingleDependency.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | +| data class | [DependentSchemasSingleDependency.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | +| data class | [DependentSchemasSingleDependency.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| data class | [DependentSchemasSingleDependency.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| data class | [DependentSchemasSingleDependency.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | +| data class | [DependentSchemasSingleDependency.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | +| class | [DependentSchemasSingleDependency.Bar](#bar)
schema class | +| class | [DependentSchemasSingleDependency.BarMapBuilder1](#barmapbuilder1)
builder for Map payloads | +| class | [DependentSchemasSingleDependency.BarMap](#barmap)
output class for Map payloads | | sealed interface | [DependentSchemasSingleDependency.Bar1Boxed](#bar1boxed)
sealed interface for validated payloads | -| record | [DependentSchemasSingleDependency.Bar1BoxedNumber](#bar1boxednumber)
boxed class to store validated Number payloads | -| static class | [DependentSchemasSingleDependency.Bar1](#bar1)
schema class | +| data class | [DependentSchemasSingleDependency.Bar1BoxedNumber](#bar1boxednumber)
boxed class to store validated Number payloads | +| class | [DependentSchemasSingleDependency.Bar1](#bar1)
schema class | | sealed interface | [DependentSchemasSingleDependency.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [DependentSchemasSingleDependency.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| static class | [DependentSchemasSingleDependency.Foo](#foo)
schema class | +| data class | [DependentSchemasSingleDependency.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| class | [DependentSchemasSingleDependency.Foo](#foo)
schema class | ## DependentSchemasSingleDependency1Boxed sealed interface DependentSchemasSingleDependency1Boxed
@@ -70,7 +70,7 @@ data class that stores validated null payloads, sealed permits implementation data class DependentSchemasSingleDependency1BoxedBoolean
implements [DependentSchemasSingleDependency1Boxed](#dependentschemassingledependency1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -217,7 +217,7 @@ data class that stores validated null payloads, sealed permits implementation data class BarBoxedBoolean
implements [BarBoxed](#barboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DurationFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DurationFormat.md index 6fc0fc5acaf..85518b275fe 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DurationFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/DurationFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [DurationFormat.DurationFormat1Boxed](#durationformat1boxed)
sealed interface for validated payloads | -| record | [DurationFormat.DurationFormat1BoxedVoid](#durationformat1boxedvoid)
boxed class to store validated null payloads | -| record | [DurationFormat.DurationFormat1BoxedBoolean](#durationformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [DurationFormat.DurationFormat1BoxedNumber](#durationformat1boxednumber)
boxed class to store validated Number payloads | -| record | [DurationFormat.DurationFormat1BoxedString](#durationformat1boxedstring)
boxed class to store validated String payloads | -| record | [DurationFormat.DurationFormat1BoxedList](#durationformat1boxedlist)
boxed class to store validated List payloads | -| record | [DurationFormat.DurationFormat1BoxedMap](#durationformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [DurationFormat.DurationFormat1](#durationformat1)
schema class | +| data class | [DurationFormat.DurationFormat1BoxedVoid](#durationformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [DurationFormat.DurationFormat1BoxedBoolean](#durationformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [DurationFormat.DurationFormat1BoxedNumber](#durationformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [DurationFormat.DurationFormat1BoxedString](#durationformat1boxedstring)
boxed class to store validated String payloads | +| data class | [DurationFormat.DurationFormat1BoxedList](#durationformat1boxedlist)
boxed class to store validated List payloads | +| data class | [DurationFormat.DurationFormat1BoxedMap](#durationformat1boxedmap)
boxed class to store validated Map payloads | +| class | [DurationFormat.DurationFormat1](#durationformat1)
schema class | ## DurationFormat1Boxed sealed interface DurationFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class DurationFormat1BoxedBoolean
implements [DurationFormat1Boxed](#durationformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmailFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmailFormat.md index dac13ddd113..71860bb4fb8 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmailFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmailFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EmailFormat.EmailFormat1Boxed](#emailformat1boxed)
sealed interface for validated payloads | -| record | [EmailFormat.EmailFormat1BoxedVoid](#emailformat1boxedvoid)
boxed class to store validated null payloads | -| record | [EmailFormat.EmailFormat1BoxedBoolean](#emailformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [EmailFormat.EmailFormat1BoxedNumber](#emailformat1boxednumber)
boxed class to store validated Number payloads | -| record | [EmailFormat.EmailFormat1BoxedString](#emailformat1boxedstring)
boxed class to store validated String payloads | -| record | [EmailFormat.EmailFormat1BoxedList](#emailformat1boxedlist)
boxed class to store validated List payloads | -| record | [EmailFormat.EmailFormat1BoxedMap](#emailformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [EmailFormat.EmailFormat1](#emailformat1)
schema class | +| data class | [EmailFormat.EmailFormat1BoxedVoid](#emailformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [EmailFormat.EmailFormat1BoxedBoolean](#emailformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [EmailFormat.EmailFormat1BoxedNumber](#emailformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [EmailFormat.EmailFormat1BoxedString](#emailformat1boxedstring)
boxed class to store validated String payloads | +| data class | [EmailFormat.EmailFormat1BoxedList](#emailformat1boxedlist)
boxed class to store validated List payloads | +| data class | [EmailFormat.EmailFormat1BoxedMap](#emailformat1boxedmap)
boxed class to store validated Map payloads | +| class | [EmailFormat.EmailFormat1](#emailformat1)
schema class | ## EmailFormat1Boxed sealed interface EmailFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class EmailFormat1BoxedBoolean
implements [EmailFormat1Boxed](#emailformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmptyDependents.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmptyDependents.md index f5cf7265a75..06630cc6695 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmptyDependents.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EmptyDependents.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EmptyDependents.EmptyDependents1Boxed](#emptydependents1boxed)
sealed interface for validated payloads | -| record | [EmptyDependents.EmptyDependents1BoxedVoid](#emptydependents1boxedvoid)
boxed class to store validated null payloads | -| record | [EmptyDependents.EmptyDependents1BoxedBoolean](#emptydependents1boxedboolean)
boxed class to store validated boolean payloads | -| record | [EmptyDependents.EmptyDependents1BoxedNumber](#emptydependents1boxednumber)
boxed class to store validated Number payloads | -| record | [EmptyDependents.EmptyDependents1BoxedString](#emptydependents1boxedstring)
boxed class to store validated String payloads | -| record | [EmptyDependents.EmptyDependents1BoxedList](#emptydependents1boxedlist)
boxed class to store validated List payloads | -| record | [EmptyDependents.EmptyDependents1BoxedMap](#emptydependents1boxedmap)
boxed class to store validated Map payloads | -| static class | [EmptyDependents.EmptyDependents1](#emptydependents1)
schema class | +| data class | [EmptyDependents.EmptyDependents1BoxedVoid](#emptydependents1boxedvoid)
boxed class to store validated null payloads | +| data class | [EmptyDependents.EmptyDependents1BoxedBoolean](#emptydependents1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [EmptyDependents.EmptyDependents1BoxedNumber](#emptydependents1boxednumber)
boxed class to store validated Number payloads | +| data class | [EmptyDependents.EmptyDependents1BoxedString](#emptydependents1boxedstring)
boxed class to store validated String payloads | +| data class | [EmptyDependents.EmptyDependents1BoxedList](#emptydependents1boxedlist)
boxed class to store validated List payloads | +| data class | [EmptyDependents.EmptyDependents1BoxedMap](#emptydependents1boxedmap)
boxed class to store validated Map payloads | +| class | [EmptyDependents.EmptyDependents1](#emptydependents1)
schema class | ## EmptyDependents1Boxed sealed interface EmptyDependents1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class EmptyDependents1BoxedBoolean
implements [EmptyDependents1Boxed](#emptydependents1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md index 8f60cb361bf..516cb7fe94f 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith0DoesNotMatchFalse.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1Boxed](#enumwith0doesnotmatchfalse1boxed)
sealed interface for validated payloads | -| record | [EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1BoxedNumber](#enumwith0doesnotmatchfalse1boxednumber)
boxed class to store validated Number payloads | -| static class | [EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1](#enumwith0doesnotmatchfalse1)
schema class | +| data class | [EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1BoxedNumber](#enumwith0doesnotmatchfalse1boxednumber)
boxed class to store validated Number payloads | +| class | [EnumWith0DoesNotMatchFalse.EnumWith0DoesNotMatchFalse1](#enumwith0doesnotmatchfalse1)
schema class | | enum | [EnumWith0DoesNotMatchFalse.IntegerEnumWith0DoesNotMatchFalseEnums](#integerenumwith0doesnotmatchfalseenums)
Integer enum | | enum | [EnumWith0DoesNotMatchFalse.LongEnumWith0DoesNotMatchFalseEnums](#longenumwith0doesnotmatchfalseenums)
Long enum | | enum | [EnumWith0DoesNotMatchFalse.FloatEnumWith0DoesNotMatchFalseEnums](#floatenumwith0doesnotmatchfalseenums)
Float enum | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md index 5cae0b2c550..c5bbd69334c 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWith1DoesNotMatchTrue.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1Boxed](#enumwith1doesnotmatchtrue1boxed)
sealed interface for validated payloads | -| record | [EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1BoxedNumber](#enumwith1doesnotmatchtrue1boxednumber)
boxed class to store validated Number payloads | -| static class | [EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1](#enumwith1doesnotmatchtrue1)
schema class | +| data class | [EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1BoxedNumber](#enumwith1doesnotmatchtrue1boxednumber)
boxed class to store validated Number payloads | +| class | [EnumWith1DoesNotMatchTrue.EnumWith1DoesNotMatchTrue1](#enumwith1doesnotmatchtrue1)
schema class | | enum | [EnumWith1DoesNotMatchTrue.IntegerEnumWith1DoesNotMatchTrueEnums](#integerenumwith1doesnotmatchtrueenums)
Integer enum | | enum | [EnumWith1DoesNotMatchTrue.LongEnumWith1DoesNotMatchTrueEnums](#longenumwith1doesnotmatchtrueenums)
Long enum | | enum | [EnumWith1DoesNotMatchTrue.FloatEnumWith1DoesNotMatchTrueEnums](#floatenumwith1doesnotmatchtrueenums)
Float enum | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md index 550856ef545..196c2f74b8b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithEscapedCharacters.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumWithEscapedCharacters.EnumWithEscapedCharacters1Boxed](#enumwithescapedcharacters1boxed)
sealed interface for validated payloads | -| record | [EnumWithEscapedCharacters.EnumWithEscapedCharacters1BoxedString](#enumwithescapedcharacters1boxedstring)
boxed class to store validated String payloads | -| static class | [EnumWithEscapedCharacters.EnumWithEscapedCharacters1](#enumwithescapedcharacters1)
schema class | +| data class | [EnumWithEscapedCharacters.EnumWithEscapedCharacters1BoxedString](#enumwithescapedcharacters1boxedstring)
boxed class to store validated String payloads | +| class | [EnumWithEscapedCharacters.EnumWithEscapedCharacters1](#enumwithescapedcharacters1)
schema class | | enum | [EnumWithEscapedCharacters.StringEnumWithEscapedCharactersEnums](#stringenumwithescapedcharactersenums)
String enum | ## EnumWithEscapedCharacters1Boxed diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md index dd710d242bb..797b5249d00 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithFalseDoesNotMatch0.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01Boxed](#enumwithfalsedoesnotmatch01boxed)
sealed interface for validated payloads | -| record | [EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01BoxedBoolean](#enumwithfalsedoesnotmatch01boxedboolean)
boxed class to store validated boolean payloads | -| static class | [EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01](#enumwithfalsedoesnotmatch01)
schema class | +| data class | [EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01BoxedBoolean](#enumwithfalsedoesnotmatch01boxedboolean)
boxed class to store validated boolean payloads | +| class | [EnumWithFalseDoesNotMatch0.EnumWithFalseDoesNotMatch01](#enumwithfalsedoesnotmatch01)
schema class | | enum | [EnumWithFalseDoesNotMatch0.BooleanEnumWithFalseDoesNotMatch0Enums](#booleanenumwithfalsedoesnotmatch0enums)
boolean enum | ## EnumWithFalseDoesNotMatch01Boxed @@ -27,7 +27,7 @@ sealed interface that stores validated payloads using boxed classes data class EnumWithFalseDoesNotMatch01BoxedBoolean
implements [EnumWithFalseDoesNotMatch01Boxed](#enumwithfalsedoesnotmatch01boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md index b6b635b9f0b..db2c2c8d463 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumWithTrueDoesNotMatch1.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11Boxed](#enumwithtruedoesnotmatch11boxed)
sealed interface for validated payloads | -| record | [EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11BoxedBoolean](#enumwithtruedoesnotmatch11boxedboolean)
boxed class to store validated boolean payloads | -| static class | [EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11](#enumwithtruedoesnotmatch11)
schema class | +| data class | [EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11BoxedBoolean](#enumwithtruedoesnotmatch11boxedboolean)
boxed class to store validated boolean payloads | +| class | [EnumWithTrueDoesNotMatch1.EnumWithTrueDoesNotMatch11](#enumwithtruedoesnotmatch11)
schema class | | enum | [EnumWithTrueDoesNotMatch1.BooleanEnumWithTrueDoesNotMatch1Enums](#booleanenumwithtruedoesnotmatch1enums)
boolean enum | ## EnumWithTrueDoesNotMatch11Boxed @@ -27,7 +27,7 @@ sealed interface that stores validated payloads using boxed classes data class EnumWithTrueDoesNotMatch11BoxedBoolean
implements [EnumWithTrueDoesNotMatch11Boxed](#enumwithtruedoesnotmatch11boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md index 95883b8654d..ee7139fb479 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/EnumsInProperties.md @@ -14,17 +14,17 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [EnumsInProperties.EnumsInProperties1Boxed](#enumsinproperties1boxed)
sealed interface for validated payloads | -| record | [EnumsInProperties.EnumsInProperties1BoxedMap](#enumsinproperties1boxedmap)
boxed class to store validated Map payloads | -| static class | [EnumsInProperties.EnumsInProperties1](#enumsinproperties1)
schema class | -| static class | [EnumsInProperties.EnumsInPropertiesMapBuilder](#enumsinpropertiesmapbuilder)
builder for Map payloads | -| static class | [EnumsInProperties.EnumsInPropertiesMap](#enumsinpropertiesmap)
output class for Map payloads | +| data class | [EnumsInProperties.EnumsInProperties1BoxedMap](#enumsinproperties1boxedmap)
boxed class to store validated Map payloads | +| class | [EnumsInProperties.EnumsInProperties1](#enumsinproperties1)
schema class | +| class | [EnumsInProperties.EnumsInPropertiesMapBuilder](#enumsinpropertiesmapbuilder)
builder for Map payloads | +| class | [EnumsInProperties.EnumsInPropertiesMap](#enumsinpropertiesmap)
output class for Map payloads | | sealed interface | [EnumsInProperties.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [EnumsInProperties.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| static class | [EnumsInProperties.Bar](#bar)
schema class | +| data class | [EnumsInProperties.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| class | [EnumsInProperties.Bar](#bar)
schema class | | enum | [EnumsInProperties.StringBarEnums](#stringbarenums)
String enum | | sealed interface | [EnumsInProperties.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [EnumsInProperties.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [EnumsInProperties.Foo](#foo)
schema class | +| data class | [EnumsInProperties.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [EnumsInProperties.Foo](#foo)
schema class | | enum | [EnumsInProperties.StringFooEnums](#stringfooenums)
String enum | ## EnumsInProperties1Boxed diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusivemaximumValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusivemaximumValidation.md index e3f259a4d2a..c74c8babcbc 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusivemaximumValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusivemaximumValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ExclusivemaximumValidation.ExclusivemaximumValidation1Boxed](#exclusivemaximumvalidation1boxed)
sealed interface for validated payloads | -| record | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedVoid](#exclusivemaximumvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedBoolean](#exclusivemaximumvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedNumber](#exclusivemaximumvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedString](#exclusivemaximumvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedList](#exclusivemaximumvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedMap](#exclusivemaximumvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [ExclusivemaximumValidation.ExclusivemaximumValidation1](#exclusivemaximumvalidation1)
schema class | +| data class | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedVoid](#exclusivemaximumvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedBoolean](#exclusivemaximumvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedNumber](#exclusivemaximumvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedString](#exclusivemaximumvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedList](#exclusivemaximumvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [ExclusivemaximumValidation.ExclusivemaximumValidation1BoxedMap](#exclusivemaximumvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [ExclusivemaximumValidation.ExclusivemaximumValidation1](#exclusivemaximumvalidation1)
schema class | ## ExclusivemaximumValidation1Boxed sealed interface ExclusivemaximumValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class ExclusivemaximumValidation1BoxedBoolean
implements [ExclusivemaximumValidation1Boxed](#exclusivemaximumvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusiveminimumValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusiveminimumValidation.md index 0340fa7269f..4f8fa102a8f 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusiveminimumValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ExclusiveminimumValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ExclusiveminimumValidation.ExclusiveminimumValidation1Boxed](#exclusiveminimumvalidation1boxed)
sealed interface for validated payloads | -| record | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedVoid](#exclusiveminimumvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedBoolean](#exclusiveminimumvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedNumber](#exclusiveminimumvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedString](#exclusiveminimumvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedList](#exclusiveminimumvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedMap](#exclusiveminimumvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [ExclusiveminimumValidation.ExclusiveminimumValidation1](#exclusiveminimumvalidation1)
schema class | +| data class | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedVoid](#exclusiveminimumvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedBoolean](#exclusiveminimumvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedNumber](#exclusiveminimumvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedString](#exclusiveminimumvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedList](#exclusiveminimumvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [ExclusiveminimumValidation.ExclusiveminimumValidation1BoxedMap](#exclusiveminimumvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [ExclusiveminimumValidation.ExclusiveminimumValidation1](#exclusiveminimumvalidation1)
schema class | ## ExclusiveminimumValidation1Boxed sealed interface ExclusiveminimumValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class ExclusiveminimumValidation1BoxedBoolean
implements [ExclusiveminimumValidation1Boxed](#exclusiveminimumvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/FloatDivisionInf.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/FloatDivisionInf.md index 5f83c69553a..52d47b54cc2 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/FloatDivisionInf.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/FloatDivisionInf.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [FloatDivisionInf.FloatDivisionInf1Boxed](#floatdivisioninf1boxed)
sealed interface for validated payloads | -| record | [FloatDivisionInf.FloatDivisionInf1BoxedNumber](#floatdivisioninf1boxednumber)
boxed class to store validated Number payloads | -| static class | [FloatDivisionInf.FloatDivisionInf1](#floatdivisioninf1)
schema class | +| data class | [FloatDivisionInf.FloatDivisionInf1BoxedNumber](#floatdivisioninf1boxednumber)
boxed class to store validated Number payloads | +| class | [FloatDivisionInf.FloatDivisionInf1](#floatdivisioninf1)
schema class | ## FloatDivisionInf1Boxed sealed interface FloatDivisionInf1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md index d4c203a30c0..bea0d66de24 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ForbiddenProperty.md @@ -13,31 +13,31 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ForbiddenProperty.ForbiddenProperty1Boxed](#forbiddenproperty1boxed)
sealed interface for validated payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedVoid](#forbiddenproperty1boxedvoid)
boxed class to store validated null payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedBoolean](#forbiddenproperty1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedNumber](#forbiddenproperty1boxednumber)
boxed class to store validated Number payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedString](#forbiddenproperty1boxedstring)
boxed class to store validated String payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedList](#forbiddenproperty1boxedlist)
boxed class to store validated List payloads | -| record | [ForbiddenProperty.ForbiddenProperty1BoxedMap](#forbiddenproperty1boxedmap)
boxed class to store validated Map payloads | -| static class | [ForbiddenProperty.ForbiddenProperty1](#forbiddenproperty1)
schema class | -| static class | [ForbiddenProperty.ForbiddenPropertyMapBuilder](#forbiddenpropertymapbuilder)
builder for Map payloads | -| static class | [ForbiddenProperty.ForbiddenPropertyMap](#forbiddenpropertymap)
output class for Map payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedVoid](#forbiddenproperty1boxedvoid)
boxed class to store validated null payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedBoolean](#forbiddenproperty1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedNumber](#forbiddenproperty1boxednumber)
boxed class to store validated Number payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedString](#forbiddenproperty1boxedstring)
boxed class to store validated String payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedList](#forbiddenproperty1boxedlist)
boxed class to store validated List payloads | +| data class | [ForbiddenProperty.ForbiddenProperty1BoxedMap](#forbiddenproperty1boxedmap)
boxed class to store validated Map payloads | +| class | [ForbiddenProperty.ForbiddenProperty1](#forbiddenproperty1)
schema class | +| class | [ForbiddenProperty.ForbiddenPropertyMapBuilder](#forbiddenpropertymapbuilder)
builder for Map payloads | +| class | [ForbiddenProperty.ForbiddenPropertyMap](#forbiddenpropertymap)
output class for Map payloads | | sealed interface | [ForbiddenProperty.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [ForbiddenProperty.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [ForbiddenProperty.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [ForbiddenProperty.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [ForbiddenProperty.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [ForbiddenProperty.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [ForbiddenProperty.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [ForbiddenProperty.Foo](#foo)
schema class | +| data class | [ForbiddenProperty.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [ForbiddenProperty.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [ForbiddenProperty.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [ForbiddenProperty.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [ForbiddenProperty.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [ForbiddenProperty.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [ForbiddenProperty.Foo](#foo)
schema class | | sealed interface | [ForbiddenProperty.NotBoxed](#notboxed)
sealed interface for validated payloads | -| record | [ForbiddenProperty.NotBoxedVoid](#notboxedvoid)
boxed class to store validated null payloads | -| record | [ForbiddenProperty.NotBoxedBoolean](#notboxedboolean)
boxed class to store validated boolean payloads | -| record | [ForbiddenProperty.NotBoxedNumber](#notboxednumber)
boxed class to store validated Number payloads | -| record | [ForbiddenProperty.NotBoxedString](#notboxedstring)
boxed class to store validated String payloads | -| record | [ForbiddenProperty.NotBoxedList](#notboxedlist)
boxed class to store validated List payloads | -| record | [ForbiddenProperty.NotBoxedMap](#notboxedmap)
boxed class to store validated Map payloads | -| static class | [ForbiddenProperty.Not](#not)
schema class | +| data class | [ForbiddenProperty.NotBoxedVoid](#notboxedvoid)
boxed class to store validated null payloads | +| data class | [ForbiddenProperty.NotBoxedBoolean](#notboxedboolean)
boxed class to store validated boolean payloads | +| data class | [ForbiddenProperty.NotBoxedNumber](#notboxednumber)
boxed class to store validated Number payloads | +| data class | [ForbiddenProperty.NotBoxedString](#notboxedstring)
boxed class to store validated String payloads | +| data class | [ForbiddenProperty.NotBoxedList](#notboxedlist)
boxed class to store validated List payloads | +| data class | [ForbiddenProperty.NotBoxedMap](#notboxedmap)
boxed class to store validated Map payloads | +| class | [ForbiddenProperty.Not](#not)
schema class | ## ForbiddenProperty1Boxed sealed interface ForbiddenProperty1Boxed
@@ -72,7 +72,7 @@ data class that stores validated null payloads, sealed permits implementation data class ForbiddenProperty1BoxedBoolean
implements [ForbiddenProperty1Boxed](#forbiddenproperty1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -266,7 +266,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -413,7 +413,7 @@ data class that stores validated null payloads, sealed permits implementation data class NotBoxedBoolean
implements [NotBoxed](#notboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/HostnameFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/HostnameFormat.md index 15f1fa66b05..d994a4bf149 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/HostnameFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/HostnameFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [HostnameFormat.HostnameFormat1Boxed](#hostnameformat1boxed)
sealed interface for validated payloads | -| record | [HostnameFormat.HostnameFormat1BoxedVoid](#hostnameformat1boxedvoid)
boxed class to store validated null payloads | -| record | [HostnameFormat.HostnameFormat1BoxedBoolean](#hostnameformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [HostnameFormat.HostnameFormat1BoxedNumber](#hostnameformat1boxednumber)
boxed class to store validated Number payloads | -| record | [HostnameFormat.HostnameFormat1BoxedString](#hostnameformat1boxedstring)
boxed class to store validated String payloads | -| record | [HostnameFormat.HostnameFormat1BoxedList](#hostnameformat1boxedlist)
boxed class to store validated List payloads | -| record | [HostnameFormat.HostnameFormat1BoxedMap](#hostnameformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [HostnameFormat.HostnameFormat1](#hostnameformat1)
schema class | +| data class | [HostnameFormat.HostnameFormat1BoxedVoid](#hostnameformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [HostnameFormat.HostnameFormat1BoxedBoolean](#hostnameformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [HostnameFormat.HostnameFormat1BoxedNumber](#hostnameformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [HostnameFormat.HostnameFormat1BoxedString](#hostnameformat1boxedstring)
boxed class to store validated String payloads | +| data class | [HostnameFormat.HostnameFormat1BoxedList](#hostnameformat1boxedlist)
boxed class to store validated List payloads | +| data class | [HostnameFormat.HostnameFormat1BoxedMap](#hostnameformat1boxedmap)
boxed class to store validated Map payloads | +| class | [HostnameFormat.HostnameFormat1](#hostnameformat1)
schema class | ## HostnameFormat1Boxed sealed interface HostnameFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class HostnameFormat1BoxedBoolean
implements [HostnameFormat1Boxed](#hostnameformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnEmailFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnEmailFormat.md index a1c8918a1c8..ac6a6a8b2e7 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnEmailFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnEmailFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IdnEmailFormat.IdnEmailFormat1Boxed](#idnemailformat1boxed)
sealed interface for validated payloads | -| record | [IdnEmailFormat.IdnEmailFormat1BoxedVoid](#idnemailformat1boxedvoid)
boxed class to store validated null payloads | -| record | [IdnEmailFormat.IdnEmailFormat1BoxedBoolean](#idnemailformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [IdnEmailFormat.IdnEmailFormat1BoxedNumber](#idnemailformat1boxednumber)
boxed class to store validated Number payloads | -| record | [IdnEmailFormat.IdnEmailFormat1BoxedString](#idnemailformat1boxedstring)
boxed class to store validated String payloads | -| record | [IdnEmailFormat.IdnEmailFormat1BoxedList](#idnemailformat1boxedlist)
boxed class to store validated List payloads | -| record | [IdnEmailFormat.IdnEmailFormat1BoxedMap](#idnemailformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [IdnEmailFormat.IdnEmailFormat1](#idnemailformat1)
schema class | +| data class | [IdnEmailFormat.IdnEmailFormat1BoxedVoid](#idnemailformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [IdnEmailFormat.IdnEmailFormat1BoxedBoolean](#idnemailformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [IdnEmailFormat.IdnEmailFormat1BoxedNumber](#idnemailformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [IdnEmailFormat.IdnEmailFormat1BoxedString](#idnemailformat1boxedstring)
boxed class to store validated String payloads | +| data class | [IdnEmailFormat.IdnEmailFormat1BoxedList](#idnemailformat1boxedlist)
boxed class to store validated List payloads | +| data class | [IdnEmailFormat.IdnEmailFormat1BoxedMap](#idnemailformat1boxedmap)
boxed class to store validated Map payloads | +| class | [IdnEmailFormat.IdnEmailFormat1](#idnemailformat1)
schema class | ## IdnEmailFormat1Boxed sealed interface IdnEmailFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class IdnEmailFormat1BoxedBoolean
implements [IdnEmailFormat1Boxed](#idnemailformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnHostnameFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnHostnameFormat.md index 3cf551cd254..6d01aadf7e1 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnHostnameFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IdnHostnameFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IdnHostnameFormat.IdnHostnameFormat1Boxed](#idnhostnameformat1boxed)
sealed interface for validated payloads | -| record | [IdnHostnameFormat.IdnHostnameFormat1BoxedVoid](#idnhostnameformat1boxedvoid)
boxed class to store validated null payloads | -| record | [IdnHostnameFormat.IdnHostnameFormat1BoxedBoolean](#idnhostnameformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [IdnHostnameFormat.IdnHostnameFormat1BoxedNumber](#idnhostnameformat1boxednumber)
boxed class to store validated Number payloads | -| record | [IdnHostnameFormat.IdnHostnameFormat1BoxedString](#idnhostnameformat1boxedstring)
boxed class to store validated String payloads | -| record | [IdnHostnameFormat.IdnHostnameFormat1BoxedList](#idnhostnameformat1boxedlist)
boxed class to store validated List payloads | -| record | [IdnHostnameFormat.IdnHostnameFormat1BoxedMap](#idnhostnameformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [IdnHostnameFormat.IdnHostnameFormat1](#idnhostnameformat1)
schema class | +| data class | [IdnHostnameFormat.IdnHostnameFormat1BoxedVoid](#idnhostnameformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [IdnHostnameFormat.IdnHostnameFormat1BoxedBoolean](#idnhostnameformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [IdnHostnameFormat.IdnHostnameFormat1BoxedNumber](#idnhostnameformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [IdnHostnameFormat.IdnHostnameFormat1BoxedString](#idnhostnameformat1boxedstring)
boxed class to store validated String payloads | +| data class | [IdnHostnameFormat.IdnHostnameFormat1BoxedList](#idnhostnameformat1boxedlist)
boxed class to store validated List payloads | +| data class | [IdnHostnameFormat.IdnHostnameFormat1BoxedMap](#idnhostnameformat1boxedmap)
boxed class to store validated Map payloads | +| class | [IdnHostnameFormat.IdnHostnameFormat1](#idnhostnameformat1)
schema class | ## IdnHostnameFormat1Boxed sealed interface IdnHostnameFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class IdnHostnameFormat1BoxedBoolean
implements [IdnHostnameFormat1Boxed](#idnhostnameformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndElseWithoutThen.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndElseWithoutThen.md index 0641511973d..1ce362d7ed3 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndElseWithoutThen.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndElseWithoutThen.md @@ -11,29 +11,29 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IfAndElseWithoutThen.IfAndElseWithoutThen1Boxed](#ifandelsewithoutthen1boxed)
sealed interface for validated payloads | -| record | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedVoid](#ifandelsewithoutthen1boxedvoid)
boxed class to store validated null payloads | -| record | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedBoolean](#ifandelsewithoutthen1boxedboolean)
boxed class to store validated boolean payloads | -| record | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedNumber](#ifandelsewithoutthen1boxednumber)
boxed class to store validated Number payloads | -| record | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedString](#ifandelsewithoutthen1boxedstring)
boxed class to store validated String payloads | -| record | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedList](#ifandelsewithoutthen1boxedlist)
boxed class to store validated List payloads | -| record | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedMap](#ifandelsewithoutthen1boxedmap)
boxed class to store validated Map payloads | -| static class | [IfAndElseWithoutThen.IfAndElseWithoutThen1](#ifandelsewithoutthen1)
schema class | +| data class | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedVoid](#ifandelsewithoutthen1boxedvoid)
boxed class to store validated null payloads | +| data class | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedBoolean](#ifandelsewithoutthen1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedNumber](#ifandelsewithoutthen1boxednumber)
boxed class to store validated Number payloads | +| data class | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedString](#ifandelsewithoutthen1boxedstring)
boxed class to store validated String payloads | +| data class | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedList](#ifandelsewithoutthen1boxedlist)
boxed class to store validated List payloads | +| data class | [IfAndElseWithoutThen.IfAndElseWithoutThen1BoxedMap](#ifandelsewithoutthen1boxedmap)
boxed class to store validated Map payloads | +| class | [IfAndElseWithoutThen.IfAndElseWithoutThen1](#ifandelsewithoutthen1)
schema class | | sealed interface | [IfAndElseWithoutThen.IfSchemaBoxed](#ifschemaboxed)
sealed interface for validated payloads | -| record | [IfAndElseWithoutThen.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | -| record | [IfAndElseWithoutThen.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [IfAndElseWithoutThen.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | -| record | [IfAndElseWithoutThen.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | -| record | [IfAndElseWithoutThen.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | -| record | [IfAndElseWithoutThen.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [IfAndElseWithoutThen.IfSchema](#ifschema)
schema class | +| data class | [IfAndElseWithoutThen.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [IfAndElseWithoutThen.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [IfAndElseWithoutThen.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [IfAndElseWithoutThen.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | +| data class | [IfAndElseWithoutThen.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | +| data class | [IfAndElseWithoutThen.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | +| class | [IfAndElseWithoutThen.IfSchema](#ifschema)
schema class | | sealed interface | [IfAndElseWithoutThen.ElseSchemaBoxed](#elseschemaboxed)
sealed interface for validated payloads | -| record | [IfAndElseWithoutThen.ElseSchemaBoxedVoid](#elseschemaboxedvoid)
boxed class to store validated null payloads | -| record | [IfAndElseWithoutThen.ElseSchemaBoxedBoolean](#elseschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [IfAndElseWithoutThen.ElseSchemaBoxedNumber](#elseschemaboxednumber)
boxed class to store validated Number payloads | -| record | [IfAndElseWithoutThen.ElseSchemaBoxedString](#elseschemaboxedstring)
boxed class to store validated String payloads | -| record | [IfAndElseWithoutThen.ElseSchemaBoxedList](#elseschemaboxedlist)
boxed class to store validated List payloads | -| record | [IfAndElseWithoutThen.ElseSchemaBoxedMap](#elseschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [IfAndElseWithoutThen.ElseSchema](#elseschema)
schema class | +| data class | [IfAndElseWithoutThen.ElseSchemaBoxedVoid](#elseschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [IfAndElseWithoutThen.ElseSchemaBoxedBoolean](#elseschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [IfAndElseWithoutThen.ElseSchemaBoxedNumber](#elseschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [IfAndElseWithoutThen.ElseSchemaBoxedString](#elseschemaboxedstring)
boxed class to store validated String payloads | +| data class | [IfAndElseWithoutThen.ElseSchemaBoxedList](#elseschemaboxedlist)
boxed class to store validated List payloads | +| data class | [IfAndElseWithoutThen.ElseSchemaBoxedMap](#elseschemaboxedmap)
boxed class to store validated Map payloads | +| class | [IfAndElseWithoutThen.ElseSchema](#elseschema)
schema class | ## IfAndElseWithoutThen1Boxed sealed interface IfAndElseWithoutThen1Boxed
@@ -68,7 +68,7 @@ data class that stores validated null payloads, sealed permits implementation data class IfAndElseWithoutThen1BoxedBoolean
implements [IfAndElseWithoutThen1Boxed](#ifandelsewithoutthen1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -216,7 +216,7 @@ data class that stores validated null payloads, sealed permits implementation data class IfSchemaBoxedBoolean
implements [IfSchemaBoxed](#ifschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -363,7 +363,7 @@ data class that stores validated null payloads, sealed permits implementation data class ElseSchemaBoxedBoolean
implements [ElseSchemaBoxed](#elseschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndThenWithoutElse.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndThenWithoutElse.md index 37d38b5be51..1c53118122c 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndThenWithoutElse.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAndThenWithoutElse.md @@ -11,29 +11,29 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IfAndThenWithoutElse.IfAndThenWithoutElse1Boxed](#ifandthenwithoutelse1boxed)
sealed interface for validated payloads | -| record | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedVoid](#ifandthenwithoutelse1boxedvoid)
boxed class to store validated null payloads | -| record | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedBoolean](#ifandthenwithoutelse1boxedboolean)
boxed class to store validated boolean payloads | -| record | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedNumber](#ifandthenwithoutelse1boxednumber)
boxed class to store validated Number payloads | -| record | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedString](#ifandthenwithoutelse1boxedstring)
boxed class to store validated String payloads | -| record | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedList](#ifandthenwithoutelse1boxedlist)
boxed class to store validated List payloads | -| record | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedMap](#ifandthenwithoutelse1boxedmap)
boxed class to store validated Map payloads | -| static class | [IfAndThenWithoutElse.IfAndThenWithoutElse1](#ifandthenwithoutelse1)
schema class | +| data class | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedVoid](#ifandthenwithoutelse1boxedvoid)
boxed class to store validated null payloads | +| data class | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedBoolean](#ifandthenwithoutelse1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedNumber](#ifandthenwithoutelse1boxednumber)
boxed class to store validated Number payloads | +| data class | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedString](#ifandthenwithoutelse1boxedstring)
boxed class to store validated String payloads | +| data class | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedList](#ifandthenwithoutelse1boxedlist)
boxed class to store validated List payloads | +| data class | [IfAndThenWithoutElse.IfAndThenWithoutElse1BoxedMap](#ifandthenwithoutelse1boxedmap)
boxed class to store validated Map payloads | +| class | [IfAndThenWithoutElse.IfAndThenWithoutElse1](#ifandthenwithoutelse1)
schema class | | sealed interface | [IfAndThenWithoutElse.ThenBoxed](#thenboxed)
sealed interface for validated payloads | -| record | [IfAndThenWithoutElse.ThenBoxedVoid](#thenboxedvoid)
boxed class to store validated null payloads | -| record | [IfAndThenWithoutElse.ThenBoxedBoolean](#thenboxedboolean)
boxed class to store validated boolean payloads | -| record | [IfAndThenWithoutElse.ThenBoxedNumber](#thenboxednumber)
boxed class to store validated Number payloads | -| record | [IfAndThenWithoutElse.ThenBoxedString](#thenboxedstring)
boxed class to store validated String payloads | -| record | [IfAndThenWithoutElse.ThenBoxedList](#thenboxedlist)
boxed class to store validated List payloads | -| record | [IfAndThenWithoutElse.ThenBoxedMap](#thenboxedmap)
boxed class to store validated Map payloads | -| static class | [IfAndThenWithoutElse.Then](#then)
schema class | +| data class | [IfAndThenWithoutElse.ThenBoxedVoid](#thenboxedvoid)
boxed class to store validated null payloads | +| data class | [IfAndThenWithoutElse.ThenBoxedBoolean](#thenboxedboolean)
boxed class to store validated boolean payloads | +| data class | [IfAndThenWithoutElse.ThenBoxedNumber](#thenboxednumber)
boxed class to store validated Number payloads | +| data class | [IfAndThenWithoutElse.ThenBoxedString](#thenboxedstring)
boxed class to store validated String payloads | +| data class | [IfAndThenWithoutElse.ThenBoxedList](#thenboxedlist)
boxed class to store validated List payloads | +| data class | [IfAndThenWithoutElse.ThenBoxedMap](#thenboxedmap)
boxed class to store validated Map payloads | +| class | [IfAndThenWithoutElse.Then](#then)
schema class | | sealed interface | [IfAndThenWithoutElse.IfSchemaBoxed](#ifschemaboxed)
sealed interface for validated payloads | -| record | [IfAndThenWithoutElse.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | -| record | [IfAndThenWithoutElse.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [IfAndThenWithoutElse.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | -| record | [IfAndThenWithoutElse.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | -| record | [IfAndThenWithoutElse.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | -| record | [IfAndThenWithoutElse.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [IfAndThenWithoutElse.IfSchema](#ifschema)
schema class | +| data class | [IfAndThenWithoutElse.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [IfAndThenWithoutElse.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [IfAndThenWithoutElse.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [IfAndThenWithoutElse.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | +| data class | [IfAndThenWithoutElse.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | +| data class | [IfAndThenWithoutElse.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | +| class | [IfAndThenWithoutElse.IfSchema](#ifschema)
schema class | ## IfAndThenWithoutElse1Boxed sealed interface IfAndThenWithoutElse1Boxed
@@ -68,7 +68,7 @@ data class that stores validated null payloads, sealed permits implementation data class IfAndThenWithoutElse1BoxedBoolean
implements [IfAndThenWithoutElse1Boxed](#ifandthenwithoutelse1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -216,7 +216,7 @@ data class that stores validated null payloads, sealed permits implementation data class ThenBoxedBoolean
implements [ThenBoxed](#thenboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -363,7 +363,7 @@ data class that stores validated null payloads, sealed permits implementation data class IfSchemaBoxedBoolean
implements [IfSchemaBoxed](#ifschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.md index 6dc63c3a987..396c59f6e94 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.md @@ -12,38 +12,38 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1Boxed](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxed)
sealed interface for validated payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedVoid](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedvoid)
boxed class to store validated null payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedBoolean](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedboolean)
boxed class to store validated boolean payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedNumber](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxednumber)
boxed class to store validated Number payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedString](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedstring)
boxed class to store validated String payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedList](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedlist)
boxed class to store validated List payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedMap](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedmap)
boxed class to store validated Map payloads | -| static class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1](#ifappearsattheendwhenserializedkeywordprocessingsequence1)
schema class | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedVoid](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedvoid)
boxed class to store validated null payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedBoolean](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedNumber](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxednumber)
boxed class to store validated Number payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedString](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedstring)
boxed class to store validated String payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedList](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedlist)
boxed class to store validated List payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedMap](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxedmap)
boxed class to store validated Map payloads | +| class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1](#ifappearsattheendwhenserializedkeywordprocessingsequence1)
schema class | | sealed interface | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxed](#thenboxed)
sealed interface for validated payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedVoid](#thenboxedvoid)
boxed class to store validated null payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedBoolean](#thenboxedboolean)
boxed class to store validated boolean payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedNumber](#thenboxednumber)
boxed class to store validated Number payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedString](#thenboxedstring)
boxed class to store validated String payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedList](#thenboxedlist)
boxed class to store validated List payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedMap](#thenboxedmap)
boxed class to store validated Map payloads | -| static class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.Then](#then)
schema class | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedVoid](#thenboxedvoid)
boxed class to store validated null payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedBoolean](#thenboxedboolean)
boxed class to store validated boolean payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedNumber](#thenboxednumber)
boxed class to store validated Number payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedString](#thenboxedstring)
boxed class to store validated String payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedList](#thenboxedlist)
boxed class to store validated List payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ThenBoxedMap](#thenboxedmap)
boxed class to store validated Map payloads | +| class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.Then](#then)
schema class | | enum | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.StringThenConst](#stringthenconst)
String enum | | sealed interface | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxed](#ifschemaboxed)
sealed interface for validated payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchema](#ifschema)
schema class | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | +| class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.IfSchema](#ifschema)
schema class | | sealed interface | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxed](#elseschemaboxed)
sealed interface for validated payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedVoid](#elseschemaboxedvoid)
boxed class to store validated null payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedBoolean](#elseschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedNumber](#elseschemaboxednumber)
boxed class to store validated Number payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedString](#elseschemaboxedstring)
boxed class to store validated String payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedList](#elseschemaboxedlist)
boxed class to store validated List payloads | -| record | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedMap](#elseschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchema](#elseschema)
schema class | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedVoid](#elseschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedBoolean](#elseschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedNumber](#elseschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedString](#elseschemaboxedstring)
boxed class to store validated String payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedList](#elseschemaboxedlist)
boxed class to store validated List payloads | +| data class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchemaBoxedMap](#elseschemaboxedmap)
boxed class to store validated Map payloads | +| class | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.ElseSchema](#elseschema)
schema class | | enum | [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence.StringElseConst](#stringelseconst)
String enum | ## IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1Boxed @@ -79,7 +79,7 @@ data class that stores validated null payloads, sealed permits implementation data class IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1BoxedBoolean
implements [IfAppearsAtTheEndWhenSerializedKeywordProcessingSequence1Boxed](#ifappearsattheendwhenserializedkeywordprocessingsequence1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -228,7 +228,7 @@ data class that stores validated null payloads, sealed permits implementation data class ThenBoxedBoolean
implements [ThenBoxed](#thenboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -386,7 +386,7 @@ data class that stores validated null payloads, sealed permits implementation data class IfSchemaBoxedBoolean
implements [IfSchemaBoxed](#ifschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -533,7 +533,7 @@ data class that stores validated null payloads, sealed permits implementation data class ElseSchemaBoxedBoolean
implements [ElseSchemaBoxed](#elseschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreElseWithoutIf.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreElseWithoutIf.md index 26aa36427a8..83b49187ec7 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreElseWithoutIf.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreElseWithoutIf.md @@ -12,21 +12,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1Boxed](#ignoreelsewithoutif1boxed)
sealed interface for validated payloads | -| record | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedVoid](#ignoreelsewithoutif1boxedvoid)
boxed class to store validated null payloads | -| record | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedBoolean](#ignoreelsewithoutif1boxedboolean)
boxed class to store validated boolean payloads | -| record | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedNumber](#ignoreelsewithoutif1boxednumber)
boxed class to store validated Number payloads | -| record | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedString](#ignoreelsewithoutif1boxedstring)
boxed class to store validated String payloads | -| record | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedList](#ignoreelsewithoutif1boxedlist)
boxed class to store validated List payloads | -| record | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedMap](#ignoreelsewithoutif1boxedmap)
boxed class to store validated Map payloads | -| static class | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1](#ignoreelsewithoutif1)
schema class | +| data class | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedVoid](#ignoreelsewithoutif1boxedvoid)
boxed class to store validated null payloads | +| data class | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedBoolean](#ignoreelsewithoutif1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedNumber](#ignoreelsewithoutif1boxednumber)
boxed class to store validated Number payloads | +| data class | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedString](#ignoreelsewithoutif1boxedstring)
boxed class to store validated String payloads | +| data class | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedList](#ignoreelsewithoutif1boxedlist)
boxed class to store validated List payloads | +| data class | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1BoxedMap](#ignoreelsewithoutif1boxedmap)
boxed class to store validated Map payloads | +| class | [IgnoreElseWithoutIf.IgnoreElseWithoutIf1](#ignoreelsewithoutif1)
schema class | | sealed interface | [IgnoreElseWithoutIf.ElseSchemaBoxed](#elseschemaboxed)
sealed interface for validated payloads | -| record | [IgnoreElseWithoutIf.ElseSchemaBoxedVoid](#elseschemaboxedvoid)
boxed class to store validated null payloads | -| record | [IgnoreElseWithoutIf.ElseSchemaBoxedBoolean](#elseschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [IgnoreElseWithoutIf.ElseSchemaBoxedNumber](#elseschemaboxednumber)
boxed class to store validated Number payloads | -| record | [IgnoreElseWithoutIf.ElseSchemaBoxedString](#elseschemaboxedstring)
boxed class to store validated String payloads | -| record | [IgnoreElseWithoutIf.ElseSchemaBoxedList](#elseschemaboxedlist)
boxed class to store validated List payloads | -| record | [IgnoreElseWithoutIf.ElseSchemaBoxedMap](#elseschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [IgnoreElseWithoutIf.ElseSchema](#elseschema)
schema class | +| data class | [IgnoreElseWithoutIf.ElseSchemaBoxedVoid](#elseschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [IgnoreElseWithoutIf.ElseSchemaBoxedBoolean](#elseschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [IgnoreElseWithoutIf.ElseSchemaBoxedNumber](#elseschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [IgnoreElseWithoutIf.ElseSchemaBoxedString](#elseschemaboxedstring)
boxed class to store validated String payloads | +| data class | [IgnoreElseWithoutIf.ElseSchemaBoxedList](#elseschemaboxedlist)
boxed class to store validated List payloads | +| data class | [IgnoreElseWithoutIf.ElseSchemaBoxedMap](#elseschemaboxedmap)
boxed class to store validated Map payloads | +| class | [IgnoreElseWithoutIf.ElseSchema](#elseschema)
schema class | | enum | [IgnoreElseWithoutIf.StringElseConst](#stringelseconst)
String enum | ## IgnoreElseWithoutIf1Boxed @@ -62,7 +62,7 @@ data class that stores validated null payloads, sealed permits implementation data class IgnoreElseWithoutIf1BoxedBoolean
implements [IgnoreElseWithoutIf1Boxed](#ignoreelsewithoutif1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -209,7 +209,7 @@ data class that stores validated null payloads, sealed permits implementation data class ElseSchemaBoxedBoolean
implements [ElseSchemaBoxed](#elseschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreIfWithoutThenOrElse.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreIfWithoutThenOrElse.md index 967e446fc9f..8b489758055 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreIfWithoutThenOrElse.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreIfWithoutThenOrElse.md @@ -12,21 +12,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1Boxed](#ignoreifwithoutthenorelse1boxed)
sealed interface for validated payloads | -| record | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedVoid](#ignoreifwithoutthenorelse1boxedvoid)
boxed class to store validated null payloads | -| record | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedBoolean](#ignoreifwithoutthenorelse1boxedboolean)
boxed class to store validated boolean payloads | -| record | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedNumber](#ignoreifwithoutthenorelse1boxednumber)
boxed class to store validated Number payloads | -| record | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedString](#ignoreifwithoutthenorelse1boxedstring)
boxed class to store validated String payloads | -| record | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedList](#ignoreifwithoutthenorelse1boxedlist)
boxed class to store validated List payloads | -| record | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedMap](#ignoreifwithoutthenorelse1boxedmap)
boxed class to store validated Map payloads | -| static class | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1](#ignoreifwithoutthenorelse1)
schema class | +| data class | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedVoid](#ignoreifwithoutthenorelse1boxedvoid)
boxed class to store validated null payloads | +| data class | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedBoolean](#ignoreifwithoutthenorelse1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedNumber](#ignoreifwithoutthenorelse1boxednumber)
boxed class to store validated Number payloads | +| data class | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedString](#ignoreifwithoutthenorelse1boxedstring)
boxed class to store validated String payloads | +| data class | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedList](#ignoreifwithoutthenorelse1boxedlist)
boxed class to store validated List payloads | +| data class | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1BoxedMap](#ignoreifwithoutthenorelse1boxedmap)
boxed class to store validated Map payloads | +| class | [IgnoreIfWithoutThenOrElse.IgnoreIfWithoutThenOrElse1](#ignoreifwithoutthenorelse1)
schema class | | sealed interface | [IgnoreIfWithoutThenOrElse.IfSchemaBoxed](#ifschemaboxed)
sealed interface for validated payloads | -| record | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | -| record | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | -| record | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | -| record | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | -| record | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [IgnoreIfWithoutThenOrElse.IfSchema](#ifschema)
schema class | +| data class | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | +| data class | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | +| data class | [IgnoreIfWithoutThenOrElse.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | +| class | [IgnoreIfWithoutThenOrElse.IfSchema](#ifschema)
schema class | | enum | [IgnoreIfWithoutThenOrElse.StringIfConst](#stringifconst)
String enum | ## IgnoreIfWithoutThenOrElse1Boxed @@ -62,7 +62,7 @@ data class that stores validated null payloads, sealed permits implementation data class IgnoreIfWithoutThenOrElse1BoxedBoolean
implements [IgnoreIfWithoutThenOrElse1Boxed](#ignoreifwithoutthenorelse1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -209,7 +209,7 @@ data class that stores validated null payloads, sealed permits implementation data class IfSchemaBoxedBoolean
implements [IfSchemaBoxed](#ifschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreThenWithoutIf.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreThenWithoutIf.md index 3465c09dff0..62df9455f4c 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreThenWithoutIf.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IgnoreThenWithoutIf.md @@ -12,21 +12,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1Boxed](#ignorethenwithoutif1boxed)
sealed interface for validated payloads | -| record | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedVoid](#ignorethenwithoutif1boxedvoid)
boxed class to store validated null payloads | -| record | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedBoolean](#ignorethenwithoutif1boxedboolean)
boxed class to store validated boolean payloads | -| record | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedNumber](#ignorethenwithoutif1boxednumber)
boxed class to store validated Number payloads | -| record | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedString](#ignorethenwithoutif1boxedstring)
boxed class to store validated String payloads | -| record | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedList](#ignorethenwithoutif1boxedlist)
boxed class to store validated List payloads | -| record | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedMap](#ignorethenwithoutif1boxedmap)
boxed class to store validated Map payloads | -| static class | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1](#ignorethenwithoutif1)
schema class | +| data class | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedVoid](#ignorethenwithoutif1boxedvoid)
boxed class to store validated null payloads | +| data class | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedBoolean](#ignorethenwithoutif1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedNumber](#ignorethenwithoutif1boxednumber)
boxed class to store validated Number payloads | +| data class | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedString](#ignorethenwithoutif1boxedstring)
boxed class to store validated String payloads | +| data class | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedList](#ignorethenwithoutif1boxedlist)
boxed class to store validated List payloads | +| data class | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1BoxedMap](#ignorethenwithoutif1boxedmap)
boxed class to store validated Map payloads | +| class | [IgnoreThenWithoutIf.IgnoreThenWithoutIf1](#ignorethenwithoutif1)
schema class | | sealed interface | [IgnoreThenWithoutIf.ThenBoxed](#thenboxed)
sealed interface for validated payloads | -| record | [IgnoreThenWithoutIf.ThenBoxedVoid](#thenboxedvoid)
boxed class to store validated null payloads | -| record | [IgnoreThenWithoutIf.ThenBoxedBoolean](#thenboxedboolean)
boxed class to store validated boolean payloads | -| record | [IgnoreThenWithoutIf.ThenBoxedNumber](#thenboxednumber)
boxed class to store validated Number payloads | -| record | [IgnoreThenWithoutIf.ThenBoxedString](#thenboxedstring)
boxed class to store validated String payloads | -| record | [IgnoreThenWithoutIf.ThenBoxedList](#thenboxedlist)
boxed class to store validated List payloads | -| record | [IgnoreThenWithoutIf.ThenBoxedMap](#thenboxedmap)
boxed class to store validated Map payloads | -| static class | [IgnoreThenWithoutIf.Then](#then)
schema class | +| data class | [IgnoreThenWithoutIf.ThenBoxedVoid](#thenboxedvoid)
boxed class to store validated null payloads | +| data class | [IgnoreThenWithoutIf.ThenBoxedBoolean](#thenboxedboolean)
boxed class to store validated boolean payloads | +| data class | [IgnoreThenWithoutIf.ThenBoxedNumber](#thenboxednumber)
boxed class to store validated Number payloads | +| data class | [IgnoreThenWithoutIf.ThenBoxedString](#thenboxedstring)
boxed class to store validated String payloads | +| data class | [IgnoreThenWithoutIf.ThenBoxedList](#thenboxedlist)
boxed class to store validated List payloads | +| data class | [IgnoreThenWithoutIf.ThenBoxedMap](#thenboxedmap)
boxed class to store validated Map payloads | +| class | [IgnoreThenWithoutIf.Then](#then)
schema class | | enum | [IgnoreThenWithoutIf.StringThenConst](#stringthenconst)
String enum | ## IgnoreThenWithoutIf1Boxed @@ -62,7 +62,7 @@ data class that stores validated null payloads, sealed permits implementation data class IgnoreThenWithoutIf1BoxedBoolean
implements [IgnoreThenWithoutIf1Boxed](#ignorethenwithoutif1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -209,7 +209,7 @@ data class that stores validated null payloads, sealed permits implementation data class ThenBoxedBoolean
implements [ThenBoxed](#thenboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IntegerTypeMatchesIntegers.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IntegerTypeMatchesIntegers.md index 39131a09a05..34c8485ddc7 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IntegerTypeMatchesIntegers.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IntegerTypeMatchesIntegers.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IntegerTypeMatchesIntegers.IntegerTypeMatchesIntegers1Boxed](#integertypematchesintegers1boxed)
sealed interface for validated payloads | -| record | [IntegerTypeMatchesIntegers.IntegerTypeMatchesIntegers1BoxedNumber](#integertypematchesintegers1boxednumber)
boxed class to store validated Number payloads | -| static class | [IntegerTypeMatchesIntegers.IntegerTypeMatchesIntegers1](#integertypematchesintegers1)
schema class | +| data class | [IntegerTypeMatchesIntegers.IntegerTypeMatchesIntegers1BoxedNumber](#integertypematchesintegers1boxednumber)
boxed class to store validated Number payloads | +| class | [IntegerTypeMatchesIntegers.IntegerTypeMatchesIntegers1](#integertypematchesintegers1)
schema class | ## IntegerTypeMatchesIntegers1Boxed sealed interface IntegerTypeMatchesIntegers1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv4Format.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv4Format.md index c783a2b1273..5ce5ef29e2d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv4Format.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv4Format.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Ipv4Format.Ipv4Format1Boxed](#ipv4format1boxed)
sealed interface for validated payloads | -| record | [Ipv4Format.Ipv4Format1BoxedVoid](#ipv4format1boxedvoid)
boxed class to store validated null payloads | -| record | [Ipv4Format.Ipv4Format1BoxedBoolean](#ipv4format1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Ipv4Format.Ipv4Format1BoxedNumber](#ipv4format1boxednumber)
boxed class to store validated Number payloads | -| record | [Ipv4Format.Ipv4Format1BoxedString](#ipv4format1boxedstring)
boxed class to store validated String payloads | -| record | [Ipv4Format.Ipv4Format1BoxedList](#ipv4format1boxedlist)
boxed class to store validated List payloads | -| record | [Ipv4Format.Ipv4Format1BoxedMap](#ipv4format1boxedmap)
boxed class to store validated Map payloads | -| static class | [Ipv4Format.Ipv4Format1](#ipv4format1)
schema class | +| data class | [Ipv4Format.Ipv4Format1BoxedVoid](#ipv4format1boxedvoid)
boxed class to store validated null payloads | +| data class | [Ipv4Format.Ipv4Format1BoxedBoolean](#ipv4format1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Ipv4Format.Ipv4Format1BoxedNumber](#ipv4format1boxednumber)
boxed class to store validated Number payloads | +| data class | [Ipv4Format.Ipv4Format1BoxedString](#ipv4format1boxedstring)
boxed class to store validated String payloads | +| data class | [Ipv4Format.Ipv4Format1BoxedList](#ipv4format1boxedlist)
boxed class to store validated List payloads | +| data class | [Ipv4Format.Ipv4Format1BoxedMap](#ipv4format1boxedmap)
boxed class to store validated Map payloads | +| class | [Ipv4Format.Ipv4Format1](#ipv4format1)
schema class | ## Ipv4Format1Boxed sealed interface Ipv4Format1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class Ipv4Format1BoxedBoolean
implements [Ipv4Format1Boxed](#ipv4format1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv6Format.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv6Format.md index 17cb88f4fc7..3a0e59be91b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv6Format.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Ipv6Format.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Ipv6Format.Ipv6Format1Boxed](#ipv6format1boxed)
sealed interface for validated payloads | -| record | [Ipv6Format.Ipv6Format1BoxedVoid](#ipv6format1boxedvoid)
boxed class to store validated null payloads | -| record | [Ipv6Format.Ipv6Format1BoxedBoolean](#ipv6format1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Ipv6Format.Ipv6Format1BoxedNumber](#ipv6format1boxednumber)
boxed class to store validated Number payloads | -| record | [Ipv6Format.Ipv6Format1BoxedString](#ipv6format1boxedstring)
boxed class to store validated String payloads | -| record | [Ipv6Format.Ipv6Format1BoxedList](#ipv6format1boxedlist)
boxed class to store validated List payloads | -| record | [Ipv6Format.Ipv6Format1BoxedMap](#ipv6format1boxedmap)
boxed class to store validated Map payloads | -| static class | [Ipv6Format.Ipv6Format1](#ipv6format1)
schema class | +| data class | [Ipv6Format.Ipv6Format1BoxedVoid](#ipv6format1boxedvoid)
boxed class to store validated null payloads | +| data class | [Ipv6Format.Ipv6Format1BoxedBoolean](#ipv6format1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Ipv6Format.Ipv6Format1BoxedNumber](#ipv6format1boxednumber)
boxed class to store validated Number payloads | +| data class | [Ipv6Format.Ipv6Format1BoxedString](#ipv6format1boxedstring)
boxed class to store validated String payloads | +| data class | [Ipv6Format.Ipv6Format1BoxedList](#ipv6format1boxedlist)
boxed class to store validated List payloads | +| data class | [Ipv6Format.Ipv6Format1BoxedMap](#ipv6format1boxedmap)
boxed class to store validated Map payloads | +| class | [Ipv6Format.Ipv6Format1](#ipv6format1)
schema class | ## Ipv6Format1Boxed sealed interface Ipv6Format1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class Ipv6Format1BoxedBoolean
implements [Ipv6Format1Boxed](#ipv6format1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriFormat.md index f63a95dbc35..74051e28217 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IriFormat.IriFormat1Boxed](#iriformat1boxed)
sealed interface for validated payloads | -| record | [IriFormat.IriFormat1BoxedVoid](#iriformat1boxedvoid)
boxed class to store validated null payloads | -| record | [IriFormat.IriFormat1BoxedBoolean](#iriformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [IriFormat.IriFormat1BoxedNumber](#iriformat1boxednumber)
boxed class to store validated Number payloads | -| record | [IriFormat.IriFormat1BoxedString](#iriformat1boxedstring)
boxed class to store validated String payloads | -| record | [IriFormat.IriFormat1BoxedList](#iriformat1boxedlist)
boxed class to store validated List payloads | -| record | [IriFormat.IriFormat1BoxedMap](#iriformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [IriFormat.IriFormat1](#iriformat1)
schema class | +| data class | [IriFormat.IriFormat1BoxedVoid](#iriformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [IriFormat.IriFormat1BoxedBoolean](#iriformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [IriFormat.IriFormat1BoxedNumber](#iriformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [IriFormat.IriFormat1BoxedString](#iriformat1boxedstring)
boxed class to store validated String payloads | +| data class | [IriFormat.IriFormat1BoxedList](#iriformat1boxedlist)
boxed class to store validated List payloads | +| data class | [IriFormat.IriFormat1BoxedMap](#iriformat1boxedmap)
boxed class to store validated Map payloads | +| class | [IriFormat.IriFormat1](#iriformat1)
schema class | ## IriFormat1Boxed sealed interface IriFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class IriFormat1BoxedBoolean
implements [IriFormat1Boxed](#iriformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriReferenceFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriReferenceFormat.md index 99cc2225e5b..bdf8a684946 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriReferenceFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/IriReferenceFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [IriReferenceFormat.IriReferenceFormat1Boxed](#irireferenceformat1boxed)
sealed interface for validated payloads | -| record | [IriReferenceFormat.IriReferenceFormat1BoxedVoid](#irireferenceformat1boxedvoid)
boxed class to store validated null payloads | -| record | [IriReferenceFormat.IriReferenceFormat1BoxedBoolean](#irireferenceformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [IriReferenceFormat.IriReferenceFormat1BoxedNumber](#irireferenceformat1boxednumber)
boxed class to store validated Number payloads | -| record | [IriReferenceFormat.IriReferenceFormat1BoxedString](#irireferenceformat1boxedstring)
boxed class to store validated String payloads | -| record | [IriReferenceFormat.IriReferenceFormat1BoxedList](#irireferenceformat1boxedlist)
boxed class to store validated List payloads | -| record | [IriReferenceFormat.IriReferenceFormat1BoxedMap](#irireferenceformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [IriReferenceFormat.IriReferenceFormat1](#irireferenceformat1)
schema class | +| data class | [IriReferenceFormat.IriReferenceFormat1BoxedVoid](#irireferenceformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [IriReferenceFormat.IriReferenceFormat1BoxedBoolean](#irireferenceformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [IriReferenceFormat.IriReferenceFormat1BoxedNumber](#irireferenceformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [IriReferenceFormat.IriReferenceFormat1BoxedString](#irireferenceformat1boxedstring)
boxed class to store validated String payloads | +| data class | [IriReferenceFormat.IriReferenceFormat1BoxedList](#irireferenceformat1boxedlist)
boxed class to store validated List payloads | +| data class | [IriReferenceFormat.IriReferenceFormat1BoxedMap](#irireferenceformat1boxedmap)
boxed class to store validated Map payloads | +| class | [IriReferenceFormat.IriReferenceFormat1](#irireferenceformat1)
schema class | ## IriReferenceFormat1Boxed sealed interface IriReferenceFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class IriReferenceFormat1BoxedBoolean
implements [IriReferenceFormat1Boxed](#irireferenceformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsContains.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsContains.md index 85d2708ddf8..375df1c5d10 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsContains.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsContains.md @@ -13,26 +13,26 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ItemsContains.ItemsContains1Boxed](#itemscontains1boxed)
sealed interface for validated payloads | -| record | [ItemsContains.ItemsContains1BoxedList](#itemscontains1boxedlist)
boxed class to store validated List payloads | -| static class | [ItemsContains.ItemsContains1](#itemscontains1)
schema class | -| static class | [ItemsContains.ItemsContainsListBuilder](#itemscontainslistbuilder)
builder for List payloads | -| static class | [ItemsContains.ItemsContainsList](#itemscontainslist)
output class for List payloads | +| data class | [ItemsContains.ItemsContains1BoxedList](#itemscontains1boxedlist)
boxed class to store validated List payloads | +| class | [ItemsContains.ItemsContains1](#itemscontains1)
schema class | +| class | [ItemsContains.ItemsContainsListBuilder](#itemscontainslistbuilder)
builder for List payloads | +| class | [ItemsContains.ItemsContainsList](#itemscontainslist)
output class for List payloads | | sealed interface | [ItemsContains.ItemsBoxed](#itemsboxed)
sealed interface for validated payloads | -| record | [ItemsContains.ItemsBoxedVoid](#itemsboxedvoid)
boxed class to store validated null payloads | -| record | [ItemsContains.ItemsBoxedBoolean](#itemsboxedboolean)
boxed class to store validated boolean payloads | -| record | [ItemsContains.ItemsBoxedNumber](#itemsboxednumber)
boxed class to store validated Number payloads | -| record | [ItemsContains.ItemsBoxedString](#itemsboxedstring)
boxed class to store validated String payloads | -| record | [ItemsContains.ItemsBoxedList](#itemsboxedlist)
boxed class to store validated List payloads | -| record | [ItemsContains.ItemsBoxedMap](#itemsboxedmap)
boxed class to store validated Map payloads | -| static class | [ItemsContains.Items](#items)
schema class | +| data class | [ItemsContains.ItemsBoxedVoid](#itemsboxedvoid)
boxed class to store validated null payloads | +| data class | [ItemsContains.ItemsBoxedBoolean](#itemsboxedboolean)
boxed class to store validated boolean payloads | +| data class | [ItemsContains.ItemsBoxedNumber](#itemsboxednumber)
boxed class to store validated Number payloads | +| data class | [ItemsContains.ItemsBoxedString](#itemsboxedstring)
boxed class to store validated String payloads | +| data class | [ItemsContains.ItemsBoxedList](#itemsboxedlist)
boxed class to store validated List payloads | +| data class | [ItemsContains.ItemsBoxedMap](#itemsboxedmap)
boxed class to store validated Map payloads | +| class | [ItemsContains.Items](#items)
schema class | | sealed interface | [ItemsContains.ContainsBoxed](#containsboxed)
sealed interface for validated payloads | -| record | [ItemsContains.ContainsBoxedVoid](#containsboxedvoid)
boxed class to store validated null payloads | -| record | [ItemsContains.ContainsBoxedBoolean](#containsboxedboolean)
boxed class to store validated boolean payloads | -| record | [ItemsContains.ContainsBoxedNumber](#containsboxednumber)
boxed class to store validated Number payloads | -| record | [ItemsContains.ContainsBoxedString](#containsboxedstring)
boxed class to store validated String payloads | -| record | [ItemsContains.ContainsBoxedList](#containsboxedlist)
boxed class to store validated List payloads | -| record | [ItemsContains.ContainsBoxedMap](#containsboxedmap)
boxed class to store validated Map payloads | -| static class | [ItemsContains.Contains](#contains)
schema class | +| data class | [ItemsContains.ContainsBoxedVoid](#containsboxedvoid)
boxed class to store validated null payloads | +| data class | [ItemsContains.ContainsBoxedBoolean](#containsboxedboolean)
boxed class to store validated boolean payloads | +| data class | [ItemsContains.ContainsBoxedNumber](#containsboxednumber)
boxed class to store validated Number payloads | +| data class | [ItemsContains.ContainsBoxedString](#containsboxedstring)
boxed class to store validated String payloads | +| data class | [ItemsContains.ContainsBoxedList](#containsboxedlist)
boxed class to store validated List payloads | +| data class | [ItemsContains.ContainsBoxedMap](#containsboxedmap)
boxed class to store validated Map payloads | +| class | [ItemsContains.Contains](#contains)
schema class | ## ItemsContains1Boxed sealed interface ItemsContains1Boxed
@@ -170,7 +170,7 @@ data class that stores validated null payloads, sealed permits implementation data class ItemsBoxedBoolean
implements [ItemsBoxed](#itemsboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -317,7 +317,7 @@ data class that stores validated null payloads, sealed permits implementation data class ContainsBoxedBoolean
implements [ContainsBoxed](#containsboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsDoesNotLookInApplicatorsValidCase.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsDoesNotLookInApplicatorsValidCase.md index fcee43fa841..417d297e88a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsDoesNotLookInApplicatorsValidCase.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsDoesNotLookInApplicatorsValidCase.md @@ -13,18 +13,18 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCase1Boxed](#itemsdoesnotlookinapplicatorsvalidcase1boxed)
sealed interface for validated payloads | -| record | [ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCase1BoxedList](#itemsdoesnotlookinapplicatorsvalidcase1boxedlist)
boxed class to store validated List payloads | -| static class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCase1](#itemsdoesnotlookinapplicatorsvalidcase1)
schema class | -| static class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCaseListBuilder](#itemsdoesnotlookinapplicatorsvalidcaselistbuilder)
builder for List payloads | -| static class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCaseList](#itemsdoesnotlookinapplicatorsvalidcaselist)
output class for List payloads | +| data class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCase1BoxedList](#itemsdoesnotlookinapplicatorsvalidcase1boxedlist)
boxed class to store validated List payloads | +| class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCase1](#itemsdoesnotlookinapplicatorsvalidcase1)
schema class | +| class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCaseListBuilder](#itemsdoesnotlookinapplicatorsvalidcaselistbuilder)
builder for List payloads | +| class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsDoesNotLookInApplicatorsValidCaseList](#itemsdoesnotlookinapplicatorsvalidcaselist)
output class for List payloads | | sealed interface | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxed](#itemsboxed)
sealed interface for validated payloads | -| record | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedVoid](#itemsboxedvoid)
boxed class to store validated null payloads | -| record | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedBoolean](#itemsboxedboolean)
boxed class to store validated boolean payloads | -| record | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedNumber](#itemsboxednumber)
boxed class to store validated Number payloads | -| record | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedString](#itemsboxedstring)
boxed class to store validated String payloads | -| record | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedList](#itemsboxedlist)
boxed class to store validated List payloads | -| record | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedMap](#itemsboxedmap)
boxed class to store validated Map payloads | -| static class | [ItemsDoesNotLookInApplicatorsValidCase.Items](#items)
schema class | +| data class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedVoid](#itemsboxedvoid)
boxed class to store validated null payloads | +| data class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedBoolean](#itemsboxedboolean)
boxed class to store validated boolean payloads | +| data class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedNumber](#itemsboxednumber)
boxed class to store validated Number payloads | +| data class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedString](#itemsboxedstring)
boxed class to store validated String payloads | +| data class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedList](#itemsboxedlist)
boxed class to store validated List payloads | +| data class | [ItemsDoesNotLookInApplicatorsValidCase.ItemsBoxedMap](#itemsboxedmap)
boxed class to store validated Map payloads | +| class | [ItemsDoesNotLookInApplicatorsValidCase.Items](#items)
schema class | ## ItemsDoesNotLookInApplicatorsValidCase1Boxed sealed interface ItemsDoesNotLookInApplicatorsValidCase1Boxed
@@ -161,7 +161,7 @@ data class that stores validated null payloads, sealed permits implementation data class ItemsBoxedBoolean
implements [ItemsBoxed](#itemsboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsWithNullInstanceElements.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsWithNullInstanceElements.md index 3004e234778..3270e0c27f0 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsWithNullInstanceElements.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ItemsWithNullInstanceElements.md @@ -13,13 +13,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ItemsWithNullInstanceElements.ItemsWithNullInstanceElements1Boxed](#itemswithnullinstanceelements1boxed)
sealed interface for validated payloads | -| record | [ItemsWithNullInstanceElements.ItemsWithNullInstanceElements1BoxedList](#itemswithnullinstanceelements1boxedlist)
boxed class to store validated List payloads | -| static class | [ItemsWithNullInstanceElements.ItemsWithNullInstanceElements1](#itemswithnullinstanceelements1)
schema class | -| static class | [ItemsWithNullInstanceElements.ItemsWithNullInstanceElementsListBuilder](#itemswithnullinstanceelementslistbuilder)
builder for List payloads | -| static class | [ItemsWithNullInstanceElements.ItemsWithNullInstanceElementsList](#itemswithnullinstanceelementslist)
output class for List payloads | +| data class | [ItemsWithNullInstanceElements.ItemsWithNullInstanceElements1BoxedList](#itemswithnullinstanceelements1boxedlist)
boxed class to store validated List payloads | +| class | [ItemsWithNullInstanceElements.ItemsWithNullInstanceElements1](#itemswithnullinstanceelements1)
schema class | +| class | [ItemsWithNullInstanceElements.ItemsWithNullInstanceElementsListBuilder](#itemswithnullinstanceelementslistbuilder)
builder for List payloads | +| class | [ItemsWithNullInstanceElements.ItemsWithNullInstanceElementsList](#itemswithnullinstanceelementslist)
output class for List payloads | | sealed interface | [ItemsWithNullInstanceElements.ItemsBoxed](#itemsboxed)
sealed interface for validated payloads | -| record | [ItemsWithNullInstanceElements.ItemsBoxedVoid](#itemsboxedvoid)
boxed class to store validated null payloads | -| static class | [ItemsWithNullInstanceElements.Items](#items)
schema class | +| data class | [ItemsWithNullInstanceElements.ItemsBoxedVoid](#itemsboxedvoid)
boxed class to store validated null payloads | +| class | [ItemsWithNullInstanceElements.Items](#items)
schema class | ## ItemsWithNullInstanceElements1Boxed sealed interface ItemsWithNullInstanceElements1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md index 586c19a0f14..7efb406a38d 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/JsonPointerFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [JsonPointerFormat.JsonPointerFormat1Boxed](#jsonpointerformat1boxed)
sealed interface for validated payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedVoid](#jsonpointerformat1boxedvoid)
boxed class to store validated null payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedBoolean](#jsonpointerformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedNumber](#jsonpointerformat1boxednumber)
boxed class to store validated Number payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedString](#jsonpointerformat1boxedstring)
boxed class to store validated String payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedList](#jsonpointerformat1boxedlist)
boxed class to store validated List payloads | -| record | [JsonPointerFormat.JsonPointerFormat1BoxedMap](#jsonpointerformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [JsonPointerFormat.JsonPointerFormat1](#jsonpointerformat1)
schema class | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedVoid](#jsonpointerformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedBoolean](#jsonpointerformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedNumber](#jsonpointerformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedString](#jsonpointerformat1boxedstring)
boxed class to store validated String payloads | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedList](#jsonpointerformat1boxedlist)
boxed class to store validated List payloads | +| data class | [JsonPointerFormat.JsonPointerFormat1BoxedMap](#jsonpointerformat1boxedmap)
boxed class to store validated Map payloads | +| class | [JsonPointerFormat.JsonPointerFormat1](#jsonpointerformat1)
schema class | ## JsonPointerFormat1Boxed sealed interface JsonPointerFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class JsonPointerFormat1BoxedBoolean
implements [JsonPointerFormat1Boxed](#jsonpointerformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxcontainsWithoutContainsIsIgnored.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxcontainsWithoutContainsIsIgnored.md index ef4ca40d19b..a95e7ee36cc 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxcontainsWithoutContainsIsIgnored.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxcontainsWithoutContainsIsIgnored.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1Boxed](#maxcontainswithoutcontainsisignored1boxed)
sealed interface for validated payloads | -| record | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedVoid](#maxcontainswithoutcontainsisignored1boxedvoid)
boxed class to store validated null payloads | -| record | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedBoolean](#maxcontainswithoutcontainsisignored1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedNumber](#maxcontainswithoutcontainsisignored1boxednumber)
boxed class to store validated Number payloads | -| record | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedString](#maxcontainswithoutcontainsisignored1boxedstring)
boxed class to store validated String payloads | -| record | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedList](#maxcontainswithoutcontainsisignored1boxedlist)
boxed class to store validated List payloads | -| record | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedMap](#maxcontainswithoutcontainsisignored1boxedmap)
boxed class to store validated Map payloads | -| static class | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1](#maxcontainswithoutcontainsisignored1)
schema class | +| data class | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedVoid](#maxcontainswithoutcontainsisignored1boxedvoid)
boxed class to store validated null payloads | +| data class | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedBoolean](#maxcontainswithoutcontainsisignored1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedNumber](#maxcontainswithoutcontainsisignored1boxednumber)
boxed class to store validated Number payloads | +| data class | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedString](#maxcontainswithoutcontainsisignored1boxedstring)
boxed class to store validated String payloads | +| data class | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedList](#maxcontainswithoutcontainsisignored1boxedlist)
boxed class to store validated List payloads | +| data class | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1BoxedMap](#maxcontainswithoutcontainsisignored1boxedmap)
boxed class to store validated Map payloads | +| class | [MaxcontainsWithoutContainsIsIgnored.MaxcontainsWithoutContainsIsIgnored1](#maxcontainswithoutcontainsisignored1)
schema class | ## MaxcontainsWithoutContainsIsIgnored1Boxed sealed interface MaxcontainsWithoutContainsIsIgnored1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MaxcontainsWithoutContainsIsIgnored1BoxedBoolean
implements [MaxcontainsWithoutContainsIsIgnored1Boxed](#maxcontainswithoutcontainsisignored1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidation.md index 690d7c14985..6702dd250eb 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MaximumValidation.MaximumValidation1Boxed](#maximumvalidation1boxed)
sealed interface for validated payloads | -| record | [MaximumValidation.MaximumValidation1BoxedVoid](#maximumvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MaximumValidation.MaximumValidation1BoxedBoolean](#maximumvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MaximumValidation.MaximumValidation1BoxedNumber](#maximumvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MaximumValidation.MaximumValidation1BoxedString](#maximumvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MaximumValidation.MaximumValidation1BoxedList](#maximumvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MaximumValidation.MaximumValidation1BoxedMap](#maximumvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MaximumValidation.MaximumValidation1](#maximumvalidation1)
schema class | +| data class | [MaximumValidation.MaximumValidation1BoxedVoid](#maximumvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MaximumValidation.MaximumValidation1BoxedBoolean](#maximumvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MaximumValidation.MaximumValidation1BoxedNumber](#maximumvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MaximumValidation.MaximumValidation1BoxedString](#maximumvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MaximumValidation.MaximumValidation1BoxedList](#maximumvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MaximumValidation.MaximumValidation1BoxedMap](#maximumvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MaximumValidation.MaximumValidation1](#maximumvalidation1)
schema class | ## MaximumValidation1Boxed sealed interface MaximumValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MaximumValidation1BoxedBoolean
implements [MaximumValidation1Boxed](#maximumvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md index 4cfa5c3d815..710091b79c3 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaximumValidationWithUnsignedInteger.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1Boxed](#maximumvalidationwithunsignedinteger1boxed)
sealed interface for validated payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedVoid](#maximumvalidationwithunsignedinteger1boxedvoid)
boxed class to store validated null payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedBoolean](#maximumvalidationwithunsignedinteger1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedNumber](#maximumvalidationwithunsignedinteger1boxednumber)
boxed class to store validated Number payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedString](#maximumvalidationwithunsignedinteger1boxedstring)
boxed class to store validated String payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedList](#maximumvalidationwithunsignedinteger1boxedlist)
boxed class to store validated List payloads | -| record | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedMap](#maximumvalidationwithunsignedinteger1boxedmap)
boxed class to store validated Map payloads | -| static class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1](#maximumvalidationwithunsignedinteger1)
schema class | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedVoid](#maximumvalidationwithunsignedinteger1boxedvoid)
boxed class to store validated null payloads | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedBoolean](#maximumvalidationwithunsignedinteger1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedNumber](#maximumvalidationwithunsignedinteger1boxednumber)
boxed class to store validated Number payloads | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedString](#maximumvalidationwithunsignedinteger1boxedstring)
boxed class to store validated String payloads | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedList](#maximumvalidationwithunsignedinteger1boxedlist)
boxed class to store validated List payloads | +| data class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1BoxedMap](#maximumvalidationwithunsignedinteger1boxedmap)
boxed class to store validated Map payloads | +| class | [MaximumValidationWithUnsignedInteger.MaximumValidationWithUnsignedInteger1](#maximumvalidationwithunsignedinteger1)
schema class | ## MaximumValidationWithUnsignedInteger1Boxed sealed interface MaximumValidationWithUnsignedInteger1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MaximumValidationWithUnsignedInteger1BoxedBoolean
implements [MaximumValidationWithUnsignedInteger1Boxed](#maximumvalidationwithunsignedinteger1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md index e16781663ce..f15f8ae35c0 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxitemsValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MaxitemsValidation.MaxitemsValidation1Boxed](#maxitemsvalidation1boxed)
sealed interface for validated payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedVoid](#maxitemsvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedBoolean](#maxitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedNumber](#maxitemsvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedString](#maxitemsvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedList](#maxitemsvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MaxitemsValidation.MaxitemsValidation1BoxedMap](#maxitemsvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MaxitemsValidation.MaxitemsValidation1](#maxitemsvalidation1)
schema class | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedVoid](#maxitemsvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedBoolean](#maxitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedNumber](#maxitemsvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedString](#maxitemsvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedList](#maxitemsvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MaxitemsValidation.MaxitemsValidation1BoxedMap](#maxitemsvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MaxitemsValidation.MaxitemsValidation1](#maxitemsvalidation1)
schema class | ## MaxitemsValidation1Boxed sealed interface MaxitemsValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MaxitemsValidation1BoxedBoolean
implements [MaxitemsValidation1Boxed](#maxitemsvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md index 0232b8b9973..12cab7b46ff 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxlengthValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MaxlengthValidation.MaxlengthValidation1Boxed](#maxlengthvalidation1boxed)
sealed interface for validated payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedVoid](#maxlengthvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedBoolean](#maxlengthvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedNumber](#maxlengthvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedString](#maxlengthvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedList](#maxlengthvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MaxlengthValidation.MaxlengthValidation1BoxedMap](#maxlengthvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MaxlengthValidation.MaxlengthValidation1](#maxlengthvalidation1)
schema class | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedVoid](#maxlengthvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedBoolean](#maxlengthvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedNumber](#maxlengthvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedString](#maxlengthvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedList](#maxlengthvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MaxlengthValidation.MaxlengthValidation1BoxedMap](#maxlengthvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MaxlengthValidation.MaxlengthValidation1](#maxlengthvalidation1)
schema class | ## MaxlengthValidation1Boxed sealed interface MaxlengthValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MaxlengthValidation1BoxedBoolean
implements [MaxlengthValidation1Boxed](#maxlengthvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md index b3137f64e3a..2ec82dd101e 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Maxproperties0MeansTheObjectIsEmpty.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1Boxed](#maxproperties0meanstheobjectisempty1boxed)
sealed interface for validated payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedVoid](#maxproperties0meanstheobjectisempty1boxedvoid)
boxed class to store validated null payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedBoolean](#maxproperties0meanstheobjectisempty1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedNumber](#maxproperties0meanstheobjectisempty1boxednumber)
boxed class to store validated Number payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedString](#maxproperties0meanstheobjectisempty1boxedstring)
boxed class to store validated String payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedList](#maxproperties0meanstheobjectisempty1boxedlist)
boxed class to store validated List payloads | -| record | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedMap](#maxproperties0meanstheobjectisempty1boxedmap)
boxed class to store validated Map payloads | -| static class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1](#maxproperties0meanstheobjectisempty1)
schema class | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedVoid](#maxproperties0meanstheobjectisempty1boxedvoid)
boxed class to store validated null payloads | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedBoolean](#maxproperties0meanstheobjectisempty1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedNumber](#maxproperties0meanstheobjectisempty1boxednumber)
boxed class to store validated Number payloads | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedString](#maxproperties0meanstheobjectisempty1boxedstring)
boxed class to store validated String payloads | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedList](#maxproperties0meanstheobjectisempty1boxedlist)
boxed class to store validated List payloads | +| data class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1BoxedMap](#maxproperties0meanstheobjectisempty1boxedmap)
boxed class to store validated Map payloads | +| class | [Maxproperties0MeansTheObjectIsEmpty.Maxproperties0MeansTheObjectIsEmpty1](#maxproperties0meanstheobjectisempty1)
schema class | ## Maxproperties0MeansTheObjectIsEmpty1Boxed sealed interface Maxproperties0MeansTheObjectIsEmpty1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class Maxproperties0MeansTheObjectIsEmpty1BoxedBoolean
implements [Maxproperties0MeansTheObjectIsEmpty1Boxed](#maxproperties0meanstheobjectisempty1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md index 6d983c0d5df..fc4d9d5b839 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MaxpropertiesValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MaxpropertiesValidation.MaxpropertiesValidation1Boxed](#maxpropertiesvalidation1boxed)
sealed interface for validated payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedVoid](#maxpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedBoolean](#maxpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedNumber](#maxpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedString](#maxpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedList](#maxpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedMap](#maxpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MaxpropertiesValidation.MaxpropertiesValidation1](#maxpropertiesvalidation1)
schema class | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedVoid](#maxpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedBoolean](#maxpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedNumber](#maxpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedString](#maxpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedList](#maxpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MaxpropertiesValidation.MaxpropertiesValidation1BoxedMap](#maxpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MaxpropertiesValidation.MaxpropertiesValidation1](#maxpropertiesvalidation1)
schema class | ## MaxpropertiesValidation1Boxed sealed interface MaxpropertiesValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MaxpropertiesValidation1BoxedBoolean
implements [MaxpropertiesValidation1Boxed](#maxpropertiesvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MincontainsWithoutContainsIsIgnored.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MincontainsWithoutContainsIsIgnored.md index 737b13d0b1e..8950ef26dcc 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MincontainsWithoutContainsIsIgnored.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MincontainsWithoutContainsIsIgnored.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1Boxed](#mincontainswithoutcontainsisignored1boxed)
sealed interface for validated payloads | -| record | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedVoid](#mincontainswithoutcontainsisignored1boxedvoid)
boxed class to store validated null payloads | -| record | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedBoolean](#mincontainswithoutcontainsisignored1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedNumber](#mincontainswithoutcontainsisignored1boxednumber)
boxed class to store validated Number payloads | -| record | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedString](#mincontainswithoutcontainsisignored1boxedstring)
boxed class to store validated String payloads | -| record | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedList](#mincontainswithoutcontainsisignored1boxedlist)
boxed class to store validated List payloads | -| record | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedMap](#mincontainswithoutcontainsisignored1boxedmap)
boxed class to store validated Map payloads | -| static class | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1](#mincontainswithoutcontainsisignored1)
schema class | +| data class | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedVoid](#mincontainswithoutcontainsisignored1boxedvoid)
boxed class to store validated null payloads | +| data class | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedBoolean](#mincontainswithoutcontainsisignored1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedNumber](#mincontainswithoutcontainsisignored1boxednumber)
boxed class to store validated Number payloads | +| data class | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedString](#mincontainswithoutcontainsisignored1boxedstring)
boxed class to store validated String payloads | +| data class | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedList](#mincontainswithoutcontainsisignored1boxedlist)
boxed class to store validated List payloads | +| data class | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1BoxedMap](#mincontainswithoutcontainsisignored1boxedmap)
boxed class to store validated Map payloads | +| class | [MincontainsWithoutContainsIsIgnored.MincontainsWithoutContainsIsIgnored1](#mincontainswithoutcontainsisignored1)
schema class | ## MincontainsWithoutContainsIsIgnored1Boxed sealed interface MincontainsWithoutContainsIsIgnored1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MincontainsWithoutContainsIsIgnored1BoxedBoolean
implements [MincontainsWithoutContainsIsIgnored1Boxed](#mincontainswithoutcontainsisignored1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidation.md index 250a3d0e5f2..8c8ea8d059a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MinimumValidation.MinimumValidation1Boxed](#minimumvalidation1boxed)
sealed interface for validated payloads | -| record | [MinimumValidation.MinimumValidation1BoxedVoid](#minimumvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MinimumValidation.MinimumValidation1BoxedBoolean](#minimumvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MinimumValidation.MinimumValidation1BoxedNumber](#minimumvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MinimumValidation.MinimumValidation1BoxedString](#minimumvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MinimumValidation.MinimumValidation1BoxedList](#minimumvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MinimumValidation.MinimumValidation1BoxedMap](#minimumvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MinimumValidation.MinimumValidation1](#minimumvalidation1)
schema class | +| data class | [MinimumValidation.MinimumValidation1BoxedVoid](#minimumvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MinimumValidation.MinimumValidation1BoxedBoolean](#minimumvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MinimumValidation.MinimumValidation1BoxedNumber](#minimumvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MinimumValidation.MinimumValidation1BoxedString](#minimumvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MinimumValidation.MinimumValidation1BoxedList](#minimumvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MinimumValidation.MinimumValidation1BoxedMap](#minimumvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MinimumValidation.MinimumValidation1](#minimumvalidation1)
schema class | ## MinimumValidation1Boxed sealed interface MinimumValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MinimumValidation1BoxedBoolean
implements [MinimumValidation1Boxed](#minimumvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md index c53ef5a6e3c..7d5bc982bd9 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinimumValidationWithSignedInteger.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1Boxed](#minimumvalidationwithsignedinteger1boxed)
sealed interface for validated payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedVoid](#minimumvalidationwithsignedinteger1boxedvoid)
boxed class to store validated null payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedBoolean](#minimumvalidationwithsignedinteger1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedNumber](#minimumvalidationwithsignedinteger1boxednumber)
boxed class to store validated Number payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedString](#minimumvalidationwithsignedinteger1boxedstring)
boxed class to store validated String payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedList](#minimumvalidationwithsignedinteger1boxedlist)
boxed class to store validated List payloads | -| record | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedMap](#minimumvalidationwithsignedinteger1boxedmap)
boxed class to store validated Map payloads | -| static class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1](#minimumvalidationwithsignedinteger1)
schema class | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedVoid](#minimumvalidationwithsignedinteger1boxedvoid)
boxed class to store validated null payloads | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedBoolean](#minimumvalidationwithsignedinteger1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedNumber](#minimumvalidationwithsignedinteger1boxednumber)
boxed class to store validated Number payloads | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedString](#minimumvalidationwithsignedinteger1boxedstring)
boxed class to store validated String payloads | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedList](#minimumvalidationwithsignedinteger1boxedlist)
boxed class to store validated List payloads | +| data class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1BoxedMap](#minimumvalidationwithsignedinteger1boxedmap)
boxed class to store validated Map payloads | +| class | [MinimumValidationWithSignedInteger.MinimumValidationWithSignedInteger1](#minimumvalidationwithsignedinteger1)
schema class | ## MinimumValidationWithSignedInteger1Boxed sealed interface MinimumValidationWithSignedInteger1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MinimumValidationWithSignedInteger1BoxedBoolean
implements [MinimumValidationWithSignedInteger1Boxed](#minimumvalidationwithsignedinteger1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md index 1a60b834c4d..9eb55dd0ef4 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinitemsValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MinitemsValidation.MinitemsValidation1Boxed](#minitemsvalidation1boxed)
sealed interface for validated payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedVoid](#minitemsvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedBoolean](#minitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedNumber](#minitemsvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedString](#minitemsvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedList](#minitemsvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MinitemsValidation.MinitemsValidation1BoxedMap](#minitemsvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MinitemsValidation.MinitemsValidation1](#minitemsvalidation1)
schema class | +| data class | [MinitemsValidation.MinitemsValidation1BoxedVoid](#minitemsvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MinitemsValidation.MinitemsValidation1BoxedBoolean](#minitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MinitemsValidation.MinitemsValidation1BoxedNumber](#minitemsvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MinitemsValidation.MinitemsValidation1BoxedString](#minitemsvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MinitemsValidation.MinitemsValidation1BoxedList](#minitemsvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MinitemsValidation.MinitemsValidation1BoxedMap](#minitemsvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MinitemsValidation.MinitemsValidation1](#minitemsvalidation1)
schema class | ## MinitemsValidation1Boxed sealed interface MinitemsValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MinitemsValidation1BoxedBoolean
implements [MinitemsValidation1Boxed](#minitemsvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md index 0d297ac6a05..f8cbb96bdeb 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinlengthValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MinlengthValidation.MinlengthValidation1Boxed](#minlengthvalidation1boxed)
sealed interface for validated payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedVoid](#minlengthvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedBoolean](#minlengthvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedNumber](#minlengthvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedString](#minlengthvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedList](#minlengthvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MinlengthValidation.MinlengthValidation1BoxedMap](#minlengthvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MinlengthValidation.MinlengthValidation1](#minlengthvalidation1)
schema class | +| data class | [MinlengthValidation.MinlengthValidation1BoxedVoid](#minlengthvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MinlengthValidation.MinlengthValidation1BoxedBoolean](#minlengthvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MinlengthValidation.MinlengthValidation1BoxedNumber](#minlengthvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MinlengthValidation.MinlengthValidation1BoxedString](#minlengthvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MinlengthValidation.MinlengthValidation1BoxedList](#minlengthvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MinlengthValidation.MinlengthValidation1BoxedMap](#minlengthvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MinlengthValidation.MinlengthValidation1](#minlengthvalidation1)
schema class | ## MinlengthValidation1Boxed sealed interface MinlengthValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MinlengthValidation1BoxedBoolean
implements [MinlengthValidation1Boxed](#minlengthvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md index 123f8710fb8..0fd7be4b531 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MinpropertiesValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MinpropertiesValidation.MinpropertiesValidation1Boxed](#minpropertiesvalidation1boxed)
sealed interface for validated payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedVoid](#minpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedBoolean](#minpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedNumber](#minpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedString](#minpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedList](#minpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [MinpropertiesValidation.MinpropertiesValidation1BoxedMap](#minpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [MinpropertiesValidation.MinpropertiesValidation1](#minpropertiesvalidation1)
schema class | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedVoid](#minpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedBoolean](#minpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedNumber](#minpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedString](#minpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedList](#minpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [MinpropertiesValidation.MinpropertiesValidation1BoxedMap](#minpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [MinpropertiesValidation.MinpropertiesValidation1](#minpropertiesvalidation1)
schema class | ## MinpropertiesValidation1Boxed sealed interface MinpropertiesValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MinpropertiesValidation1BoxedBoolean
implements [MinpropertiesValidation1Boxed](#minpropertiesvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleDependentsRequired.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleDependentsRequired.md index 0273d6b2108..1acf25448cc 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleDependentsRequired.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleDependentsRequired.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MultipleDependentsRequired.MultipleDependentsRequired1Boxed](#multipledependentsrequired1boxed)
sealed interface for validated payloads | -| record | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedVoid](#multipledependentsrequired1boxedvoid)
boxed class to store validated null payloads | -| record | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedBoolean](#multipledependentsrequired1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedNumber](#multipledependentsrequired1boxednumber)
boxed class to store validated Number payloads | -| record | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedString](#multipledependentsrequired1boxedstring)
boxed class to store validated String payloads | -| record | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedList](#multipledependentsrequired1boxedlist)
boxed class to store validated List payloads | -| record | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedMap](#multipledependentsrequired1boxedmap)
boxed class to store validated Map payloads | -| static class | [MultipleDependentsRequired.MultipleDependentsRequired1](#multipledependentsrequired1)
schema class | +| data class | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedVoid](#multipledependentsrequired1boxedvoid)
boxed class to store validated null payloads | +| data class | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedBoolean](#multipledependentsrequired1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedNumber](#multipledependentsrequired1boxednumber)
boxed class to store validated Number payloads | +| data class | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedString](#multipledependentsrequired1boxedstring)
boxed class to store validated String payloads | +| data class | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedList](#multipledependentsrequired1boxedlist)
boxed class to store validated List payloads | +| data class | [MultipleDependentsRequired.MultipleDependentsRequired1BoxedMap](#multipledependentsrequired1boxedmap)
boxed class to store validated Map payloads | +| class | [MultipleDependentsRequired.MultipleDependentsRequired1](#multipledependentsrequired1)
schema class | ## MultipleDependentsRequired1Boxed sealed interface MultipleDependentsRequired1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class MultipleDependentsRequired1BoxedBoolean
implements [MultipleDependentsRequired1Boxed](#multipledependentsrequired1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleSimultaneousPatternpropertiesAreValidated.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleSimultaneousPatternpropertiesAreValidated.md index 1e7a623de33..9863b02f352 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleSimultaneousPatternpropertiesAreValidated.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleSimultaneousPatternpropertiesAreValidated.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1Boxed](#multiplesimultaneouspatternpropertiesarevalidated1boxed)
sealed interface for validated payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedVoid](#multiplesimultaneouspatternpropertiesarevalidated1boxedvoid)
boxed class to store validated null payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedBoolean](#multiplesimultaneouspatternpropertiesarevalidated1boxedboolean)
boxed class to store validated boolean payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedNumber](#multiplesimultaneouspatternpropertiesarevalidated1boxednumber)
boxed class to store validated Number payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedString](#multiplesimultaneouspatternpropertiesarevalidated1boxedstring)
boxed class to store validated String payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedList](#multiplesimultaneouspatternpropertiesarevalidated1boxedlist)
boxed class to store validated List payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedMap](#multiplesimultaneouspatternpropertiesarevalidated1boxedmap)
boxed class to store validated Map payloads | -| static class | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1](#multiplesimultaneouspatternpropertiesarevalidated1)
schema class | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedVoid](#multiplesimultaneouspatternpropertiesarevalidated1boxedvoid)
boxed class to store validated null payloads | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedBoolean](#multiplesimultaneouspatternpropertiesarevalidated1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedNumber](#multiplesimultaneouspatternpropertiesarevalidated1boxednumber)
boxed class to store validated Number payloads | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedString](#multiplesimultaneouspatternpropertiesarevalidated1boxedstring)
boxed class to store validated String payloads | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedList](#multiplesimultaneouspatternpropertiesarevalidated1boxedlist)
boxed class to store validated List payloads | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1BoxedMap](#multiplesimultaneouspatternpropertiesarevalidated1boxedmap)
boxed class to store validated Map payloads | +| class | [MultipleSimultaneousPatternpropertiesAreValidated.MultipleSimultaneousPatternpropertiesAreValidated1](#multiplesimultaneouspatternpropertiesarevalidated1)
schema class | | sealed interface | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxed](#aaaboxed)
sealed interface for validated payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedVoid](#aaaboxedvoid)
boxed class to store validated null payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedBoolean](#aaaboxedboolean)
boxed class to store validated boolean payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedNumber](#aaaboxednumber)
boxed class to store validated Number payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedString](#aaaboxedstring)
boxed class to store validated String payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedList](#aaaboxedlist)
boxed class to store validated List payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedMap](#aaaboxedmap)
boxed class to store validated Map payloads | -| static class | [MultipleSimultaneousPatternpropertiesAreValidated.Aaa](#aaa)
schema class | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedVoid](#aaaboxedvoid)
boxed class to store validated null payloads | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedBoolean](#aaaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedNumber](#aaaboxednumber)
boxed class to store validated Number payloads | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedString](#aaaboxedstring)
boxed class to store validated String payloads | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedList](#aaaboxedlist)
boxed class to store validated List payloads | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.AaaBoxedMap](#aaaboxedmap)
boxed class to store validated Map payloads | +| class | [MultipleSimultaneousPatternpropertiesAreValidated.Aaa](#aaa)
schema class | | sealed interface | [MultipleSimultaneousPatternpropertiesAreValidated.ABoxed](#aboxed)
sealed interface for validated payloads | -| record | [MultipleSimultaneousPatternpropertiesAreValidated.ABoxedNumber](#aboxednumber)
boxed class to store validated Number payloads | -| static class | [MultipleSimultaneousPatternpropertiesAreValidated.A](#a)
schema class | +| data class | [MultipleSimultaneousPatternpropertiesAreValidated.ABoxedNumber](#aboxednumber)
boxed class to store validated Number payloads | +| class | [MultipleSimultaneousPatternpropertiesAreValidated.A](#a)
schema class | ## MultipleSimultaneousPatternpropertiesAreValidated1Boxed sealed interface MultipleSimultaneousPatternpropertiesAreValidated1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class MultipleSimultaneousPatternpropertiesAreValidated1BoxedBoolean
implements [MultipleSimultaneousPatternpropertiesAreValidated1Boxed](#multiplesimultaneouspatternpropertiesarevalidated1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class AaaBoxedBoolean
implements [AaaBoxed](#aaaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleTypesCanBeSpecifiedInAnArray.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleTypesCanBeSpecifiedInAnArray.md index f0a484c5d15..5322d0d5294 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleTypesCanBeSpecifiedInAnArray.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/MultipleTypesCanBeSpecifiedInAnArray.md @@ -11,9 +11,9 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanBeSpecifiedInAnArray1Boxed](#multipletypescanbespecifiedinanarray1boxed)
sealed interface for validated payloads | -| record | [MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanBeSpecifiedInAnArray1BoxedNumber](#multipletypescanbespecifiedinanarray1boxednumber)
boxed class to store validated Number payloads | -| record | [MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanBeSpecifiedInAnArray1BoxedString](#multipletypescanbespecifiedinanarray1boxedstring)
boxed class to store validated String payloads | -| static class | [MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanBeSpecifiedInAnArray1](#multipletypescanbespecifiedinanarray1)
schema class | +| data class | [MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanBeSpecifiedInAnArray1BoxedNumber](#multipletypescanbespecifiedinanarray1boxednumber)
boxed class to store validated Number payloads | +| data class | [MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanBeSpecifiedInAnArray1BoxedString](#multipletypescanbespecifiedinanarray1boxedstring)
boxed class to store validated String payloads | +| class | [MultipleTypesCanBeSpecifiedInAnArray.MultipleTypesCanBeSpecifiedInAnArray1](#multipletypescanbespecifiedinanarray1)
schema class | ## MultipleTypesCanBeSpecifiedInAnArray1Boxed sealed interface MultipleTypesCanBeSpecifiedInAnArray1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md index e03aee22372..986e8de42df 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAllofToCheckValidationSemantics.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1Boxed](#nestedalloftocheckvalidationsemantics1boxed)
sealed interface for validated payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedVoid](#nestedalloftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedBoolean](#nestedalloftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedNumber](#nestedalloftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedString](#nestedalloftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedList](#nestedalloftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | -| record | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedMap](#nestedalloftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1](#nestedalloftocheckvalidationsemantics1)
schema class | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedVoid](#nestedalloftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedBoolean](#nestedalloftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedNumber](#nestedalloftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedString](#nestedalloftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedList](#nestedalloftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | +| data class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1BoxedMap](#nestedalloftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | +| class | [NestedAllofToCheckValidationSemantics.NestedAllofToCheckValidationSemantics1](#nestedalloftocheckvalidationsemantics1)
schema class | | sealed interface | [NestedAllofToCheckValidationSemantics.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedAllofToCheckValidationSemantics.Schema0](#schema0)
schema class | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [NestedAllofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [NestedAllofToCheckValidationSemantics.Schema0](#schema0)
schema class | | sealed interface | [NestedAllofToCheckValidationSemantics.Schema01Boxed](#schema01boxed)
sealed interface for validated payloads | -| record | [NestedAllofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | -| static class | [NestedAllofToCheckValidationSemantics.Schema01](#schema01)
schema class | +| data class | [NestedAllofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | +| class | [NestedAllofToCheckValidationSemantics.Schema01](#schema01)
schema class | ## NestedAllofToCheckValidationSemantics1Boxed sealed interface NestedAllofToCheckValidationSemantics1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class NestedAllofToCheckValidationSemantics1BoxedBoolean
implements [NestedAllofToCheckValidationSemantics1Boxed](#nestedalloftocheckvalidationsemantics1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md index 69052621055..14effe843c6 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedAnyofToCheckValidationSemantics.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1Boxed](#nestedanyoftocheckvalidationsemantics1boxed)
sealed interface for validated payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedVoid](#nestedanyoftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedBoolean](#nestedanyoftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedNumber](#nestedanyoftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedString](#nestedanyoftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedList](#nestedanyoftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | -| record | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedMap](#nestedanyoftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1](#nestedanyoftocheckvalidationsemantics1)
schema class | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedVoid](#nestedanyoftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedBoolean](#nestedanyoftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedNumber](#nestedanyoftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedString](#nestedanyoftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedList](#nestedanyoftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | +| data class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1BoxedMap](#nestedanyoftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | +| class | [NestedAnyofToCheckValidationSemantics.NestedAnyofToCheckValidationSemantics1](#nestedanyoftocheckvalidationsemantics1)
schema class | | sealed interface | [NestedAnyofToCheckValidationSemantics.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedAnyofToCheckValidationSemantics.Schema0](#schema0)
schema class | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [NestedAnyofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [NestedAnyofToCheckValidationSemantics.Schema0](#schema0)
schema class | | sealed interface | [NestedAnyofToCheckValidationSemantics.Schema01Boxed](#schema01boxed)
sealed interface for validated payloads | -| record | [NestedAnyofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | -| static class | [NestedAnyofToCheckValidationSemantics.Schema01](#schema01)
schema class | +| data class | [NestedAnyofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | +| class | [NestedAnyofToCheckValidationSemantics.Schema01](#schema01)
schema class | ## NestedAnyofToCheckValidationSemantics1Boxed sealed interface NestedAnyofToCheckValidationSemantics1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class NestedAnyofToCheckValidationSemantics1BoxedBoolean
implements [NestedAnyofToCheckValidationSemantics1Boxed](#nestedanyoftocheckvalidationsemantics1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedItems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedItems.md index 35847c30b79..476142cfdec 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedItems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedItems.md @@ -13,28 +13,28 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NestedItems.NestedItems1Boxed](#nesteditems1boxed)
sealed interface for validated payloads | -| record | [NestedItems.NestedItems1BoxedList](#nesteditems1boxedlist)
boxed class to store validated List payloads | -| static class | [NestedItems.NestedItems1](#nesteditems1)
schema class | -| static class | [NestedItems.NestedItemsListBuilder](#nesteditemslistbuilder)
builder for List payloads | -| static class | [NestedItems.NestedItemsList](#nesteditemslist)
output class for List payloads | +| data class | [NestedItems.NestedItems1BoxedList](#nesteditems1boxedlist)
boxed class to store validated List payloads | +| class | [NestedItems.NestedItems1](#nesteditems1)
schema class | +| class | [NestedItems.NestedItemsListBuilder](#nesteditemslistbuilder)
builder for List payloads | +| class | [NestedItems.NestedItemsList](#nesteditemslist)
output class for List payloads | | sealed interface | [NestedItems.ItemsBoxed](#itemsboxed)
sealed interface for validated payloads | -| record | [NestedItems.ItemsBoxedList](#itemsboxedlist)
boxed class to store validated List payloads | -| static class | [NestedItems.Items](#items)
schema class | -| static class | [NestedItems.ItemsListBuilder2](#itemslistbuilder2)
builder for List payloads | -| static class | [NestedItems.ItemsList2](#itemslist2)
output class for List payloads | +| data class | [NestedItems.ItemsBoxedList](#itemsboxedlist)
boxed class to store validated List payloads | +| class | [NestedItems.Items](#items)
schema class | +| class | [NestedItems.ItemsListBuilder2](#itemslistbuilder2)
builder for List payloads | +| class | [NestedItems.ItemsList2](#itemslist2)
output class for List payloads | | sealed interface | [NestedItems.Items1Boxed](#items1boxed)
sealed interface for validated payloads | -| record | [NestedItems.Items1BoxedList](#items1boxedlist)
boxed class to store validated List payloads | -| static class | [NestedItems.Items1](#items1)
schema class | -| static class | [NestedItems.ItemsListBuilder1](#itemslistbuilder1)
builder for List payloads | -| static class | [NestedItems.ItemsList1](#itemslist1)
output class for List payloads | +| data class | [NestedItems.Items1BoxedList](#items1boxedlist)
boxed class to store validated List payloads | +| class | [NestedItems.Items1](#items1)
schema class | +| class | [NestedItems.ItemsListBuilder1](#itemslistbuilder1)
builder for List payloads | +| class | [NestedItems.ItemsList1](#itemslist1)
output class for List payloads | | sealed interface | [NestedItems.Items2Boxed](#items2boxed)
sealed interface for validated payloads | -| record | [NestedItems.Items2BoxedList](#items2boxedlist)
boxed class to store validated List payloads | -| static class | [NestedItems.Items2](#items2)
schema class | -| static class | [NestedItems.ItemsListBuilder](#itemslistbuilder)
builder for List payloads | -| static class | [NestedItems.ItemsList](#itemslist)
output class for List payloads | +| data class | [NestedItems.Items2BoxedList](#items2boxedlist)
boxed class to store validated List payloads | +| class | [NestedItems.Items2](#items2)
schema class | +| class | [NestedItems.ItemsListBuilder](#itemslistbuilder)
builder for List payloads | +| class | [NestedItems.ItemsList](#itemslist)
output class for List payloads | | sealed interface | [NestedItems.Items3Boxed](#items3boxed)
sealed interface for validated payloads | -| record | [NestedItems.Items3BoxedNumber](#items3boxednumber)
boxed class to store validated Number payloads | -| static class | [NestedItems.Items3](#items3)
schema class | +| data class | [NestedItems.Items3BoxedNumber](#items3boxednumber)
boxed class to store validated Number payloads | +| class | [NestedItems.Items3](#items3)
schema class | ## NestedItems1Boxed sealed interface NestedItems1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md index 56984b6ed8d..d55ebaa7fcf 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NestedOneofToCheckValidationSemantics.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1Boxed](#nestedoneoftocheckvalidationsemantics1boxed)
sealed interface for validated payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedVoid](#nestedoneoftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedBoolean](#nestedoneoftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedNumber](#nestedoneoftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedString](#nestedoneoftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedList](#nestedoneoftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | -| record | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedMap](#nestedoneoftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1](#nestedoneoftocheckvalidationsemantics1)
schema class | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedVoid](#nestedoneoftocheckvalidationsemantics1boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedBoolean](#nestedoneoftocheckvalidationsemantics1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedNumber](#nestedoneoftocheckvalidationsemantics1boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedString](#nestedoneoftocheckvalidationsemantics1boxedstring)
boxed class to store validated String payloads | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedList](#nestedoneoftocheckvalidationsemantics1boxedlist)
boxed class to store validated List payloads | +| data class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1BoxedMap](#nestedoneoftocheckvalidationsemantics1boxedmap)
boxed class to store validated Map payloads | +| class | [NestedOneofToCheckValidationSemantics.NestedOneofToCheckValidationSemantics1](#nestedoneoftocheckvalidationsemantics1)
schema class | | sealed interface | [NestedOneofToCheckValidationSemantics.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [NestedOneofToCheckValidationSemantics.Schema0](#schema0)
schema class | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [NestedOneofToCheckValidationSemantics.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [NestedOneofToCheckValidationSemantics.Schema0](#schema0)
schema class | | sealed interface | [NestedOneofToCheckValidationSemantics.Schema01Boxed](#schema01boxed)
sealed interface for validated payloads | -| record | [NestedOneofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | -| static class | [NestedOneofToCheckValidationSemantics.Schema01](#schema01)
schema class | +| data class | [NestedOneofToCheckValidationSemantics.Schema01BoxedVoid](#schema01boxedvoid)
boxed class to store validated null payloads | +| class | [NestedOneofToCheckValidationSemantics.Schema01](#schema01)
schema class | ## NestedOneofToCheckValidationSemantics1Boxed sealed interface NestedOneofToCheckValidationSemantics1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class NestedOneofToCheckValidationSemantics1BoxedBoolean
implements [NestedOneofToCheckValidationSemantics1Boxed](#nestedoneoftocheckvalidationsemantics1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonAsciiPatternWithAdditionalproperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonAsciiPatternWithAdditionalproperties.md index 031d7cf332a..8e9fec99a65 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonAsciiPatternWithAdditionalproperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonAsciiPatternWithAdditionalproperties.md @@ -13,26 +13,26 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalproperties1Boxed](#nonasciipatternwithadditionalproperties1boxed)
sealed interface for validated payloads | -| record | [NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalproperties1BoxedMap](#nonasciipatternwithadditionalproperties1boxedmap)
boxed class to store validated Map payloads | -| static class | [NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalproperties1](#nonasciipatternwithadditionalproperties1)
schema class | -| static class | [NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalpropertiesMapBuilder](#nonasciipatternwithadditionalpropertiesmapbuilder)
builder for Map payloads | -| static class | [NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalpropertiesMap](#nonasciipatternwithadditionalpropertiesmap)
output class for Map payloads | +| data class | [NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalproperties1BoxedMap](#nonasciipatternwithadditionalproperties1boxedmap)
boxed class to store validated Map payloads | +| class | [NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalproperties1](#nonasciipatternwithadditionalproperties1)
schema class | +| class | [NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalpropertiesMapBuilder](#nonasciipatternwithadditionalpropertiesmapbuilder)
builder for Map payloads | +| class | [NonAsciiPatternWithAdditionalproperties.NonAsciiPatternWithAdditionalpropertiesMap](#nonasciipatternwithadditionalpropertiesmap)
output class for Map payloads | | sealed interface | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxed](#circumflexaccentlatinsmallletterawithacuteboxed)
sealed interface for validated payloads | -| record | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedVoid](#circumflexaccentlatinsmallletterawithacuteboxedvoid)
boxed class to store validated null payloads | -| record | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedBoolean](#circumflexaccentlatinsmallletterawithacuteboxedboolean)
boxed class to store validated boolean payloads | -| record | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedNumber](#circumflexaccentlatinsmallletterawithacuteboxednumber)
boxed class to store validated Number payloads | -| record | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedString](#circumflexaccentlatinsmallletterawithacuteboxedstring)
boxed class to store validated String payloads | -| record | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedList](#circumflexaccentlatinsmallletterawithacuteboxedlist)
boxed class to store validated List payloads | -| record | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedMap](#circumflexaccentlatinsmallletterawithacuteboxedmap)
boxed class to store validated Map payloads | -| static class | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcute](#circumflexaccentlatinsmallletterawithacute)
schema class | +| data class | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedVoid](#circumflexaccentlatinsmallletterawithacuteboxedvoid)
boxed class to store validated null payloads | +| data class | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedBoolean](#circumflexaccentlatinsmallletterawithacuteboxedboolean)
boxed class to store validated boolean payloads | +| data class | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedNumber](#circumflexaccentlatinsmallletterawithacuteboxednumber)
boxed class to store validated Number payloads | +| data class | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedString](#circumflexaccentlatinsmallletterawithacuteboxedstring)
boxed class to store validated String payloads | +| data class | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedList](#circumflexaccentlatinsmallletterawithacuteboxedlist)
boxed class to store validated List payloads | +| data class | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcuteBoxedMap](#circumflexaccentlatinsmallletterawithacuteboxedmap)
boxed class to store validated Map payloads | +| class | [NonAsciiPatternWithAdditionalproperties.CircumflexAccentLatinSmallLetterAWithAcute](#circumflexaccentlatinsmallletterawithacute)
schema class | | sealed interface | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxed](#additionalpropertiesboxed)
sealed interface for validated payloads | -| record | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedVoid](#additionalpropertiesboxedvoid)
boxed class to store validated null payloads | -| record | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | -| record | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedNumber](#additionalpropertiesboxednumber)
boxed class to store validated Number payloads | -| record | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedString](#additionalpropertiesboxedstring)
boxed class to store validated String payloads | -| record | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedList](#additionalpropertiesboxedlist)
boxed class to store validated List payloads | -| record | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedMap](#additionalpropertiesboxedmap)
boxed class to store validated Map payloads | -| static class | [NonAsciiPatternWithAdditionalproperties.AdditionalProperties](#additionalproperties)
schema class | +| data class | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedVoid](#additionalpropertiesboxedvoid)
boxed class to store validated null payloads | +| data class | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | +| data class | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedNumber](#additionalpropertiesboxednumber)
boxed class to store validated Number payloads | +| data class | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedString](#additionalpropertiesboxedstring)
boxed class to store validated String payloads | +| data class | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedList](#additionalpropertiesboxedlist)
boxed class to store validated List payloads | +| data class | [NonAsciiPatternWithAdditionalproperties.AdditionalPropertiesBoxedMap](#additionalpropertiesboxedmap)
boxed class to store validated Map payloads | +| class | [NonAsciiPatternWithAdditionalproperties.AdditionalProperties](#additionalproperties)
schema class | ## NonAsciiPatternWithAdditionalproperties1Boxed sealed interface NonAsciiPatternWithAdditionalproperties1Boxed
@@ -160,7 +160,7 @@ data class that stores validated null payloads, sealed permits implementation data class CircumflexAccentLatinSmallLetterAWithAcuteBoxedBoolean
implements [CircumflexAccentLatinSmallLetterAWithAcuteBoxed](#circumflexaccentlatinsmallletterawithacuteboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -285,7 +285,7 @@ data class that stores validated null payloads, sealed permits implementation data class AdditionalPropertiesBoxedBoolean
implements [AdditionalPropertiesBoxed](#additionalpropertiesboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonInterferenceAcrossCombinedSchemas.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonInterferenceAcrossCombinedSchemas.md index e4cdfd63603..64417d1eec8 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonInterferenceAcrossCombinedSchemas.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NonInterferenceAcrossCombinedSchemas.md @@ -11,61 +11,61 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1Boxed](#noninterferenceacrosscombinedschemas1boxed)
sealed interface for validated payloads | -| record | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedVoid](#noninterferenceacrosscombinedschemas1boxedvoid)
boxed class to store validated null payloads | -| record | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedBoolean](#noninterferenceacrosscombinedschemas1boxedboolean)
boxed class to store validated boolean payloads | -| record | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedNumber](#noninterferenceacrosscombinedschemas1boxednumber)
boxed class to store validated Number payloads | -| record | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedString](#noninterferenceacrosscombinedschemas1boxedstring)
boxed class to store validated String payloads | -| record | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedList](#noninterferenceacrosscombinedschemas1boxedlist)
boxed class to store validated List payloads | -| record | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedMap](#noninterferenceacrosscombinedschemas1boxedmap)
boxed class to store validated Map payloads | -| static class | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1](#noninterferenceacrosscombinedschemas1)
schema class | +| data class | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedVoid](#noninterferenceacrosscombinedschemas1boxedvoid)
boxed class to store validated null payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedBoolean](#noninterferenceacrosscombinedschemas1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedNumber](#noninterferenceacrosscombinedschemas1boxednumber)
boxed class to store validated Number payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedString](#noninterferenceacrosscombinedschemas1boxedstring)
boxed class to store validated String payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedList](#noninterferenceacrosscombinedschemas1boxedlist)
boxed class to store validated List payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1BoxedMap](#noninterferenceacrosscombinedschemas1boxedmap)
boxed class to store validated Map payloads | +| class | [NonInterferenceAcrossCombinedSchemas.NonInterferenceAcrossCombinedSchemas1](#noninterferenceacrosscombinedschemas1)
schema class | | sealed interface | [NonInterferenceAcrossCombinedSchemas.Schema2Boxed](#schema2boxed)
sealed interface for validated payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedVoid](#schema2boxedvoid)
boxed class to store validated null payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedBoolean](#schema2boxedboolean)
boxed class to store validated boolean payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedNumber](#schema2boxednumber)
boxed class to store validated Number payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedString](#schema2boxedstring)
boxed class to store validated String payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedList](#schema2boxedlist)
boxed class to store validated List payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedMap](#schema2boxedmap)
boxed class to store validated Map payloads | -| static class | [NonInterferenceAcrossCombinedSchemas.Schema2](#schema2)
schema class | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedVoid](#schema2boxedvoid)
boxed class to store validated null payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedBoolean](#schema2boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedNumber](#schema2boxednumber)
boxed class to store validated Number payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedString](#schema2boxedstring)
boxed class to store validated String payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedList](#schema2boxedlist)
boxed class to store validated List payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema2BoxedMap](#schema2boxedmap)
boxed class to store validated Map payloads | +| class | [NonInterferenceAcrossCombinedSchemas.Schema2](#schema2)
schema class | | sealed interface | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxed](#elseschemaboxed)
sealed interface for validated payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedVoid](#elseschemaboxedvoid)
boxed class to store validated null payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedBoolean](#elseschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedNumber](#elseschemaboxednumber)
boxed class to store validated Number payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedString](#elseschemaboxedstring)
boxed class to store validated String payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedList](#elseschemaboxedlist)
boxed class to store validated List payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedMap](#elseschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [NonInterferenceAcrossCombinedSchemas.ElseSchema](#elseschema)
schema class | +| data class | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedVoid](#elseschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedBoolean](#elseschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedNumber](#elseschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedString](#elseschemaboxedstring)
boxed class to store validated String payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedList](#elseschemaboxedlist)
boxed class to store validated List payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.ElseSchemaBoxedMap](#elseschemaboxedmap)
boxed class to store validated Map payloads | +| class | [NonInterferenceAcrossCombinedSchemas.ElseSchema](#elseschema)
schema class | | sealed interface | [NonInterferenceAcrossCombinedSchemas.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [NonInterferenceAcrossCombinedSchemas.Schema1](#schema1)
schema class | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [NonInterferenceAcrossCombinedSchemas.Schema1](#schema1)
schema class | | sealed interface | [NonInterferenceAcrossCombinedSchemas.ThenBoxed](#thenboxed)
sealed interface for validated payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ThenBoxedVoid](#thenboxedvoid)
boxed class to store validated null payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ThenBoxedBoolean](#thenboxedboolean)
boxed class to store validated boolean payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ThenBoxedNumber](#thenboxednumber)
boxed class to store validated Number payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ThenBoxedString](#thenboxedstring)
boxed class to store validated String payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ThenBoxedList](#thenboxedlist)
boxed class to store validated List payloads | -| record | [NonInterferenceAcrossCombinedSchemas.ThenBoxedMap](#thenboxedmap)
boxed class to store validated Map payloads | -| static class | [NonInterferenceAcrossCombinedSchemas.Then](#then)
schema class | +| data class | [NonInterferenceAcrossCombinedSchemas.ThenBoxedVoid](#thenboxedvoid)
boxed class to store validated null payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.ThenBoxedBoolean](#thenboxedboolean)
boxed class to store validated boolean payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.ThenBoxedNumber](#thenboxednumber)
boxed class to store validated Number payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.ThenBoxedString](#thenboxedstring)
boxed class to store validated String payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.ThenBoxedList](#thenboxedlist)
boxed class to store validated List payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.ThenBoxedMap](#thenboxedmap)
boxed class to store validated Map payloads | +| class | [NonInterferenceAcrossCombinedSchemas.Then](#then)
schema class | | sealed interface | [NonInterferenceAcrossCombinedSchemas.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [NonInterferenceAcrossCombinedSchemas.Schema0](#schema0)
schema class | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [NonInterferenceAcrossCombinedSchemas.Schema0](#schema0)
schema class | | sealed interface | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxed](#ifschemaboxed)
sealed interface for validated payloads | -| record | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | -| record | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | -| record | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | -| record | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | -| record | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [NonInterferenceAcrossCombinedSchemas.IfSchema](#ifschema)
schema class | +| data class | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | +| data class | [NonInterferenceAcrossCombinedSchemas.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | +| class | [NonInterferenceAcrossCombinedSchemas.IfSchema](#ifschema)
schema class | ## NonInterferenceAcrossCombinedSchemas1Boxed sealed interface NonInterferenceAcrossCombinedSchemas1Boxed
@@ -100,7 +100,7 @@ data class that stores validated null payloads, sealed permits implementation data class NonInterferenceAcrossCombinedSchemas1BoxedBoolean
implements [NonInterferenceAcrossCombinedSchemas1Boxed](#noninterferenceacrosscombinedschemas1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -247,7 +247,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema2BoxedBoolean
implements [Schema2Boxed](#schema2boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -394,7 +394,7 @@ data class that stores validated null payloads, sealed permits implementation data class ElseSchemaBoxedBoolean
implements [ElseSchemaBoxed](#elseschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -541,7 +541,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -688,7 +688,7 @@ data class that stores validated null payloads, sealed permits implementation data class ThenBoxedBoolean
implements [ThenBoxed](#thenboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -835,7 +835,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -982,7 +982,7 @@ data class that stores validated null payloads, sealed permits implementation data class IfSchemaBoxedBoolean
implements [IfSchemaBoxed](#ifschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Not.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Not.md index 5c7f49889ba..fee314d30e3 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Not.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Not.md @@ -11,16 +11,16 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Not.Not1Boxed](#not1boxed)
sealed interface for validated payloads | -| record | [Not.Not1BoxedVoid](#not1boxedvoid)
boxed class to store validated null payloads | -| record | [Not.Not1BoxedBoolean](#not1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Not.Not1BoxedNumber](#not1boxednumber)
boxed class to store validated Number payloads | -| record | [Not.Not1BoxedString](#not1boxedstring)
boxed class to store validated String payloads | -| record | [Not.Not1BoxedList](#not1boxedlist)
boxed class to store validated List payloads | -| record | [Not.Not1BoxedMap](#not1boxedmap)
boxed class to store validated Map payloads | -| static class | [Not.Not1](#not1)
schema class | +| data class | [Not.Not1BoxedVoid](#not1boxedvoid)
boxed class to store validated null payloads | +| data class | [Not.Not1BoxedBoolean](#not1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Not.Not1BoxedNumber](#not1boxednumber)
boxed class to store validated Number payloads | +| data class | [Not.Not1BoxedString](#not1boxedstring)
boxed class to store validated String payloads | +| data class | [Not.Not1BoxedList](#not1boxedlist)
boxed class to store validated List payloads | +| data class | [Not.Not1BoxedMap](#not1boxedmap)
boxed class to store validated Map payloads | +| class | [Not.Not1](#not1)
schema class | | sealed interface | [Not.Not2Boxed](#not2boxed)
sealed interface for validated payloads | -| record | [Not.Not2BoxedNumber](#not2boxednumber)
boxed class to store validated Number payloads | -| static class | [Not.Not2](#not2)
schema class | +| data class | [Not.Not2BoxedNumber](#not2boxednumber)
boxed class to store validated Number payloads | +| class | [Not.Not2](#not2)
schema class | ## Not1Boxed sealed interface Not1Boxed
@@ -55,7 +55,7 @@ data class that stores validated null payloads, sealed permits implementation data class Not1BoxedBoolean
implements [Not1Boxed](#not1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md index f482909b92e..dc37cd29bfb 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMoreComplexSchema.md @@ -13,21 +13,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NotMoreComplexSchema.NotMoreComplexSchema1Boxed](#notmorecomplexschema1boxed)
sealed interface for validated payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedVoid](#notmorecomplexschema1boxedvoid)
boxed class to store validated null payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedBoolean](#notmorecomplexschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedNumber](#notmorecomplexschema1boxednumber)
boxed class to store validated Number payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedString](#notmorecomplexschema1boxedstring)
boxed class to store validated String payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedList](#notmorecomplexschema1boxedlist)
boxed class to store validated List payloads | -| record | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedMap](#notmorecomplexschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [NotMoreComplexSchema.NotMoreComplexSchema1](#notmorecomplexschema1)
schema class | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedVoid](#notmorecomplexschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedBoolean](#notmorecomplexschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedNumber](#notmorecomplexschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedString](#notmorecomplexschema1boxedstring)
boxed class to store validated String payloads | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedList](#notmorecomplexschema1boxedlist)
boxed class to store validated List payloads | +| data class | [NotMoreComplexSchema.NotMoreComplexSchema1BoxedMap](#notmorecomplexschema1boxedmap)
boxed class to store validated Map payloads | +| class | [NotMoreComplexSchema.NotMoreComplexSchema1](#notmorecomplexschema1)
schema class | | sealed interface | [NotMoreComplexSchema.NotBoxed](#notboxed)
sealed interface for validated payloads | -| record | [NotMoreComplexSchema.NotBoxedMap](#notboxedmap)
boxed class to store validated Map payloads | -| static class | [NotMoreComplexSchema.Not](#not)
schema class | -| static class | [NotMoreComplexSchema.NotMapBuilder](#notmapbuilder)
builder for Map payloads | -| static class | [NotMoreComplexSchema.NotMap](#notmap)
output class for Map payloads | +| data class | [NotMoreComplexSchema.NotBoxedMap](#notboxedmap)
boxed class to store validated Map payloads | +| class | [NotMoreComplexSchema.Not](#not)
schema class | +| class | [NotMoreComplexSchema.NotMapBuilder](#notmapbuilder)
builder for Map payloads | +| class | [NotMoreComplexSchema.NotMap](#notmap)
output class for Map payloads | | sealed interface | [NotMoreComplexSchema.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [NotMoreComplexSchema.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [NotMoreComplexSchema.Foo](#foo)
schema class | +| data class | [NotMoreComplexSchema.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [NotMoreComplexSchema.Foo](#foo)
schema class | ## NotMoreComplexSchema1Boxed sealed interface NotMoreComplexSchema1Boxed
@@ -62,7 +62,7 @@ data class that stores validated null payloads, sealed permits implementation data class NotMoreComplexSchema1BoxedBoolean
implements [NotMoreComplexSchema1Boxed](#notmorecomplexschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMultipleTypes.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMultipleTypes.md index b390604be58..d41229ac82e 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMultipleTypes.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NotMultipleTypes.md @@ -11,17 +11,17 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NotMultipleTypes.NotMultipleTypes1Boxed](#notmultipletypes1boxed)
sealed interface for validated payloads | -| record | [NotMultipleTypes.NotMultipleTypes1BoxedVoid](#notmultipletypes1boxedvoid)
boxed class to store validated null payloads | -| record | [NotMultipleTypes.NotMultipleTypes1BoxedBoolean](#notmultipletypes1boxedboolean)
boxed class to store validated boolean payloads | -| record | [NotMultipleTypes.NotMultipleTypes1BoxedNumber](#notmultipletypes1boxednumber)
boxed class to store validated Number payloads | -| record | [NotMultipleTypes.NotMultipleTypes1BoxedString](#notmultipletypes1boxedstring)
boxed class to store validated String payloads | -| record | [NotMultipleTypes.NotMultipleTypes1BoxedList](#notmultipletypes1boxedlist)
boxed class to store validated List payloads | -| record | [NotMultipleTypes.NotMultipleTypes1BoxedMap](#notmultipletypes1boxedmap)
boxed class to store validated Map payloads | -| static class | [NotMultipleTypes.NotMultipleTypes1](#notmultipletypes1)
schema class | +| data class | [NotMultipleTypes.NotMultipleTypes1BoxedVoid](#notmultipletypes1boxedvoid)
boxed class to store validated null payloads | +| data class | [NotMultipleTypes.NotMultipleTypes1BoxedBoolean](#notmultipletypes1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [NotMultipleTypes.NotMultipleTypes1BoxedNumber](#notmultipletypes1boxednumber)
boxed class to store validated Number payloads | +| data class | [NotMultipleTypes.NotMultipleTypes1BoxedString](#notmultipletypes1boxedstring)
boxed class to store validated String payloads | +| data class | [NotMultipleTypes.NotMultipleTypes1BoxedList](#notmultipletypes1boxedlist)
boxed class to store validated List payloads | +| data class | [NotMultipleTypes.NotMultipleTypes1BoxedMap](#notmultipletypes1boxedmap)
boxed class to store validated Map payloads | +| class | [NotMultipleTypes.NotMultipleTypes1](#notmultipletypes1)
schema class | | sealed interface | [NotMultipleTypes.NotBoxed](#notboxed)
sealed interface for validated payloads | -| record | [NotMultipleTypes.NotBoxedNumber](#notboxednumber)
boxed class to store validated Number payloads | -| record | [NotMultipleTypes.NotBoxedBoolean](#notboxedboolean)
boxed class to store validated boolean payloads | -| static class | [NotMultipleTypes.Not](#not)
schema class | +| data class | [NotMultipleTypes.NotBoxedNumber](#notboxednumber)
boxed class to store validated Number payloads | +| data class | [NotMultipleTypes.NotBoxedBoolean](#notboxedboolean)
boxed class to store validated boolean payloads | +| class | [NotMultipleTypes.Not](#not)
schema class | ## NotMultipleTypes1Boxed sealed interface NotMultipleTypes1Boxed
@@ -56,7 +56,7 @@ data class that stores validated null payloads, sealed permits implementation data class NotMultipleTypes1BoxedBoolean
implements [NotMultipleTypes1Boxed](#notmultipletypes1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -199,7 +199,7 @@ data class that stores validated Number payloads, sealed permits implementation data class NotBoxedBoolean
implements [NotBoxed](#notboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md index bb6edb1453a..400cc7575ec 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NulCharactersInStrings.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NulCharactersInStrings.NulCharactersInStrings1Boxed](#nulcharactersinstrings1boxed)
sealed interface for validated payloads | -| record | [NulCharactersInStrings.NulCharactersInStrings1BoxedString](#nulcharactersinstrings1boxedstring)
boxed class to store validated String payloads | -| static class | [NulCharactersInStrings.NulCharactersInStrings1](#nulcharactersinstrings1)
schema class | +| data class | [NulCharactersInStrings.NulCharactersInStrings1BoxedString](#nulcharactersinstrings1boxedstring)
boxed class to store validated String payloads | +| class | [NulCharactersInStrings.NulCharactersInStrings1](#nulcharactersinstrings1)
schema class | | enum | [NulCharactersInStrings.StringNulCharactersInStringsEnums](#stringnulcharactersinstringsenums)
String enum | ## NulCharactersInStrings1Boxed diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NullTypeMatchesOnlyTheNullObject.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NullTypeMatchesOnlyTheNullObject.md index 0bcdf2e30e4..1f0effc0b3f 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NullTypeMatchesOnlyTheNullObject.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NullTypeMatchesOnlyTheNullObject.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NullTypeMatchesOnlyTheNullObject.NullTypeMatchesOnlyTheNullObject1Boxed](#nulltypematchesonlythenullobject1boxed)
sealed interface for validated payloads | -| record | [NullTypeMatchesOnlyTheNullObject.NullTypeMatchesOnlyTheNullObject1BoxedVoid](#nulltypematchesonlythenullobject1boxedvoid)
boxed class to store validated null payloads | -| static class | [NullTypeMatchesOnlyTheNullObject.NullTypeMatchesOnlyTheNullObject1](#nulltypematchesonlythenullobject1)
schema class | +| data class | [NullTypeMatchesOnlyTheNullObject.NullTypeMatchesOnlyTheNullObject1BoxedVoid](#nulltypematchesonlythenullobject1boxedvoid)
boxed class to store validated null payloads | +| class | [NullTypeMatchesOnlyTheNullObject.NullTypeMatchesOnlyTheNullObject1](#nulltypematchesonlythenullobject1)
schema class | ## NullTypeMatchesOnlyTheNullObject1Boxed sealed interface NullTypeMatchesOnlyTheNullObject1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NumberTypeMatchesNumbers.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NumberTypeMatchesNumbers.md index 02a48980434..dfe96e771e8 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NumberTypeMatchesNumbers.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/NumberTypeMatchesNumbers.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [NumberTypeMatchesNumbers.NumberTypeMatchesNumbers1Boxed](#numbertypematchesnumbers1boxed)
sealed interface for validated payloads | -| record | [NumberTypeMatchesNumbers.NumberTypeMatchesNumbers1BoxedNumber](#numbertypematchesnumbers1boxednumber)
boxed class to store validated Number payloads | -| static class | [NumberTypeMatchesNumbers.NumberTypeMatchesNumbers1](#numbertypematchesnumbers1)
schema class | +| data class | [NumberTypeMatchesNumbers.NumberTypeMatchesNumbers1BoxedNumber](#numbertypematchesnumbers1boxednumber)
boxed class to store validated Number payloads | +| class | [NumberTypeMatchesNumbers.NumberTypeMatchesNumbers1](#numbertypematchesnumbers1)
schema class | ## NumberTypeMatchesNumbers1Boxed sealed interface NumberTypeMatchesNumbers1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md index 0626f8af721..31933832054 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectPropertiesValidation.md @@ -13,21 +13,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ObjectPropertiesValidation.ObjectPropertiesValidation1Boxed](#objectpropertiesvalidation1boxed)
sealed interface for validated payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedVoid](#objectpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedBoolean](#objectpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedNumber](#objectpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedString](#objectpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedList](#objectpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedMap](#objectpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [ObjectPropertiesValidation.ObjectPropertiesValidation1](#objectpropertiesvalidation1)
schema class | -| static class | [ObjectPropertiesValidation.ObjectPropertiesValidationMapBuilder](#objectpropertiesvalidationmapbuilder)
builder for Map payloads | -| static class | [ObjectPropertiesValidation.ObjectPropertiesValidationMap](#objectpropertiesvalidationmap)
output class for Map payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedVoid](#objectpropertiesvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedBoolean](#objectpropertiesvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedNumber](#objectpropertiesvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedString](#objectpropertiesvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedList](#objectpropertiesvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [ObjectPropertiesValidation.ObjectPropertiesValidation1BoxedMap](#objectpropertiesvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [ObjectPropertiesValidation.ObjectPropertiesValidation1](#objectpropertiesvalidation1)
schema class | +| class | [ObjectPropertiesValidation.ObjectPropertiesValidationMapBuilder](#objectpropertiesvalidationmapbuilder)
builder for Map payloads | +| class | [ObjectPropertiesValidation.ObjectPropertiesValidationMap](#objectpropertiesvalidationmap)
output class for Map payloads | | sealed interface | [ObjectPropertiesValidation.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [ObjectPropertiesValidation.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| static class | [ObjectPropertiesValidation.Bar](#bar)
schema class | +| data class | [ObjectPropertiesValidation.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| class | [ObjectPropertiesValidation.Bar](#bar)
schema class | | sealed interface | [ObjectPropertiesValidation.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [ObjectPropertiesValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| static class | [ObjectPropertiesValidation.Foo](#foo)
schema class | +| data class | [ObjectPropertiesValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| class | [ObjectPropertiesValidation.Foo](#foo)
schema class | ## ObjectPropertiesValidation1Boxed sealed interface ObjectPropertiesValidation1Boxed
@@ -62,7 +62,7 @@ data class that stores validated null payloads, sealed permits implementation data class ObjectPropertiesValidation1BoxedBoolean
implements [ObjectPropertiesValidation1Boxed](#objectpropertiesvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectTypeMatchesObjects.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectTypeMatchesObjects.md index ddc0d8b8aa6..0688dddd213 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectTypeMatchesObjects.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ObjectTypeMatchesObjects.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ObjectTypeMatchesObjects.ObjectTypeMatchesObjects1Boxed](#objecttypematchesobjects1boxed)
sealed interface for validated payloads | -| record | [ObjectTypeMatchesObjects.ObjectTypeMatchesObjects1BoxedMap](#objecttypematchesobjects1boxedmap)
boxed class to store validated Map payloads | -| static class | [ObjectTypeMatchesObjects.ObjectTypeMatchesObjects1](#objecttypematchesobjects1)
schema class | +| data class | [ObjectTypeMatchesObjects.ObjectTypeMatchesObjects1BoxedMap](#objecttypematchesobjects1boxedmap)
boxed class to store validated Map payloads | +| class | [ObjectTypeMatchesObjects.ObjectTypeMatchesObjects1](#objecttypematchesobjects1)
schema class | ## ObjectTypeMatchesObjects1Boxed sealed interface ObjectTypeMatchesObjects1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Oneof.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Oneof.md index 7d78c0ba37f..d389550b448 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Oneof.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/Oneof.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [Oneof.Oneof1Boxed](#oneof1boxed)
sealed interface for validated payloads | -| record | [Oneof.Oneof1BoxedVoid](#oneof1boxedvoid)
boxed class to store validated null payloads | -| record | [Oneof.Oneof1BoxedBoolean](#oneof1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Oneof.Oneof1BoxedNumber](#oneof1boxednumber)
boxed class to store validated Number payloads | -| record | [Oneof.Oneof1BoxedString](#oneof1boxedstring)
boxed class to store validated String payloads | -| record | [Oneof.Oneof1BoxedList](#oneof1boxedlist)
boxed class to store validated List payloads | -| record | [Oneof.Oneof1BoxedMap](#oneof1boxedmap)
boxed class to store validated Map payloads | -| static class | [Oneof.Oneof1](#oneof1)
schema class | +| data class | [Oneof.Oneof1BoxedVoid](#oneof1boxedvoid)
boxed class to store validated null payloads | +| data class | [Oneof.Oneof1BoxedBoolean](#oneof1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Oneof.Oneof1BoxedNumber](#oneof1boxednumber)
boxed class to store validated Number payloads | +| data class | [Oneof.Oneof1BoxedString](#oneof1boxedstring)
boxed class to store validated String payloads | +| data class | [Oneof.Oneof1BoxedList](#oneof1boxedlist)
boxed class to store validated List payloads | +| data class | [Oneof.Oneof1BoxedMap](#oneof1boxedmap)
boxed class to store validated Map payloads | +| class | [Oneof.Oneof1](#oneof1)
schema class | | sealed interface | [Oneof.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [Oneof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [Oneof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [Oneof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [Oneof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [Oneof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [Oneof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [Oneof.Schema1](#schema1)
schema class | +| data class | [Oneof.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [Oneof.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [Oneof.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [Oneof.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [Oneof.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [Oneof.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [Oneof.Schema1](#schema1)
schema class | | sealed interface | [Oneof.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [Oneof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [Oneof.Schema0](#schema0)
schema class | +| data class | [Oneof.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [Oneof.Schema0](#schema0)
schema class | ## Oneof1Boxed sealed interface Oneof1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class Oneof1BoxedBoolean
implements [Oneof1Boxed](#oneof1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md index ae89d4929b6..5c1cf9a9524 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofComplexTypes.md @@ -13,39 +13,39 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [OneofComplexTypes.OneofComplexTypes1Boxed](#oneofcomplextypes1boxed)
sealed interface for validated payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedVoid](#oneofcomplextypes1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedBoolean](#oneofcomplextypes1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedNumber](#oneofcomplextypes1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedString](#oneofcomplextypes1boxedstring)
boxed class to store validated String payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedList](#oneofcomplextypes1boxedlist)
boxed class to store validated List payloads | -| record | [OneofComplexTypes.OneofComplexTypes1BoxedMap](#oneofcomplextypes1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofComplexTypes.OneofComplexTypes1](#oneofcomplextypes1)
schema class | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedVoid](#oneofcomplextypes1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedBoolean](#oneofcomplextypes1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedNumber](#oneofcomplextypes1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedString](#oneofcomplextypes1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedList](#oneofcomplextypes1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofComplexTypes.OneofComplexTypes1BoxedMap](#oneofcomplextypes1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofComplexTypes.OneofComplexTypes1](#oneofcomplextypes1)
schema class | | sealed interface | [OneofComplexTypes.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [OneofComplexTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofComplexTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofComplexTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofComplexTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [OneofComplexTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [OneofComplexTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofComplexTypes.Schema1](#schema1)
schema class | -| static class | [OneofComplexTypes.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | -| static class | [OneofComplexTypes.Schema1Map](#schema1map)
output class for Map payloads | +| data class | [OneofComplexTypes.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofComplexTypes.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofComplexTypes.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofComplexTypes.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofComplexTypes.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofComplexTypes.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofComplexTypes.Schema1](#schema1)
schema class | +| class | [OneofComplexTypes.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | +| class | [OneofComplexTypes.Schema1Map](#schema1map)
output class for Map payloads | | sealed interface | [OneofComplexTypes.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [OneofComplexTypes.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [OneofComplexTypes.Foo](#foo)
schema class | +| data class | [OneofComplexTypes.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [OneofComplexTypes.Foo](#foo)
schema class | | sealed interface | [OneofComplexTypes.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [OneofComplexTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [OneofComplexTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofComplexTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [OneofComplexTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [OneofComplexTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [OneofComplexTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofComplexTypes.Schema0](#schema0)
schema class | -| static class | [OneofComplexTypes.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [OneofComplexTypes.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [OneofComplexTypes.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofComplexTypes.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofComplexTypes.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofComplexTypes.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [OneofComplexTypes.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [OneofComplexTypes.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [OneofComplexTypes.Schema0](#schema0)
schema class | +| class | [OneofComplexTypes.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [OneofComplexTypes.Schema0Map](#schema0map)
output class for Map payloads | | sealed interface | [OneofComplexTypes.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [OneofComplexTypes.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| static class | [OneofComplexTypes.Bar](#bar)
schema class | +| data class | [OneofComplexTypes.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| class | [OneofComplexTypes.Bar](#bar)
schema class | ## OneofComplexTypes1Boxed sealed interface OneofComplexTypes1Boxed
@@ -80,7 +80,7 @@ data class that stores validated null payloads, sealed permits implementation data class OneofComplexTypes1BoxedBoolean
implements [OneofComplexTypes1Boxed](#oneofcomplextypes1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -227,7 +227,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -464,7 +464,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md index 1076b3333d6..d269e5154fb 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithBaseSchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [OneofWithBaseSchema.OneofWithBaseSchema1Boxed](#oneofwithbaseschema1boxed)
sealed interface for validated payloads | -| record | [OneofWithBaseSchema.OneofWithBaseSchema1BoxedString](#oneofwithbaseschema1boxedstring)
boxed class to store validated String payloads | -| static class | [OneofWithBaseSchema.OneofWithBaseSchema1](#oneofwithbaseschema1)
schema class | +| data class | [OneofWithBaseSchema.OneofWithBaseSchema1BoxedString](#oneofwithbaseschema1boxedstring)
boxed class to store validated String payloads | +| class | [OneofWithBaseSchema.OneofWithBaseSchema1](#oneofwithbaseschema1)
schema class | | sealed interface | [OneofWithBaseSchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [OneofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithBaseSchema.Schema1](#schema1)
schema class | +| data class | [OneofWithBaseSchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithBaseSchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithBaseSchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithBaseSchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithBaseSchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithBaseSchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithBaseSchema.Schema1](#schema1)
schema class | | sealed interface | [OneofWithBaseSchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [OneofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithBaseSchema.Schema0](#schema0)
schema class | +| data class | [OneofWithBaseSchema.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithBaseSchema.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithBaseSchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithBaseSchema.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithBaseSchema.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithBaseSchema.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithBaseSchema.Schema0](#schema0)
schema class | ## OneofWithBaseSchema1Boxed sealed interface OneofWithBaseSchema1Boxed
@@ -126,7 +126,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -273,7 +273,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md index d437a9d04b2..89c27cbbb27 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithEmptySchema.md @@ -11,24 +11,24 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [OneofWithEmptySchema.OneofWithEmptySchema1Boxed](#oneofwithemptyschema1boxed)
sealed interface for validated payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedVoid](#oneofwithemptyschema1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedBoolean](#oneofwithemptyschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedNumber](#oneofwithemptyschema1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedString](#oneofwithemptyschema1boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedList](#oneofwithemptyschema1boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedMap](#oneofwithemptyschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithEmptySchema.OneofWithEmptySchema1](#oneofwithemptyschema1)
schema class | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedVoid](#oneofwithemptyschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedBoolean](#oneofwithemptyschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedNumber](#oneofwithemptyschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedString](#oneofwithemptyschema1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedList](#oneofwithemptyschema1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithEmptySchema.OneofWithEmptySchema1BoxedMap](#oneofwithemptyschema1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithEmptySchema.OneofWithEmptySchema1](#oneofwithemptyschema1)
schema class | | sealed interface | [OneofWithEmptySchema.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [OneofWithEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithEmptySchema.Schema1](#schema1)
schema class | +| data class | [OneofWithEmptySchema.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithEmptySchema.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithEmptySchema.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithEmptySchema.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithEmptySchema.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithEmptySchema.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithEmptySchema.Schema1](#schema1)
schema class | | sealed interface | [OneofWithEmptySchema.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [OneofWithEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| static class | [OneofWithEmptySchema.Schema0](#schema0)
schema class | +| data class | [OneofWithEmptySchema.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| class | [OneofWithEmptySchema.Schema0](#schema0)
schema class | ## OneofWithEmptySchema1Boxed sealed interface OneofWithEmptySchema1Boxed
@@ -63,7 +63,7 @@ data class that stores validated null payloads, sealed permits implementation data class OneofWithEmptySchema1BoxedBoolean
implements [OneofWithEmptySchema1Boxed](#oneofwithemptyschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -210,7 +210,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md index 654e75c26c9..d8dc928abdf 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/OneofWithRequired.md @@ -13,28 +13,28 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [OneofWithRequired.OneofWithRequired1Boxed](#oneofwithrequired1boxed)
sealed interface for validated payloads | -| record | [OneofWithRequired.OneofWithRequired1BoxedMap](#oneofwithrequired1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithRequired.OneofWithRequired1](#oneofwithrequired1)
schema class | +| data class | [OneofWithRequired.OneofWithRequired1BoxedMap](#oneofwithrequired1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithRequired.OneofWithRequired1](#oneofwithrequired1)
schema class | | sealed interface | [OneofWithRequired.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [OneofWithRequired.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithRequired.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithRequired.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithRequired.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithRequired.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithRequired.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithRequired.Schema1](#schema1)
schema class | -| static class | [OneofWithRequired.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | -| static class | [OneofWithRequired.Schema1Map](#schema1map)
output class for Map payloads | +| data class | [OneofWithRequired.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithRequired.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithRequired.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithRequired.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithRequired.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithRequired.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithRequired.Schema1](#schema1)
schema class | +| class | [OneofWithRequired.Schema1MapBuilder](#schema1mapbuilder)
builder for Map payloads | +| class | [OneofWithRequired.Schema1Map](#schema1map)
output class for Map payloads | | sealed interface | [OneofWithRequired.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [OneofWithRequired.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [OneofWithRequired.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [OneofWithRequired.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [OneofWithRequired.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [OneofWithRequired.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [OneofWithRequired.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [OneofWithRequired.Schema0](#schema0)
schema class | -| static class | [OneofWithRequired.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | -| static class | [OneofWithRequired.Schema0Map](#schema0map)
output class for Map payloads | +| data class | [OneofWithRequired.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [OneofWithRequired.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [OneofWithRequired.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [OneofWithRequired.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [OneofWithRequired.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [OneofWithRequired.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [OneofWithRequired.Schema0](#schema0)
schema class | +| class | [OneofWithRequired.Schema0MapBuilder](#schema0mapbuilder)
builder for Map payloads | +| class | [OneofWithRequired.Schema0Map](#schema0map)
output class for Map payloads | ## OneofWithRequired1Boxed sealed interface OneofWithRequired1Boxed
@@ -113,7 +113,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -380,7 +380,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md index 55e8e387781..ecad63d7784 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternIsNotAnchored.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PatternIsNotAnchored.PatternIsNotAnchored1Boxed](#patternisnotanchored1boxed)
sealed interface for validated payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedVoid](#patternisnotanchored1boxedvoid)
boxed class to store validated null payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedBoolean](#patternisnotanchored1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedNumber](#patternisnotanchored1boxednumber)
boxed class to store validated Number payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedString](#patternisnotanchored1boxedstring)
boxed class to store validated String payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedList](#patternisnotanchored1boxedlist)
boxed class to store validated List payloads | -| record | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedMap](#patternisnotanchored1boxedmap)
boxed class to store validated Map payloads | -| static class | [PatternIsNotAnchored.PatternIsNotAnchored1](#patternisnotanchored1)
schema class | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedVoid](#patternisnotanchored1boxedvoid)
boxed class to store validated null payloads | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedBoolean](#patternisnotanchored1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedNumber](#patternisnotanchored1boxednumber)
boxed class to store validated Number payloads | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedString](#patternisnotanchored1boxedstring)
boxed class to store validated String payloads | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedList](#patternisnotanchored1boxedlist)
boxed class to store validated List payloads | +| data class | [PatternIsNotAnchored.PatternIsNotAnchored1BoxedMap](#patternisnotanchored1boxedmap)
boxed class to store validated Map payloads | +| class | [PatternIsNotAnchored.PatternIsNotAnchored1](#patternisnotanchored1)
schema class | ## PatternIsNotAnchored1Boxed sealed interface PatternIsNotAnchored1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class PatternIsNotAnchored1BoxedBoolean
implements [PatternIsNotAnchored1Boxed](#patternisnotanchored1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternValidation.md index 020ca576c3d..872a4242c5a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PatternValidation.PatternValidation1Boxed](#patternvalidation1boxed)
sealed interface for validated payloads | -| record | [PatternValidation.PatternValidation1BoxedVoid](#patternvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [PatternValidation.PatternValidation1BoxedBoolean](#patternvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PatternValidation.PatternValidation1BoxedNumber](#patternvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [PatternValidation.PatternValidation1BoxedString](#patternvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [PatternValidation.PatternValidation1BoxedList](#patternvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [PatternValidation.PatternValidation1BoxedMap](#patternvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [PatternValidation.PatternValidation1](#patternvalidation1)
schema class | +| data class | [PatternValidation.PatternValidation1BoxedVoid](#patternvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [PatternValidation.PatternValidation1BoxedBoolean](#patternvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PatternValidation.PatternValidation1BoxedNumber](#patternvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [PatternValidation.PatternValidation1BoxedString](#patternvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [PatternValidation.PatternValidation1BoxedList](#patternvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [PatternValidation.PatternValidation1BoxedMap](#patternvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [PatternValidation.PatternValidation1](#patternvalidation1)
schema class | ## PatternValidation1Boxed sealed interface PatternValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class PatternValidation1BoxedBoolean
implements [PatternValidation1Boxed](#patternvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesValidatesPropertiesMatchingARegex.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesValidatesPropertiesMatchingARegex.md index 2bb869c5a0c..0cbc9f7bf31 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesValidatesPropertiesMatchingARegex.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesValidatesPropertiesMatchingARegex.md @@ -11,16 +11,16 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1Boxed](#patternpropertiesvalidatespropertiesmatchingaregex1boxed)
sealed interface for validated payloads | -| record | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedVoid](#patternpropertiesvalidatespropertiesmatchingaregex1boxedvoid)
boxed class to store validated null payloads | -| record | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedBoolean](#patternpropertiesvalidatespropertiesmatchingaregex1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedNumber](#patternpropertiesvalidatespropertiesmatchingaregex1boxednumber)
boxed class to store validated Number payloads | -| record | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedString](#patternpropertiesvalidatespropertiesmatchingaregex1boxedstring)
boxed class to store validated String payloads | -| record | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedList](#patternpropertiesvalidatespropertiesmatchingaregex1boxedlist)
boxed class to store validated List payloads | -| record | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedMap](#patternpropertiesvalidatespropertiesmatchingaregex1boxedmap)
boxed class to store validated Map payloads | -| static class | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1](#patternpropertiesvalidatespropertiesmatchingaregex1)
schema class | +| data class | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedVoid](#patternpropertiesvalidatespropertiesmatchingaregex1boxedvoid)
boxed class to store validated null payloads | +| data class | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedBoolean](#patternpropertiesvalidatespropertiesmatchingaregex1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedNumber](#patternpropertiesvalidatespropertiesmatchingaregex1boxednumber)
boxed class to store validated Number payloads | +| data class | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedString](#patternpropertiesvalidatespropertiesmatchingaregex1boxedstring)
boxed class to store validated String payloads | +| data class | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedList](#patternpropertiesvalidatespropertiesmatchingaregex1boxedlist)
boxed class to store validated List payloads | +| data class | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1BoxedMap](#patternpropertiesvalidatespropertiesmatchingaregex1boxedmap)
boxed class to store validated Map payloads | +| class | [PatternpropertiesValidatesPropertiesMatchingARegex.PatternpropertiesValidatesPropertiesMatchingARegex1](#patternpropertiesvalidatespropertiesmatchingaregex1)
schema class | | sealed interface | [PatternpropertiesValidatesPropertiesMatchingARegex.FoBoxed](#foboxed)
sealed interface for validated payloads | -| record | [PatternpropertiesValidatesPropertiesMatchingARegex.FoBoxedNumber](#foboxednumber)
boxed class to store validated Number payloads | -| static class | [PatternpropertiesValidatesPropertiesMatchingARegex.Fo](#fo)
schema class | +| data class | [PatternpropertiesValidatesPropertiesMatchingARegex.FoBoxedNumber](#foboxednumber)
boxed class to store validated Number payloads | +| class | [PatternpropertiesValidatesPropertiesMatchingARegex.Fo](#fo)
schema class | ## PatternpropertiesValidatesPropertiesMatchingARegex1Boxed sealed interface PatternpropertiesValidatesPropertiesMatchingARegex1Boxed
@@ -55,7 +55,7 @@ data class that stores validated null payloads, sealed permits implementation data class PatternpropertiesValidatesPropertiesMatchingARegex1BoxedBoolean
implements [PatternpropertiesValidatesPropertiesMatchingARegex1Boxed](#patternpropertiesvalidatespropertiesmatchingaregex1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesWithNullValuedInstanceProperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesWithNullValuedInstanceProperties.md index 64651ceda89..b91603116d5 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesWithNullValuedInstanceProperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PatternpropertiesWithNullValuedInstanceProperties.md @@ -11,16 +11,16 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1Boxed](#patternpropertieswithnullvaluedinstanceproperties1boxed)
sealed interface for validated payloads | -| record | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedVoid](#patternpropertieswithnullvaluedinstanceproperties1boxedvoid)
boxed class to store validated null payloads | -| record | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedBoolean](#patternpropertieswithnullvaluedinstanceproperties1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedNumber](#patternpropertieswithnullvaluedinstanceproperties1boxednumber)
boxed class to store validated Number payloads | -| record | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedString](#patternpropertieswithnullvaluedinstanceproperties1boxedstring)
boxed class to store validated String payloads | -| record | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedList](#patternpropertieswithnullvaluedinstanceproperties1boxedlist)
boxed class to store validated List payloads | -| record | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedMap](#patternpropertieswithnullvaluedinstanceproperties1boxedmap)
boxed class to store validated Map payloads | -| static class | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1](#patternpropertieswithnullvaluedinstanceproperties1)
schema class | +| data class | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedVoid](#patternpropertieswithnullvaluedinstanceproperties1boxedvoid)
boxed class to store validated null payloads | +| data class | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedBoolean](#patternpropertieswithnullvaluedinstanceproperties1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedNumber](#patternpropertieswithnullvaluedinstanceproperties1boxednumber)
boxed class to store validated Number payloads | +| data class | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedString](#patternpropertieswithnullvaluedinstanceproperties1boxedstring)
boxed class to store validated String payloads | +| data class | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedList](#patternpropertieswithnullvaluedinstanceproperties1boxedlist)
boxed class to store validated List payloads | +| data class | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1BoxedMap](#patternpropertieswithnullvaluedinstanceproperties1boxedmap)
boxed class to store validated Map payloads | +| class | [PatternpropertiesWithNullValuedInstanceProperties.PatternpropertiesWithNullValuedInstanceProperties1](#patternpropertieswithnullvaluedinstanceproperties1)
schema class | | sealed interface | [PatternpropertiesWithNullValuedInstanceProperties.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [PatternpropertiesWithNullValuedInstanceProperties.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | -| static class | [PatternpropertiesWithNullValuedInstanceProperties.Bar](#bar)
schema class | +| data class | [PatternpropertiesWithNullValuedInstanceProperties.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | +| class | [PatternpropertiesWithNullValuedInstanceProperties.Bar](#bar)
schema class | ## PatternpropertiesWithNullValuedInstanceProperties1Boxed sealed interface PatternpropertiesWithNullValuedInstanceProperties1Boxed
@@ -55,7 +55,7 @@ data class that stores validated null payloads, sealed permits implementation data class PatternpropertiesWithNullValuedInstanceProperties1BoxedBoolean
implements [PatternpropertiesWithNullValuedInstanceProperties1Boxed](#patternpropertieswithnullvaluedinstanceproperties1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsValidationAdjustsTheStartingIndexForItems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsValidationAdjustsTheStartingIndexForItems.md index e83690f3833..a0e87e408cf 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsValidationAdjustsTheStartingIndexForItems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsValidationAdjustsTheStartingIndexForItems.md @@ -13,16 +13,16 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItems1Boxed](#prefixitemsvalidationadjuststhestartingindexforitems1boxed)
sealed interface for validated payloads | -| record | [PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItems1BoxedList](#prefixitemsvalidationadjuststhestartingindexforitems1boxedlist)
boxed class to store validated List payloads | -| static class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItems1](#prefixitemsvalidationadjuststhestartingindexforitems1)
schema class | +| data class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItems1BoxedList](#prefixitemsvalidationadjuststhestartingindexforitems1boxedlist)
boxed class to store validated List payloads | +| class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItems1](#prefixitemsvalidationadjuststhestartingindexforitems1)
schema class | | sealed interface | [PrefixitemsValidationAdjustsTheStartingIndexForItems.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [PrefixitemsValidationAdjustsTheStartingIndexForItems.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| static class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.Schema0](#schema0)
schema class | -| static class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItemsListBuilder](#prefixitemsvalidationadjuststhestartingindexforitemslistbuilder)
builder for List payloads | -| static class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItemsList](#prefixitemsvalidationadjuststhestartingindexforitemslist)
output class for List payloads | +| data class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.Schema0](#schema0)
schema class | +| class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItemsListBuilder](#prefixitemsvalidationadjuststhestartingindexforitemslistbuilder)
builder for List payloads | +| class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.PrefixitemsValidationAdjustsTheStartingIndexForItemsList](#prefixitemsvalidationadjuststhestartingindexforitemslist)
output class for List payloads | | sealed interface | [PrefixitemsValidationAdjustsTheStartingIndexForItems.ItemsBoxed](#itemsboxed)
sealed interface for validated payloads | -| record | [PrefixitemsValidationAdjustsTheStartingIndexForItems.ItemsBoxedNumber](#itemsboxednumber)
boxed class to store validated Number payloads | -| static class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.Items](#items)
schema class | +| data class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.ItemsBoxedNumber](#itemsboxednumber)
boxed class to store validated Number payloads | +| class | [PrefixitemsValidationAdjustsTheStartingIndexForItems.Items](#items)
schema class | ## PrefixitemsValidationAdjustsTheStartingIndexForItems1Boxed sealed interface PrefixitemsValidationAdjustsTheStartingIndexForItems1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsWithNullInstanceElements.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsWithNullInstanceElements.md index 3253e13237a..ecb8ef4fdda 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsWithNullInstanceElements.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PrefixitemsWithNullInstanceElements.md @@ -13,18 +13,18 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1Boxed](#prefixitemswithnullinstanceelements1boxed)
sealed interface for validated payloads | -| record | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedVoid](#prefixitemswithnullinstanceelements1boxedvoid)
boxed class to store validated null payloads | -| record | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedBoolean](#prefixitemswithnullinstanceelements1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedNumber](#prefixitemswithnullinstanceelements1boxednumber)
boxed class to store validated Number payloads | -| record | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedString](#prefixitemswithnullinstanceelements1boxedstring)
boxed class to store validated String payloads | -| record | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedList](#prefixitemswithnullinstanceelements1boxedlist)
boxed class to store validated List payloads | -| record | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedMap](#prefixitemswithnullinstanceelements1boxedmap)
boxed class to store validated Map payloads | -| static class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1](#prefixitemswithnullinstanceelements1)
schema class | +| data class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedVoid](#prefixitemswithnullinstanceelements1boxedvoid)
boxed class to store validated null payloads | +| data class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedBoolean](#prefixitemswithnullinstanceelements1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedNumber](#prefixitemswithnullinstanceelements1boxednumber)
boxed class to store validated Number payloads | +| data class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedString](#prefixitemswithnullinstanceelements1boxedstring)
boxed class to store validated String payloads | +| data class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedList](#prefixitemswithnullinstanceelements1boxedlist)
boxed class to store validated List payloads | +| data class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1BoxedMap](#prefixitemswithnullinstanceelements1boxedmap)
boxed class to store validated Map payloads | +| class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElements1](#prefixitemswithnullinstanceelements1)
schema class | | sealed interface | [PrefixitemsWithNullInstanceElements.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [PrefixitemsWithNullInstanceElements.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| static class | [PrefixitemsWithNullInstanceElements.Schema0](#schema0)
schema class | -| static class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElementsListBuilder](#prefixitemswithnullinstanceelementslistbuilder)
builder for List payloads | -| static class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElementsList](#prefixitemswithnullinstanceelementslist)
output class for List payloads | +| data class | [PrefixitemsWithNullInstanceElements.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| class | [PrefixitemsWithNullInstanceElements.Schema0](#schema0)
schema class | +| class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElementsListBuilder](#prefixitemswithnullinstanceelementslistbuilder)
builder for List payloads | +| class | [PrefixitemsWithNullInstanceElements.PrefixitemsWithNullInstanceElementsList](#prefixitemswithnullinstanceelementslist)
output class for List payloads | ## PrefixitemsWithNullInstanceElements1Boxed sealed interface PrefixitemsWithNullInstanceElements1Boxed
@@ -59,7 +59,7 @@ data class that stores validated null payloads, sealed permits implementation data class PrefixitemsWithNullInstanceElements1BoxedBoolean
implements [PrefixitemsWithNullInstanceElements1Boxed](#prefixitemswithnullinstanceelements1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesPatternpropertiesAdditionalpropertiesInteraction.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesPatternpropertiesAdditionalpropertiesInteraction.md index 229f2334530..da60ba47254 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesPatternpropertiesAdditionalpropertiesInteraction.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesPatternpropertiesAdditionalpropertiesInteraction.md @@ -13,27 +13,27 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteraction1Boxed](#propertiespatternpropertiesadditionalpropertiesinteraction1boxed)
sealed interface for validated payloads | -| record | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteraction1BoxedMap](#propertiespatternpropertiesadditionalpropertiesinteraction1boxedmap)
boxed class to store validated Map payloads | -| static class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteraction1](#propertiespatternpropertiesadditionalpropertiesinteraction1)
schema class | -| static class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteractionMapBuilder](#propertiespatternpropertiesadditionalpropertiesinteractionmapbuilder)
builder for Map payloads | -| static class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteractionMap](#propertiespatternpropertiesadditionalpropertiesinteractionmap)
output class for Map payloads | +| data class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteraction1BoxedMap](#propertiespatternpropertiesadditionalpropertiesinteraction1boxedmap)
boxed class to store validated Map payloads | +| class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteraction1](#propertiespatternpropertiesadditionalpropertiesinteraction1)
schema class | +| class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteractionMapBuilder](#propertiespatternpropertiesadditionalpropertiesinteractionmapbuilder)
builder for Map payloads | +| class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.PropertiesPatternpropertiesAdditionalpropertiesInteractionMap](#propertiespatternpropertiesadditionalpropertiesinteractionmap)
output class for Map payloads | | sealed interface | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | -| static class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.Bar](#bar)
schema class | +| data class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | +| class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.Bar](#bar)
schema class | | sealed interface | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| static class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.Foo](#foo)
schema class | +| data class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.Foo](#foo)
schema class | | sealed interface | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxed](#foboxed)
sealed interface for validated payloads | -| record | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedVoid](#foboxedvoid)
boxed class to store validated null payloads | -| record | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedBoolean](#foboxedboolean)
boxed class to store validated boolean payloads | -| record | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedNumber](#foboxednumber)
boxed class to store validated Number payloads | -| record | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedString](#foboxedstring)
boxed class to store validated String payloads | -| record | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedList](#foboxedlist)
boxed class to store validated List payloads | -| record | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedMap](#foboxedmap)
boxed class to store validated Map payloads | -| static class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.Fo](#fo)
schema class | +| data class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedVoid](#foboxedvoid)
boxed class to store validated null payloads | +| data class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedBoolean](#foboxedboolean)
boxed class to store validated boolean payloads | +| data class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedNumber](#foboxednumber)
boxed class to store validated Number payloads | +| data class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedString](#foboxedstring)
boxed class to store validated String payloads | +| data class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedList](#foboxedlist)
boxed class to store validated List payloads | +| data class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.FoBoxedMap](#foboxedmap)
boxed class to store validated Map payloads | +| class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.Fo](#fo)
schema class | | sealed interface | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.AdditionalPropertiesBoxed](#additionalpropertiesboxed)
sealed interface for validated payloads | -| record | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.AdditionalPropertiesBoxedNumber](#additionalpropertiesboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.AdditionalProperties](#additionalproperties)
schema class | +| data class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.AdditionalPropertiesBoxedNumber](#additionalpropertiesboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesPatternpropertiesAdditionalpropertiesInteraction.AdditionalProperties](#additionalproperties)
schema class | ## PropertiesPatternpropertiesAdditionalpropertiesInteraction1Boxed sealed interface PropertiesPatternpropertiesAdditionalpropertiesInteraction1Boxed
@@ -252,7 +252,7 @@ data class that stores validated null payloads, sealed permits implementation data class FoBoxedBoolean
implements [FoBoxed](#foboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWhoseNamesAreJavascriptObjectPropertyNames.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWhoseNamesAreJavascriptObjectPropertyNames.md index a01fd3448b5..ef3cefefe1a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWhoseNamesAreJavascriptObjectPropertyNames.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWhoseNamesAreJavascriptObjectPropertyNames.md @@ -13,34 +13,34 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1Boxed](#propertieswhosenamesarejavascriptobjectpropertynames1boxed)
sealed interface for validated payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedVoid](#propertieswhosenamesarejavascriptobjectpropertynames1boxedvoid)
boxed class to store validated null payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedBoolean](#propertieswhosenamesarejavascriptobjectpropertynames1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedNumber](#propertieswhosenamesarejavascriptobjectpropertynames1boxednumber)
boxed class to store validated Number payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedString](#propertieswhosenamesarejavascriptobjectpropertynames1boxedstring)
boxed class to store validated String payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedList](#propertieswhosenamesarejavascriptobjectpropertynames1boxedlist)
boxed class to store validated List payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedMap](#propertieswhosenamesarejavascriptobjectpropertynames1boxedmap)
boxed class to store validated Map payloads | -| static class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1](#propertieswhosenamesarejavascriptobjectpropertynames1)
schema class | -| static class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNamesMapBuilder](#propertieswhosenamesarejavascriptobjectpropertynamesmapbuilder)
builder for Map payloads | -| static class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNamesMap](#propertieswhosenamesarejavascriptobjectpropertynamesmap)
output class for Map payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedVoid](#propertieswhosenamesarejavascriptobjectpropertynames1boxedvoid)
boxed class to store validated null payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedBoolean](#propertieswhosenamesarejavascriptobjectpropertynames1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedNumber](#propertieswhosenamesarejavascriptobjectpropertynames1boxednumber)
boxed class to store validated Number payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedString](#propertieswhosenamesarejavascriptobjectpropertynames1boxedstring)
boxed class to store validated String payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedList](#propertieswhosenamesarejavascriptobjectpropertynames1boxedlist)
boxed class to store validated List payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedMap](#propertieswhosenamesarejavascriptobjectpropertynames1boxedmap)
boxed class to store validated Map payloads | +| class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNames1](#propertieswhosenamesarejavascriptobjectpropertynames1)
schema class | +| class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNamesMapBuilder](#propertieswhosenamesarejavascriptobjectpropertynamesmapbuilder)
builder for Map payloads | +| class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.PropertiesWhoseNamesAreJavascriptObjectPropertyNamesMap](#propertieswhosenamesarejavascriptobjectpropertynamesmap)
output class for Map payloads | | sealed interface | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ConstructorSchemaBoxed](#constructorschemaboxed)
sealed interface for validated payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ConstructorSchemaBoxedNumber](#constructorschemaboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ConstructorSchema](#constructorschema)
schema class | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ConstructorSchemaBoxedNumber](#constructorschemaboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ConstructorSchema](#constructorschema)
schema class | | sealed interface | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxed](#tostringschemaboxed)
sealed interface for validated payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedVoid](#tostringschemaboxedvoid)
boxed class to store validated null payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedBoolean](#tostringschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedNumber](#tostringschemaboxednumber)
boxed class to store validated Number payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedString](#tostringschemaboxedstring)
boxed class to store validated String payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedList](#tostringschemaboxedlist)
boxed class to store validated List payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedMap](#tostringschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchema](#tostringschema)
schema class | -| static class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringMapBuilder](#tostringmapbuilder)
builder for Map payloads | -| static class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringMap](#tostringmap)
output class for Map payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedVoid](#tostringschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedBoolean](#tostringschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedNumber](#tostringschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedString](#tostringschemaboxedstring)
boxed class to store validated String payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedList](#tostringschemaboxedlist)
boxed class to store validated List payloads | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchemaBoxedMap](#tostringschemaboxedmap)
boxed class to store validated Map payloads | +| class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringSchema](#tostringschema)
schema class | +| class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringMapBuilder](#tostringmapbuilder)
builder for Map payloads | +| class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ToStringMap](#tostringmap)
output class for Map payloads | | sealed interface | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.LengthBoxed](#lengthboxed)
sealed interface for validated payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.LengthBoxedString](#lengthboxedstring)
boxed class to store validated String payloads | -| static class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.Length](#length)
schema class | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.LengthBoxedString](#lengthboxedstring)
boxed class to store validated String payloads | +| class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.Length](#length)
schema class | | sealed interface | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ProtoBoxed](#protoboxed)
sealed interface for validated payloads | -| record | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ProtoBoxedNumber](#protoboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.Proto](#proto)
schema class | +| data class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.ProtoBoxedNumber](#protoboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWhoseNamesAreJavascriptObjectPropertyNames.Proto](#proto)
schema class | ## PropertiesWhoseNamesAreJavascriptObjectPropertyNames1Boxed sealed interface PropertiesWhoseNamesAreJavascriptObjectPropertyNames1Boxed
@@ -75,7 +75,7 @@ data class that stores validated null payloads, sealed permits implementation data class PropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedBoolean
implements [PropertiesWhoseNamesAreJavascriptObjectPropertyNames1Boxed](#propertieswhosenamesarejavascriptobjectpropertynames1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -312,7 +312,7 @@ data class that stores validated null payloads, sealed permits implementation data class ToStringSchemaBoxedBoolean
implements [ToStringSchemaBoxed](#tostringschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md index b602055af40..9d2e1741199 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithEscapedCharacters.md @@ -13,33 +13,33 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1Boxed](#propertieswithescapedcharacters1boxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedVoid](#propertieswithescapedcharacters1boxedvoid)
boxed class to store validated null payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedBoolean](#propertieswithescapedcharacters1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedNumber](#propertieswithescapedcharacters1boxednumber)
boxed class to store validated Number payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedString](#propertieswithescapedcharacters1boxedstring)
boxed class to store validated String payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedList](#propertieswithescapedcharacters1boxedlist)
boxed class to store validated List payloads | -| record | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedMap](#propertieswithescapedcharacters1boxedmap)
boxed class to store validated Map payloads | -| static class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1](#propertieswithescapedcharacters1)
schema class | -| static class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharactersMapBuilder](#propertieswithescapedcharactersmapbuilder)
builder for Map payloads | -| static class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharactersMap](#propertieswithescapedcharactersmap)
output class for Map payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedVoid](#propertieswithescapedcharacters1boxedvoid)
boxed class to store validated null payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedBoolean](#propertieswithescapedcharacters1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedNumber](#propertieswithescapedcharacters1boxednumber)
boxed class to store validated Number payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedString](#propertieswithescapedcharacters1boxedstring)
boxed class to store validated String payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedList](#propertieswithescapedcharacters1boxedlist)
boxed class to store validated List payloads | +| data class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1BoxedMap](#propertieswithescapedcharacters1boxedmap)
boxed class to store validated Map payloads | +| class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharacters1](#propertieswithescapedcharacters1)
schema class | +| class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharactersMapBuilder](#propertieswithescapedcharactersmapbuilder)
builder for Map payloads | +| class | [PropertiesWithEscapedCharacters.PropertiesWithEscapedCharactersMap](#propertieswithescapedcharactersmap)
output class for Map payloads | | sealed interface | [PropertiesWithEscapedCharacters.Foou000CbarBoxed](#foou000cbarboxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.Foou000CbarBoxedNumber](#foou000cbarboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Foou000Cbar](#foou000cbar)
schema class | +| data class | [PropertiesWithEscapedCharacters.Foou000CbarBoxedNumber](#foou000cbarboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Foou000Cbar](#foou000cbar)
schema class | | sealed interface | [PropertiesWithEscapedCharacters.FootbarBoxed](#footbarboxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.FootbarBoxedNumber](#footbarboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Footbar](#footbar)
schema class | +| data class | [PropertiesWithEscapedCharacters.FootbarBoxedNumber](#footbarboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Footbar](#footbar)
schema class | | sealed interface | [PropertiesWithEscapedCharacters.FoorbarBoxed](#foorbarboxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.FoorbarBoxedNumber](#foorbarboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Foorbar](#foorbar)
schema class | +| data class | [PropertiesWithEscapedCharacters.FoorbarBoxedNumber](#foorbarboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Foorbar](#foorbar)
schema class | | sealed interface | [PropertiesWithEscapedCharacters.Foobar1Boxed](#foobar1boxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.Foobar1BoxedNumber](#foobar1boxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Foobar1](#foobar1)
schema class | +| data class | [PropertiesWithEscapedCharacters.Foobar1BoxedNumber](#foobar1boxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Foobar1](#foobar1)
schema class | | sealed interface | [PropertiesWithEscapedCharacters.FoobarBoxed](#foobarboxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.FoobarBoxedNumber](#foobarboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Foobar](#foobar)
schema class | +| data class | [PropertiesWithEscapedCharacters.FoobarBoxedNumber](#foobarboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Foobar](#foobar)
schema class | | sealed interface | [PropertiesWithEscapedCharacters.FoonbarBoxed](#foonbarboxed)
sealed interface for validated payloads | -| record | [PropertiesWithEscapedCharacters.FoonbarBoxedNumber](#foonbarboxednumber)
boxed class to store validated Number payloads | -| static class | [PropertiesWithEscapedCharacters.Foonbar](#foonbar)
schema class | +| data class | [PropertiesWithEscapedCharacters.FoonbarBoxedNumber](#foonbarboxednumber)
boxed class to store validated Number payloads | +| class | [PropertiesWithEscapedCharacters.Foonbar](#foonbar)
schema class | ## PropertiesWithEscapedCharacters1Boxed sealed interface PropertiesWithEscapedCharacters1Boxed
@@ -74,7 +74,7 @@ data class that stores validated null payloads, sealed permits implementation data class PropertiesWithEscapedCharacters1BoxedBoolean
implements [PropertiesWithEscapedCharacters1Boxed](#propertieswithescapedcharacters1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithNullValuedInstanceProperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithNullValuedInstanceProperties.md index 036f36236c6..90e58e7edab 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithNullValuedInstanceProperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertiesWithNullValuedInstanceProperties.md @@ -13,18 +13,18 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1Boxed](#propertieswithnullvaluedinstanceproperties1boxed)
sealed interface for validated payloads | -| record | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedVoid](#propertieswithnullvaluedinstanceproperties1boxedvoid)
boxed class to store validated null payloads | -| record | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedBoolean](#propertieswithnullvaluedinstanceproperties1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedNumber](#propertieswithnullvaluedinstanceproperties1boxednumber)
boxed class to store validated Number payloads | -| record | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedString](#propertieswithnullvaluedinstanceproperties1boxedstring)
boxed class to store validated String payloads | -| record | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedList](#propertieswithnullvaluedinstanceproperties1boxedlist)
boxed class to store validated List payloads | -| record | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedMap](#propertieswithnullvaluedinstanceproperties1boxedmap)
boxed class to store validated Map payloads | -| static class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1](#propertieswithnullvaluedinstanceproperties1)
schema class | -| static class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstancePropertiesMapBuilder](#propertieswithnullvaluedinstancepropertiesmapbuilder)
builder for Map payloads | -| static class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstancePropertiesMap](#propertieswithnullvaluedinstancepropertiesmap)
output class for Map payloads | +| data class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedVoid](#propertieswithnullvaluedinstanceproperties1boxedvoid)
boxed class to store validated null payloads | +| data class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedBoolean](#propertieswithnullvaluedinstanceproperties1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedNumber](#propertieswithnullvaluedinstanceproperties1boxednumber)
boxed class to store validated Number payloads | +| data class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedString](#propertieswithnullvaluedinstanceproperties1boxedstring)
boxed class to store validated String payloads | +| data class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedList](#propertieswithnullvaluedinstanceproperties1boxedlist)
boxed class to store validated List payloads | +| data class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1BoxedMap](#propertieswithnullvaluedinstanceproperties1boxedmap)
boxed class to store validated Map payloads | +| class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstanceProperties1](#propertieswithnullvaluedinstanceproperties1)
schema class | +| class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstancePropertiesMapBuilder](#propertieswithnullvaluedinstancepropertiesmapbuilder)
builder for Map payloads | +| class | [PropertiesWithNullValuedInstanceProperties.PropertiesWithNullValuedInstancePropertiesMap](#propertieswithnullvaluedinstancepropertiesmap)
output class for Map payloads | | sealed interface | [PropertiesWithNullValuedInstanceProperties.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [PropertiesWithNullValuedInstanceProperties.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| static class | [PropertiesWithNullValuedInstanceProperties.Foo](#foo)
schema class | +| data class | [PropertiesWithNullValuedInstanceProperties.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| class | [PropertiesWithNullValuedInstanceProperties.Foo](#foo)
schema class | ## PropertiesWithNullValuedInstanceProperties1Boxed sealed interface PropertiesWithNullValuedInstanceProperties1Boxed
@@ -59,7 +59,7 @@ data class that stores validated null payloads, sealed permits implementation data class PropertiesWithNullValuedInstanceProperties1BoxedBoolean
implements [PropertiesWithNullValuedInstanceProperties1Boxed](#propertieswithnullvaluedinstanceproperties1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md index 2cb82e8642d..8d451d72ab3 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertyNamedRefThatIsNotAReference.md @@ -13,18 +13,18 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1Boxed](#propertynamedrefthatisnotareference1boxed)
sealed interface for validated payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedVoid](#propertynamedrefthatisnotareference1boxedvoid)
boxed class to store validated null payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedBoolean](#propertynamedrefthatisnotareference1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedNumber](#propertynamedrefthatisnotareference1boxednumber)
boxed class to store validated Number payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedString](#propertynamedrefthatisnotareference1boxedstring)
boxed class to store validated String payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedList](#propertynamedrefthatisnotareference1boxedlist)
boxed class to store validated List payloads | -| record | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedMap](#propertynamedrefthatisnotareference1boxedmap)
boxed class to store validated Map payloads | -| static class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1](#propertynamedrefthatisnotareference1)
schema class | -| static class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReferenceMapBuilder](#propertynamedrefthatisnotareferencemapbuilder)
builder for Map payloads | -| static class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReferenceMap](#propertynamedrefthatisnotareferencemap)
output class for Map payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedVoid](#propertynamedrefthatisnotareference1boxedvoid)
boxed class to store validated null payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedBoolean](#propertynamedrefthatisnotareference1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedNumber](#propertynamedrefthatisnotareference1boxednumber)
boxed class to store validated Number payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedString](#propertynamedrefthatisnotareference1boxedstring)
boxed class to store validated String payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedList](#propertynamedrefthatisnotareference1boxedlist)
boxed class to store validated List payloads | +| data class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1BoxedMap](#propertynamedrefthatisnotareference1boxedmap)
boxed class to store validated Map payloads | +| class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReference1](#propertynamedrefthatisnotareference1)
schema class | +| class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReferenceMapBuilder](#propertynamedrefthatisnotareferencemapbuilder)
builder for Map payloads | +| class | [PropertyNamedRefThatIsNotAReference.PropertyNamedRefThatIsNotAReferenceMap](#propertynamedrefthatisnotareferencemap)
output class for Map payloads | | sealed interface | [PropertyNamedRefThatIsNotAReference.RefBoxed](#refboxed)
sealed interface for validated payloads | -| record | [PropertyNamedRefThatIsNotAReference.RefBoxedString](#refboxedstring)
boxed class to store validated String payloads | -| static class | [PropertyNamedRefThatIsNotAReference.Ref](#ref)
schema class | +| data class | [PropertyNamedRefThatIsNotAReference.RefBoxedString](#refboxedstring)
boxed class to store validated String payloads | +| class | [PropertyNamedRefThatIsNotAReference.Ref](#ref)
schema class | ## PropertyNamedRefThatIsNotAReference1Boxed sealed interface PropertyNamedRefThatIsNotAReference1Boxed
@@ -59,7 +59,7 @@ data class that stores validated null payloads, sealed permits implementation data class PropertyNamedRefThatIsNotAReference1BoxedBoolean
implements [PropertyNamedRefThatIsNotAReference1Boxed](#propertynamedrefthatisnotareference1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertynamesValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertynamesValidation.md index 520174c9fb6..7248e6a46ca 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertynamesValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/PropertynamesValidation.md @@ -11,16 +11,16 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [PropertynamesValidation.PropertynamesValidation1Boxed](#propertynamesvalidation1boxed)
sealed interface for validated payloads | -| record | [PropertynamesValidation.PropertynamesValidation1BoxedVoid](#propertynamesvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [PropertynamesValidation.PropertynamesValidation1BoxedBoolean](#propertynamesvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [PropertynamesValidation.PropertynamesValidation1BoxedNumber](#propertynamesvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [PropertynamesValidation.PropertynamesValidation1BoxedString](#propertynamesvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [PropertynamesValidation.PropertynamesValidation1BoxedList](#propertynamesvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [PropertynamesValidation.PropertynamesValidation1BoxedMap](#propertynamesvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [PropertynamesValidation.PropertynamesValidation1](#propertynamesvalidation1)
schema class | +| data class | [PropertynamesValidation.PropertynamesValidation1BoxedVoid](#propertynamesvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [PropertynamesValidation.PropertynamesValidation1BoxedBoolean](#propertynamesvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [PropertynamesValidation.PropertynamesValidation1BoxedNumber](#propertynamesvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [PropertynamesValidation.PropertynamesValidation1BoxedString](#propertynamesvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [PropertynamesValidation.PropertynamesValidation1BoxedList](#propertynamesvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [PropertynamesValidation.PropertynamesValidation1BoxedMap](#propertynamesvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [PropertynamesValidation.PropertynamesValidation1](#propertynamesvalidation1)
schema class | | sealed interface | [PropertynamesValidation.PropertyNamesBoxed](#propertynamesboxed)
sealed interface for validated payloads | -| record | [PropertynamesValidation.PropertyNamesBoxedString](#propertynamesboxedstring)
boxed class to store validated String payloads | -| static class | [PropertynamesValidation.PropertyNames](#propertynames)
schema class | +| data class | [PropertynamesValidation.PropertyNamesBoxedString](#propertynamesboxedstring)
boxed class to store validated String payloads | +| class | [PropertynamesValidation.PropertyNames](#propertynames)
schema class | ## PropertynamesValidation1Boxed sealed interface PropertynamesValidation1Boxed
@@ -55,7 +55,7 @@ data class that stores validated null payloads, sealed permits implementation data class PropertynamesValidation1BoxedBoolean
implements [PropertynamesValidation1Boxed](#propertynamesvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexFormat.md index 9e8401449dc..56355a1bf54 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RegexFormat.RegexFormat1Boxed](#regexformat1boxed)
sealed interface for validated payloads | -| record | [RegexFormat.RegexFormat1BoxedVoid](#regexformat1boxedvoid)
boxed class to store validated null payloads | -| record | [RegexFormat.RegexFormat1BoxedBoolean](#regexformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RegexFormat.RegexFormat1BoxedNumber](#regexformat1boxednumber)
boxed class to store validated Number payloads | -| record | [RegexFormat.RegexFormat1BoxedString](#regexformat1boxedstring)
boxed class to store validated String payloads | -| record | [RegexFormat.RegexFormat1BoxedList](#regexformat1boxedlist)
boxed class to store validated List payloads | -| record | [RegexFormat.RegexFormat1BoxedMap](#regexformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [RegexFormat.RegexFormat1](#regexformat1)
schema class | +| data class | [RegexFormat.RegexFormat1BoxedVoid](#regexformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [RegexFormat.RegexFormat1BoxedBoolean](#regexformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RegexFormat.RegexFormat1BoxedNumber](#regexformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [RegexFormat.RegexFormat1BoxedString](#regexformat1boxedstring)
boxed class to store validated String payloads | +| data class | [RegexFormat.RegexFormat1BoxedList](#regexformat1boxedlist)
boxed class to store validated List payloads | +| data class | [RegexFormat.RegexFormat1BoxedMap](#regexformat1boxedmap)
boxed class to store validated Map payloads | +| class | [RegexFormat.RegexFormat1](#regexformat1)
schema class | ## RegexFormat1Boxed sealed interface RegexFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class RegexFormat1BoxedBoolean
implements [RegexFormat1Boxed](#regexformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.md index 0a3a8907328..0f42ca6a1d4 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.md @@ -11,19 +11,19 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1Boxed](#regexesarenotanchoredbydefaultandarecasesensitive1boxed)
sealed interface for validated payloads | -| record | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedVoid](#regexesarenotanchoredbydefaultandarecasesensitive1boxedvoid)
boxed class to store validated null payloads | -| record | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedBoolean](#regexesarenotanchoredbydefaultandarecasesensitive1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedNumber](#regexesarenotanchoredbydefaultandarecasesensitive1boxednumber)
boxed class to store validated Number payloads | -| record | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedString](#regexesarenotanchoredbydefaultandarecasesensitive1boxedstring)
boxed class to store validated String payloads | -| record | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedList](#regexesarenotanchoredbydefaultandarecasesensitive1boxedlist)
boxed class to store validated List payloads | -| record | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedMap](#regexesarenotanchoredbydefaultandarecasesensitive1boxedmap)
boxed class to store validated Map payloads | -| static class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1](#regexesarenotanchoredbydefaultandarecasesensitive1)
schema class | +| data class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedVoid](#regexesarenotanchoredbydefaultandarecasesensitive1boxedvoid)
boxed class to store validated null payloads | +| data class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedBoolean](#regexesarenotanchoredbydefaultandarecasesensitive1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedNumber](#regexesarenotanchoredbydefaultandarecasesensitive1boxednumber)
boxed class to store validated Number payloads | +| data class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedString](#regexesarenotanchoredbydefaultandarecasesensitive1boxedstring)
boxed class to store validated String payloads | +| data class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedList](#regexesarenotanchoredbydefaultandarecasesensitive1boxedlist)
boxed class to store validated List payloads | +| data class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedMap](#regexesarenotanchoredbydefaultandarecasesensitive1boxedmap)
boxed class to store validated Map payloads | +| class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1](#regexesarenotanchoredbydefaultandarecasesensitive1)
schema class | | sealed interface | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.XBoxed](#xboxed)
sealed interface for validated payloads | -| record | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.XBoxedString](#xboxedstring)
boxed class to store validated String payloads | -| static class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.X](#x)
schema class | +| data class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.XBoxedString](#xboxedstring)
boxed class to store validated String payloads | +| class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.X](#x)
schema class | | sealed interface | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.Schema092Boxed](#schema092boxed)
sealed interface for validated payloads | -| record | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.Schema092BoxedBoolean](#schema092boxedboolean)
boxed class to store validated boolean payloads | -| static class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.Schema092](#schema092)
schema class | +| data class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.Schema092BoxedBoolean](#schema092boxedboolean)
boxed class to store validated boolean payloads | +| class | [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive.Schema092](#schema092)
schema class | ## RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1Boxed sealed interface RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1Boxed
@@ -58,7 +58,7 @@ data class that stores validated null payloads, sealed permits implementation data class RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1BoxedBoolean
implements [RegexesAreNotAnchoredByDefaultAndAreCaseSensitive1Boxed](#regexesarenotanchoredbydefaultandarecasesensitive1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -218,7 +218,7 @@ sealed interface that stores validated payloads using boxed classes data class Schema092BoxedBoolean
implements [Schema092Boxed](#schema092boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RelativeJsonPointerFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RelativeJsonPointerFormat.md index 4e1c435ffcc..78d83bb9e63 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RelativeJsonPointerFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RelativeJsonPointerFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1Boxed](#relativejsonpointerformat1boxed)
sealed interface for validated payloads | -| record | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedVoid](#relativejsonpointerformat1boxedvoid)
boxed class to store validated null payloads | -| record | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedBoolean](#relativejsonpointerformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedNumber](#relativejsonpointerformat1boxednumber)
boxed class to store validated Number payloads | -| record | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedString](#relativejsonpointerformat1boxedstring)
boxed class to store validated String payloads | -| record | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedList](#relativejsonpointerformat1boxedlist)
boxed class to store validated List payloads | -| record | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedMap](#relativejsonpointerformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1](#relativejsonpointerformat1)
schema class | +| data class | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedVoid](#relativejsonpointerformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedBoolean](#relativejsonpointerformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedNumber](#relativejsonpointerformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedString](#relativejsonpointerformat1boxedstring)
boxed class to store validated String payloads | +| data class | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedList](#relativejsonpointerformat1boxedlist)
boxed class to store validated List payloads | +| data class | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1BoxedMap](#relativejsonpointerformat1boxedmap)
boxed class to store validated Map payloads | +| class | [RelativeJsonPointerFormat.RelativeJsonPointerFormat1](#relativejsonpointerformat1)
schema class | ## RelativeJsonPointerFormat1Boxed sealed interface RelativeJsonPointerFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class RelativeJsonPointerFormat1BoxedBoolean
implements [RelativeJsonPointerFormat1Boxed](#relativejsonpointerformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md index 3dc803a4186..80acec0b953 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredDefaultValidation.md @@ -13,23 +13,23 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RequiredDefaultValidation.RequiredDefaultValidation1Boxed](#requireddefaultvalidation1boxed)
sealed interface for validated payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedVoid](#requireddefaultvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedBoolean](#requireddefaultvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedNumber](#requireddefaultvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedString](#requireddefaultvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedList](#requireddefaultvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedMap](#requireddefaultvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredDefaultValidation.RequiredDefaultValidation1](#requireddefaultvalidation1)
schema class | -| static class | [RequiredDefaultValidation.RequiredDefaultValidationMapBuilder](#requireddefaultvalidationmapbuilder)
builder for Map payloads | -| static class | [RequiredDefaultValidation.RequiredDefaultValidationMap](#requireddefaultvalidationmap)
output class for Map payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedVoid](#requireddefaultvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedBoolean](#requireddefaultvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedNumber](#requireddefaultvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedString](#requireddefaultvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedList](#requireddefaultvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [RequiredDefaultValidation.RequiredDefaultValidation1BoxedMap](#requireddefaultvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [RequiredDefaultValidation.RequiredDefaultValidation1](#requireddefaultvalidation1)
schema class | +| class | [RequiredDefaultValidation.RequiredDefaultValidationMapBuilder](#requireddefaultvalidationmapbuilder)
builder for Map payloads | +| class | [RequiredDefaultValidation.RequiredDefaultValidationMap](#requireddefaultvalidationmap)
output class for Map payloads | | sealed interface | [RequiredDefaultValidation.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [RequiredDefaultValidation.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [RequiredDefaultValidation.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredDefaultValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [RequiredDefaultValidation.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [RequiredDefaultValidation.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [RequiredDefaultValidation.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredDefaultValidation.Foo](#foo)
schema class | +| data class | [RequiredDefaultValidation.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredDefaultValidation.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredDefaultValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredDefaultValidation.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [RequiredDefaultValidation.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [RequiredDefaultValidation.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [RequiredDefaultValidation.Foo](#foo)
schema class | ## RequiredDefaultValidation1Boxed sealed interface RequiredDefaultValidation1Boxed
@@ -64,7 +64,7 @@ data class that stores validated null payloads, sealed permits implementation data class RequiredDefaultValidation1BoxedBoolean
implements [RequiredDefaultValidation1Boxed](#requireddefaultvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -258,7 +258,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.md index 75fa259fe04..a20d1fe1796 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.md @@ -13,15 +13,15 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1Boxed](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxed)
sealed interface for validated payloads | -| record | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedVoid](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedvoid)
boxed class to store validated null payloads | -| record | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedBoolean](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedNumber](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxednumber)
boxed class to store validated Number payloads | -| record | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedString](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedstring)
boxed class to store validated String payloads | -| record | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedList](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedlist)
boxed class to store validated List payloads | -| record | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedMap](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1)
schema class | -| static class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNamesMapBuilder](#requiredpropertieswhosenamesarejavascriptobjectpropertynamesmapbuilder)
builder for Map payloads | -| static class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNamesMap](#requiredpropertieswhosenamesarejavascriptobjectpropertynamesmap)
output class for Map payloads | +| data class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedVoid](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedBoolean](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedNumber](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedString](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedstring)
boxed class to store validated String payloads | +| data class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedList](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedlist)
boxed class to store validated List payloads | +| data class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedMap](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxedmap)
boxed class to store validated Map payloads | +| class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1)
schema class | +| class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNamesMapBuilder](#requiredpropertieswhosenamesarejavascriptobjectpropertynamesmapbuilder)
builder for Map payloads | +| class | [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames.RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNamesMap](#requiredpropertieswhosenamesarejavascriptobjectpropertynamesmap)
output class for Map payloads | ## RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1Boxed sealed interface RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1Boxed
@@ -56,7 +56,7 @@ data class that stores validated null payloads, sealed permits implementation data class RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1BoxedBoolean
implements [RequiredPropertiesWhoseNamesAreJavascriptObjectPropertyNames1Boxed](#requiredpropertieswhosenamesarejavascriptobjectpropertynames1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredValidation.md index a74cb2c2e08..5d2fc896d8a 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredValidation.md @@ -13,31 +13,31 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RequiredValidation.RequiredValidation1Boxed](#requiredvalidation1boxed)
sealed interface for validated payloads | -| record | [RequiredValidation.RequiredValidation1BoxedVoid](#requiredvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [RequiredValidation.RequiredValidation1BoxedBoolean](#requiredvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredValidation.RequiredValidation1BoxedNumber](#requiredvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [RequiredValidation.RequiredValidation1BoxedString](#requiredvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [RequiredValidation.RequiredValidation1BoxedList](#requiredvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [RequiredValidation.RequiredValidation1BoxedMap](#requiredvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredValidation.RequiredValidation1](#requiredvalidation1)
schema class | -| static class | [RequiredValidation.RequiredValidationMapBuilder](#requiredvalidationmapbuilder)
builder for Map payloads | -| static class | [RequiredValidation.RequiredValidationMap](#requiredvalidationmap)
output class for Map payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedVoid](#requiredvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedBoolean](#requiredvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedNumber](#requiredvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedString](#requiredvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedList](#requiredvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [RequiredValidation.RequiredValidation1BoxedMap](#requiredvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [RequiredValidation.RequiredValidation1](#requiredvalidation1)
schema class | +| class | [RequiredValidation.RequiredValidationMapBuilder](#requiredvalidationmapbuilder)
builder for Map payloads | +| class | [RequiredValidation.RequiredValidationMap](#requiredvalidationmap)
output class for Map payloads | | sealed interface | [RequiredValidation.BarBoxed](#barboxed)
sealed interface for validated payloads | -| record | [RequiredValidation.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | -| record | [RequiredValidation.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredValidation.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | -| record | [RequiredValidation.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | -| record | [RequiredValidation.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | -| record | [RequiredValidation.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredValidation.Bar](#bar)
schema class | +| data class | [RequiredValidation.BarBoxedVoid](#barboxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredValidation.BarBoxedBoolean](#barboxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredValidation.BarBoxedNumber](#barboxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredValidation.BarBoxedString](#barboxedstring)
boxed class to store validated String payloads | +| data class | [RequiredValidation.BarBoxedList](#barboxedlist)
boxed class to store validated List payloads | +| data class | [RequiredValidation.BarBoxedMap](#barboxedmap)
boxed class to store validated Map payloads | +| class | [RequiredValidation.Bar](#bar)
schema class | | sealed interface | [RequiredValidation.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [RequiredValidation.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [RequiredValidation.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [RequiredValidation.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [RequiredValidation.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [RequiredValidation.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredValidation.Foo](#foo)
schema class | +| data class | [RequiredValidation.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredValidation.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredValidation.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredValidation.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [RequiredValidation.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [RequiredValidation.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [RequiredValidation.Foo](#foo)
schema class | ## RequiredValidation1Boxed sealed interface RequiredValidation1Boxed
@@ -72,7 +72,7 @@ data class that stores validated null payloads, sealed permits implementation data class RequiredValidation1BoxedBoolean
implements [RequiredValidation1Boxed](#requiredvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -292,7 +292,7 @@ data class that stores validated null payloads, sealed permits implementation data class BarBoxedBoolean
implements [BarBoxed](#barboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -417,7 +417,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md index 7f624f006a5..c743a6baba5 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEmptyArray.md @@ -13,23 +13,23 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RequiredWithEmptyArray.RequiredWithEmptyArray1Boxed](#requiredwithemptyarray1boxed)
sealed interface for validated payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedVoid](#requiredwithemptyarray1boxedvoid)
boxed class to store validated null payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedBoolean](#requiredwithemptyarray1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedNumber](#requiredwithemptyarray1boxednumber)
boxed class to store validated Number payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedString](#requiredwithemptyarray1boxedstring)
boxed class to store validated String payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedList](#requiredwithemptyarray1boxedlist)
boxed class to store validated List payloads | -| record | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedMap](#requiredwithemptyarray1boxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredWithEmptyArray.RequiredWithEmptyArray1](#requiredwithemptyarray1)
schema class | -| static class | [RequiredWithEmptyArray.RequiredWithEmptyArrayMapBuilder](#requiredwithemptyarraymapbuilder)
builder for Map payloads | -| static class | [RequiredWithEmptyArray.RequiredWithEmptyArrayMap](#requiredwithemptyarraymap)
output class for Map payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedVoid](#requiredwithemptyarray1boxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedBoolean](#requiredwithemptyarray1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedNumber](#requiredwithemptyarray1boxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedString](#requiredwithemptyarray1boxedstring)
boxed class to store validated String payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedList](#requiredwithemptyarray1boxedlist)
boxed class to store validated List payloads | +| data class | [RequiredWithEmptyArray.RequiredWithEmptyArray1BoxedMap](#requiredwithemptyarray1boxedmap)
boxed class to store validated Map payloads | +| class | [RequiredWithEmptyArray.RequiredWithEmptyArray1](#requiredwithemptyarray1)
schema class | +| class | [RequiredWithEmptyArray.RequiredWithEmptyArrayMapBuilder](#requiredwithemptyarraymapbuilder)
builder for Map payloads | +| class | [RequiredWithEmptyArray.RequiredWithEmptyArrayMap](#requiredwithemptyarraymap)
output class for Map payloads | | sealed interface | [RequiredWithEmptyArray.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [RequiredWithEmptyArray.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | -| record | [RequiredWithEmptyArray.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredWithEmptyArray.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | -| record | [RequiredWithEmptyArray.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| record | [RequiredWithEmptyArray.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | -| record | [RequiredWithEmptyArray.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredWithEmptyArray.Foo](#foo)
schema class | +| data class | [RequiredWithEmptyArray.FooBoxedVoid](#fooboxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredWithEmptyArray.FooBoxedBoolean](#fooboxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredWithEmptyArray.FooBoxedNumber](#fooboxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredWithEmptyArray.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| data class | [RequiredWithEmptyArray.FooBoxedList](#fooboxedlist)
boxed class to store validated List payloads | +| data class | [RequiredWithEmptyArray.FooBoxedMap](#fooboxedmap)
boxed class to store validated Map payloads | +| class | [RequiredWithEmptyArray.Foo](#foo)
schema class | ## RequiredWithEmptyArray1Boxed sealed interface RequiredWithEmptyArray1Boxed
@@ -64,7 +64,7 @@ data class that stores validated null payloads, sealed permits implementation data class RequiredWithEmptyArray1BoxedBoolean
implements [RequiredWithEmptyArray1Boxed](#requiredwithemptyarray1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -258,7 +258,7 @@ data class that stores validated null payloads, sealed permits implementation data class FooBoxedBoolean
implements [FooBoxed](#fooboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md index 55ae80437f4..9cb36c2c0e7 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/RequiredWithEscapedCharacters.md @@ -13,15 +13,15 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1Boxed](#requiredwithescapedcharacters1boxed)
sealed interface for validated payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedVoid](#requiredwithescapedcharacters1boxedvoid)
boxed class to store validated null payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedBoolean](#requiredwithescapedcharacters1boxedboolean)
boxed class to store validated boolean payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedNumber](#requiredwithescapedcharacters1boxednumber)
boxed class to store validated Number payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedString](#requiredwithescapedcharacters1boxedstring)
boxed class to store validated String payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedList](#requiredwithescapedcharacters1boxedlist)
boxed class to store validated List payloads | -| record | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedMap](#requiredwithescapedcharacters1boxedmap)
boxed class to store validated Map payloads | -| static class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1](#requiredwithescapedcharacters1)
schema class | -| static class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharactersMapBuilder](#requiredwithescapedcharactersmapbuilder)
builder for Map payloads | -| static class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharactersMap](#requiredwithescapedcharactersmap)
output class for Map payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedVoid](#requiredwithescapedcharacters1boxedvoid)
boxed class to store validated null payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedBoolean](#requiredwithescapedcharacters1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedNumber](#requiredwithescapedcharacters1boxednumber)
boxed class to store validated Number payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedString](#requiredwithescapedcharacters1boxedstring)
boxed class to store validated String payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedList](#requiredwithescapedcharacters1boxedlist)
boxed class to store validated List payloads | +| data class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1BoxedMap](#requiredwithescapedcharacters1boxedmap)
boxed class to store validated Map payloads | +| class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharacters1](#requiredwithescapedcharacters1)
schema class | +| class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharactersMapBuilder](#requiredwithescapedcharactersmapbuilder)
builder for Map payloads | +| class | [RequiredWithEscapedCharacters.RequiredWithEscapedCharactersMap](#requiredwithescapedcharactersmap)
output class for Map payloads | ## RequiredWithEscapedCharacters1Boxed sealed interface RequiredWithEscapedCharacters1Boxed
@@ -56,7 +56,7 @@ data class that stores validated null payloads, sealed permits implementation data class RequiredWithEscapedCharacters1BoxedBoolean
implements [RequiredWithEscapedCharacters1Boxed](#requiredwithescapedcharacters1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md index 3bc45e63aa7..4539e459ba4 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SimpleEnumValidation.md @@ -12,8 +12,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [SimpleEnumValidation.SimpleEnumValidation1Boxed](#simpleenumvalidation1boxed)
sealed interface for validated payloads | -| record | [SimpleEnumValidation.SimpleEnumValidation1BoxedNumber](#simpleenumvalidation1boxednumber)
boxed class to store validated Number payloads | -| static class | [SimpleEnumValidation.SimpleEnumValidation1](#simpleenumvalidation1)
schema class | +| data class | [SimpleEnumValidation.SimpleEnumValidation1BoxedNumber](#simpleenumvalidation1boxednumber)
boxed class to store validated Number payloads | +| class | [SimpleEnumValidation.SimpleEnumValidation1](#simpleenumvalidation1)
schema class | | enum | [SimpleEnumValidation.IntegerSimpleEnumValidationEnums](#integersimpleenumvalidationenums)
Integer enum | | enum | [SimpleEnumValidation.LongSimpleEnumValidationEnums](#longsimpleenumvalidationenums)
Long enum | | enum | [SimpleEnumValidation.FloatSimpleEnumValidationEnums](#floatsimpleenumvalidationenums)
Float enum | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SingleDependency.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SingleDependency.md index e4167db3e71..11ad6373470 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SingleDependency.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SingleDependency.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [SingleDependency.SingleDependency1Boxed](#singledependency1boxed)
sealed interface for validated payloads | -| record | [SingleDependency.SingleDependency1BoxedVoid](#singledependency1boxedvoid)
boxed class to store validated null payloads | -| record | [SingleDependency.SingleDependency1BoxedBoolean](#singledependency1boxedboolean)
boxed class to store validated boolean payloads | -| record | [SingleDependency.SingleDependency1BoxedNumber](#singledependency1boxednumber)
boxed class to store validated Number payloads | -| record | [SingleDependency.SingleDependency1BoxedString](#singledependency1boxedstring)
boxed class to store validated String payloads | -| record | [SingleDependency.SingleDependency1BoxedList](#singledependency1boxedlist)
boxed class to store validated List payloads | -| record | [SingleDependency.SingleDependency1BoxedMap](#singledependency1boxedmap)
boxed class to store validated Map payloads | -| static class | [SingleDependency.SingleDependency1](#singledependency1)
schema class | +| data class | [SingleDependency.SingleDependency1BoxedVoid](#singledependency1boxedvoid)
boxed class to store validated null payloads | +| data class | [SingleDependency.SingleDependency1BoxedBoolean](#singledependency1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [SingleDependency.SingleDependency1BoxedNumber](#singledependency1boxednumber)
boxed class to store validated Number payloads | +| data class | [SingleDependency.SingleDependency1BoxedString](#singledependency1boxedstring)
boxed class to store validated String payloads | +| data class | [SingleDependency.SingleDependency1BoxedList](#singledependency1boxedlist)
boxed class to store validated List payloads | +| data class | [SingleDependency.SingleDependency1BoxedMap](#singledependency1boxedmap)
boxed class to store validated Map payloads | +| class | [SingleDependency.SingleDependency1](#singledependency1)
schema class | ## SingleDependency1Boxed sealed interface SingleDependency1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class SingleDependency1BoxedBoolean
implements [SingleDependency1Boxed](#singledependency1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SmallMultipleOfLargeInteger.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SmallMultipleOfLargeInteger.md index 846f3768d99..0a5a971b8b2 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SmallMultipleOfLargeInteger.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/SmallMultipleOfLargeInteger.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [SmallMultipleOfLargeInteger.SmallMultipleOfLargeInteger1Boxed](#smallmultipleoflargeinteger1boxed)
sealed interface for validated payloads | -| record | [SmallMultipleOfLargeInteger.SmallMultipleOfLargeInteger1BoxedNumber](#smallmultipleoflargeinteger1boxednumber)
boxed class to store validated Number payloads | -| static class | [SmallMultipleOfLargeInteger.SmallMultipleOfLargeInteger1](#smallmultipleoflargeinteger1)
schema class | +| data class | [SmallMultipleOfLargeInteger.SmallMultipleOfLargeInteger1BoxedNumber](#smallmultipleoflargeinteger1boxednumber)
boxed class to store validated Number payloads | +| class | [SmallMultipleOfLargeInteger.SmallMultipleOfLargeInteger1](#smallmultipleoflargeinteger1)
schema class | ## SmallMultipleOfLargeInteger1Boxed sealed interface SmallMultipleOfLargeInteger1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/StringTypeMatchesStrings.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/StringTypeMatchesStrings.md index 30d0ca293d7..b60309c2bd0 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/StringTypeMatchesStrings.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/StringTypeMatchesStrings.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [StringTypeMatchesStrings.StringTypeMatchesStrings1Boxed](#stringtypematchesstrings1boxed)
sealed interface for validated payloads | -| record | [StringTypeMatchesStrings.StringTypeMatchesStrings1BoxedString](#stringtypematchesstrings1boxedstring)
boxed class to store validated String payloads | -| static class | [StringTypeMatchesStrings.StringTypeMatchesStrings1](#stringtypematchesstrings1)
schema class | +| data class | [StringTypeMatchesStrings.StringTypeMatchesStrings1BoxedString](#stringtypematchesstrings1boxedstring)
boxed class to store validated String payloads | +| class | [StringTypeMatchesStrings.StringTypeMatchesStrings1](#stringtypematchesstrings1)
schema class | ## StringTypeMatchesStrings1Boxed sealed interface StringTypeMatchesStrings1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TimeFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TimeFormat.md index 9462946d814..a792bb468f6 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TimeFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TimeFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [TimeFormat.TimeFormat1Boxed](#timeformat1boxed)
sealed interface for validated payloads | -| record | [TimeFormat.TimeFormat1BoxedVoid](#timeformat1boxedvoid)
boxed class to store validated null payloads | -| record | [TimeFormat.TimeFormat1BoxedBoolean](#timeformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [TimeFormat.TimeFormat1BoxedNumber](#timeformat1boxednumber)
boxed class to store validated Number payloads | -| record | [TimeFormat.TimeFormat1BoxedString](#timeformat1boxedstring)
boxed class to store validated String payloads | -| record | [TimeFormat.TimeFormat1BoxedList](#timeformat1boxedlist)
boxed class to store validated List payloads | -| record | [TimeFormat.TimeFormat1BoxedMap](#timeformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [TimeFormat.TimeFormat1](#timeformat1)
schema class | +| data class | [TimeFormat.TimeFormat1BoxedVoid](#timeformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [TimeFormat.TimeFormat1BoxedBoolean](#timeformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [TimeFormat.TimeFormat1BoxedNumber](#timeformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [TimeFormat.TimeFormat1BoxedString](#timeformat1boxedstring)
boxed class to store validated String payloads | +| data class | [TimeFormat.TimeFormat1BoxedList](#timeformat1boxedlist)
boxed class to store validated List payloads | +| data class | [TimeFormat.TimeFormat1BoxedMap](#timeformat1boxedmap)
boxed class to store validated Map payloads | +| class | [TimeFormat.TimeFormat1](#timeformat1)
schema class | ## TimeFormat1Boxed sealed interface TimeFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class TimeFormat1BoxedBoolean
implements [TimeFormat1Boxed](#timeformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayObjectOrNull.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayObjectOrNull.md index 21c19c834ec..06e2fa6acf4 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayObjectOrNull.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayObjectOrNull.md @@ -11,10 +11,10 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [TypeArrayObjectOrNull.TypeArrayObjectOrNull1Boxed](#typearrayobjectornull1boxed)
sealed interface for validated payloads | -| record | [TypeArrayObjectOrNull.TypeArrayObjectOrNull1BoxedList](#typearrayobjectornull1boxedlist)
boxed class to store validated List payloads | -| record | [TypeArrayObjectOrNull.TypeArrayObjectOrNull1BoxedMap](#typearrayobjectornull1boxedmap)
boxed class to store validated Map payloads | -| record | [TypeArrayObjectOrNull.TypeArrayObjectOrNull1BoxedVoid](#typearrayobjectornull1boxedvoid)
boxed class to store validated null payloads | -| static class | [TypeArrayObjectOrNull.TypeArrayObjectOrNull1](#typearrayobjectornull1)
schema class | +| data class | [TypeArrayObjectOrNull.TypeArrayObjectOrNull1BoxedList](#typearrayobjectornull1boxedlist)
boxed class to store validated List payloads | +| data class | [TypeArrayObjectOrNull.TypeArrayObjectOrNull1BoxedMap](#typearrayobjectornull1boxedmap)
boxed class to store validated Map payloads | +| data class | [TypeArrayObjectOrNull.TypeArrayObjectOrNull1BoxedVoid](#typearrayobjectornull1boxedvoid)
boxed class to store validated null payloads | +| class | [TypeArrayObjectOrNull.TypeArrayObjectOrNull1](#typearrayobjectornull1)
schema class | ## TypeArrayObjectOrNull1Boxed sealed interface TypeArrayObjectOrNull1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayOrObject.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayOrObject.md index 8eb3799a093..168c8503623 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayOrObject.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeArrayOrObject.md @@ -11,9 +11,9 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [TypeArrayOrObject.TypeArrayOrObject1Boxed](#typearrayorobject1boxed)
sealed interface for validated payloads | -| record | [TypeArrayOrObject.TypeArrayOrObject1BoxedList](#typearrayorobject1boxedlist)
boxed class to store validated List payloads | -| record | [TypeArrayOrObject.TypeArrayOrObject1BoxedMap](#typearrayorobject1boxedmap)
boxed class to store validated Map payloads | -| static class | [TypeArrayOrObject.TypeArrayOrObject1](#typearrayorobject1)
schema class | +| data class | [TypeArrayOrObject.TypeArrayOrObject1BoxedList](#typearrayorobject1boxedlist)
boxed class to store validated List payloads | +| data class | [TypeArrayOrObject.TypeArrayOrObject1BoxedMap](#typearrayorobject1boxedmap)
boxed class to store validated Map payloads | +| class | [TypeArrayOrObject.TypeArrayOrObject1](#typearrayorobject1)
schema class | ## TypeArrayOrObject1Boxed sealed interface TypeArrayOrObject1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeAsArrayWithOneItem.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeAsArrayWithOneItem.md index 8b9ee26252e..10151fd30f6 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeAsArrayWithOneItem.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/TypeAsArrayWithOneItem.md @@ -11,8 +11,8 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [TypeAsArrayWithOneItem.TypeAsArrayWithOneItem1Boxed](#typeasarraywithoneitem1boxed)
sealed interface for validated payloads | -| record | [TypeAsArrayWithOneItem.TypeAsArrayWithOneItem1BoxedString](#typeasarraywithoneitem1boxedstring)
boxed class to store validated String payloads | -| static class | [TypeAsArrayWithOneItem.TypeAsArrayWithOneItem1](#typeasarraywithoneitem1)
schema class | +| data class | [TypeAsArrayWithOneItem.TypeAsArrayWithOneItem1BoxedString](#typeasarraywithoneitem1boxedstring)
boxed class to store validated String payloads | +| class | [TypeAsArrayWithOneItem.TypeAsArrayWithOneItem1](#typeasarraywithoneitem1)
schema class | ## TypeAsArrayWithOneItem1Boxed sealed interface TypeAsArrayWithOneItem1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsAsSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsAsSchema.md index 9085bb214dd..2db3331bc82 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsAsSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsAsSchema.md @@ -11,16 +11,16 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1Boxed](#unevaluateditemsasschema1boxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedVoid](#unevaluateditemsasschema1boxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedBoolean](#unevaluateditemsasschema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedNumber](#unevaluateditemsasschema1boxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedString](#unevaluateditemsasschema1boxedstring)
boxed class to store validated String payloads | -| record | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedList](#unevaluateditemsasschema1boxedlist)
boxed class to store validated List payloads | -| record | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedMap](#unevaluateditemsasschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1](#unevaluateditemsasschema1)
schema class | +| data class | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedVoid](#unevaluateditemsasschema1boxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedBoolean](#unevaluateditemsasschema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedNumber](#unevaluateditemsasschema1boxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedString](#unevaluateditemsasschema1boxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedList](#unevaluateditemsasschema1boxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1BoxedMap](#unevaluateditemsasschema1boxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluateditemsAsSchema.UnevaluateditemsAsSchema1](#unevaluateditemsasschema1)
schema class | | sealed interface | [UnevaluateditemsAsSchema.UnevaluatedItemsBoxed](#unevaluateditemsboxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsAsSchema.UnevaluatedItemsBoxedString](#unevaluateditemsboxedstring)
boxed class to store validated String payloads | -| static class | [UnevaluateditemsAsSchema.UnevaluatedItems](#unevaluateditems)
schema class | +| data class | [UnevaluateditemsAsSchema.UnevaluatedItemsBoxedString](#unevaluateditemsboxedstring)
boxed class to store validated String payloads | +| class | [UnevaluateditemsAsSchema.UnevaluatedItems](#unevaluateditems)
schema class | ## UnevaluateditemsAsSchema1Boxed sealed interface UnevaluateditemsAsSchema1Boxed
@@ -55,7 +55,7 @@ data class that stores validated null payloads, sealed permits implementation data class UnevaluateditemsAsSchema1BoxedBoolean
implements [UnevaluateditemsAsSchema1Boxed](#unevaluateditemsasschema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsDependsOnMultipleNestedContains.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsDependsOnMultipleNestedContains.md index 507a594fec4..97475e02f0e 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsDependsOnMultipleNestedContains.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsDependsOnMultipleNestedContains.md @@ -11,53 +11,53 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1Boxed](#unevaluateditemsdependsonmultiplenestedcontains1boxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedVoid](#unevaluateditemsdependsonmultiplenestedcontains1boxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedBoolean](#unevaluateditemsdependsonmultiplenestedcontains1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedNumber](#unevaluateditemsdependsonmultiplenestedcontains1boxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedString](#unevaluateditemsdependsonmultiplenestedcontains1boxedstring)
boxed class to store validated String payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedList](#unevaluateditemsdependsonmultiplenestedcontains1boxedlist)
boxed class to store validated List payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedMap](#unevaluateditemsdependsonmultiplenestedcontains1boxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1](#unevaluateditemsdependsonmultiplenestedcontains1)
schema class | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedVoid](#unevaluateditemsdependsonmultiplenestedcontains1boxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedBoolean](#unevaluateditemsdependsonmultiplenestedcontains1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedNumber](#unevaluateditemsdependsonmultiplenestedcontains1boxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedString](#unevaluateditemsdependsonmultiplenestedcontains1boxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedList](#unevaluateditemsdependsonmultiplenestedcontains1boxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1BoxedMap](#unevaluateditemsdependsonmultiplenestedcontains1boxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluateditemsDependsOnMultipleNestedContains1](#unevaluateditemsdependsonmultiplenestedcontains1)
schema class | | sealed interface | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxed](#unevaluateditemsboxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedVoid](#unevaluateditemsboxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedBoolean](#unevaluateditemsboxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedNumber](#unevaluateditemsboxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedString](#unevaluateditemsboxedstring)
boxed class to store validated String payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedList](#unevaluateditemsboxedlist)
boxed class to store validated List payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedMap](#unevaluateditemsboxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItems](#unevaluateditems)
schema class | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedVoid](#unevaluateditemsboxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedBoolean](#unevaluateditemsboxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedNumber](#unevaluateditemsboxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedString](#unevaluateditemsboxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedList](#unevaluateditemsboxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItemsBoxedMap](#unevaluateditemsboxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluateditemsDependsOnMultipleNestedContains.UnevaluatedItems](#unevaluateditems)
schema class | | sealed interface | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1](#schema1)
schema class | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedVoid](#schema1boxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedNumber](#schema1boxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedString](#schema1boxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedList](#schema1boxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1BoxedMap](#schema1boxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema1](#schema1)
schema class | | sealed interface | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1Boxed](#contains1boxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedVoid](#contains1boxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedBoolean](#contains1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedNumber](#contains1boxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedString](#contains1boxedstring)
boxed class to store validated String payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedList](#contains1boxedlist)
boxed class to store validated List payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedMap](#contains1boxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1](#contains1)
schema class | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedVoid](#contains1boxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedBoolean](#contains1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedNumber](#contains1boxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedString](#contains1boxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedList](#contains1boxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1BoxedMap](#contains1boxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluateditemsDependsOnMultipleNestedContains.Contains1](#contains1)
schema class | | sealed interface | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0](#schema0)
schema class | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedVoid](#schema0boxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedNumber](#schema0boxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedString](#schema0boxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedList](#schema0boxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0BoxedMap](#schema0boxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluateditemsDependsOnMultipleNestedContains.Schema0](#schema0)
schema class | | sealed interface | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxed](#containsboxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedVoid](#containsboxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedBoolean](#containsboxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedNumber](#containsboxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedString](#containsboxedstring)
boxed class to store validated String payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedList](#containsboxedlist)
boxed class to store validated List payloads | -| record | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedMap](#containsboxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluateditemsDependsOnMultipleNestedContains.Contains](#contains)
schema class | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedVoid](#containsboxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedBoolean](#containsboxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedNumber](#containsboxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedString](#containsboxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedList](#containsboxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluateditemsDependsOnMultipleNestedContains.ContainsBoxedMap](#containsboxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluateditemsDependsOnMultipleNestedContains.Contains](#contains)
schema class | ## UnevaluateditemsDependsOnMultipleNestedContains1Boxed sealed interface UnevaluateditemsDependsOnMultipleNestedContains1Boxed
@@ -92,7 +92,7 @@ data class that stores validated null payloads, sealed permits implementation data class UnevaluateditemsDependsOnMultipleNestedContains1BoxedBoolean
implements [UnevaluateditemsDependsOnMultipleNestedContains1Boxed](#unevaluateditemsdependsonmultiplenestedcontains1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -240,7 +240,7 @@ data class that stores validated null payloads, sealed permits implementation data class UnevaluatedItemsBoxedBoolean
implements [UnevaluatedItemsBoxed](#unevaluateditemsboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -387,7 +387,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -534,7 +534,7 @@ data class that stores validated null payloads, sealed permits implementation data class Contains1BoxedBoolean
implements [Contains1Boxed](#contains1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -681,7 +681,7 @@ data class that stores validated null payloads, sealed permits implementation data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -828,7 +828,7 @@ data class that stores validated null payloads, sealed permits implementation data class ContainsBoxedBoolean
implements [ContainsBoxed](#containsboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithItems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithItems.md index 9e58d28d418..20c9357f1ef 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithItems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithItems.md @@ -13,16 +13,16 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UnevaluateditemsWithItems.UnevaluateditemsWithItems1Boxed](#unevaluateditemswithitems1boxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsWithItems.UnevaluateditemsWithItems1BoxedList](#unevaluateditemswithitems1boxedlist)
boxed class to store validated List payloads | -| static class | [UnevaluateditemsWithItems.UnevaluateditemsWithItems1](#unevaluateditemswithitems1)
schema class | +| data class | [UnevaluateditemsWithItems.UnevaluateditemsWithItems1BoxedList](#unevaluateditemswithitems1boxedlist)
boxed class to store validated List payloads | +| class | [UnevaluateditemsWithItems.UnevaluateditemsWithItems1](#unevaluateditemswithitems1)
schema class | | sealed interface | [UnevaluateditemsWithItems.UnevaluatedItemsBoxed](#unevaluateditemsboxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsWithItems.UnevaluatedItemsBoxedString](#unevaluateditemsboxedstring)
boxed class to store validated String payloads | -| static class | [UnevaluateditemsWithItems.UnevaluatedItems](#unevaluateditems)
schema class | -| static class | [UnevaluateditemsWithItems.UnevaluateditemsWithItemsListBuilder](#unevaluateditemswithitemslistbuilder)
builder for List payloads | -| static class | [UnevaluateditemsWithItems.UnevaluateditemsWithItemsList](#unevaluateditemswithitemslist)
output class for List payloads | +| data class | [UnevaluateditemsWithItems.UnevaluatedItemsBoxedString](#unevaluateditemsboxedstring)
boxed class to store validated String payloads | +| class | [UnevaluateditemsWithItems.UnevaluatedItems](#unevaluateditems)
schema class | +| class | [UnevaluateditemsWithItems.UnevaluateditemsWithItemsListBuilder](#unevaluateditemswithitemslistbuilder)
builder for List payloads | +| class | [UnevaluateditemsWithItems.UnevaluateditemsWithItemsList](#unevaluateditemswithitemslist)
output class for List payloads | | sealed interface | [UnevaluateditemsWithItems.ItemsBoxed](#itemsboxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsWithItems.ItemsBoxedNumber](#itemsboxednumber)
boxed class to store validated Number payloads | -| static class | [UnevaluateditemsWithItems.Items](#items)
schema class | +| data class | [UnevaluateditemsWithItems.ItemsBoxedNumber](#itemsboxednumber)
boxed class to store validated Number payloads | +| class | [UnevaluateditemsWithItems.Items](#items)
schema class | ## UnevaluateditemsWithItems1Boxed sealed interface UnevaluateditemsWithItems1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithNullInstanceElements.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithNullInstanceElements.md index 67cd806c8bb..3710e46af11 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithNullInstanceElements.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluateditemsWithNullInstanceElements.md @@ -11,16 +11,16 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1Boxed](#unevaluateditemswithnullinstanceelements1boxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedVoid](#unevaluateditemswithnullinstanceelements1boxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedBoolean](#unevaluateditemswithnullinstanceelements1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedNumber](#unevaluateditemswithnullinstanceelements1boxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedString](#unevaluateditemswithnullinstanceelements1boxedstring)
boxed class to store validated String payloads | -| record | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedList](#unevaluateditemswithnullinstanceelements1boxedlist)
boxed class to store validated List payloads | -| record | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedMap](#unevaluateditemswithnullinstanceelements1boxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1](#unevaluateditemswithnullinstanceelements1)
schema class | +| data class | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedVoid](#unevaluateditemswithnullinstanceelements1boxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedBoolean](#unevaluateditemswithnullinstanceelements1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedNumber](#unevaluateditemswithnullinstanceelements1boxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedString](#unevaluateditemswithnullinstanceelements1boxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedList](#unevaluateditemswithnullinstanceelements1boxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1BoxedMap](#unevaluateditemswithnullinstanceelements1boxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluateditemsWithNullInstanceElements.UnevaluateditemsWithNullInstanceElements1](#unevaluateditemswithnullinstanceelements1)
schema class | | sealed interface | [UnevaluateditemsWithNullInstanceElements.UnevaluatedItemsBoxed](#unevaluateditemsboxed)
sealed interface for validated payloads | -| record | [UnevaluateditemsWithNullInstanceElements.UnevaluatedItemsBoxedVoid](#unevaluateditemsboxedvoid)
boxed class to store validated null payloads | -| static class | [UnevaluateditemsWithNullInstanceElements.UnevaluatedItems](#unevaluateditems)
schema class | +| data class | [UnevaluateditemsWithNullInstanceElements.UnevaluatedItemsBoxedVoid](#unevaluateditemsboxedvoid)
boxed class to store validated null payloads | +| class | [UnevaluateditemsWithNullInstanceElements.UnevaluatedItems](#unevaluateditems)
schema class | ## UnevaluateditemsWithNullInstanceElements1Boxed sealed interface UnevaluateditemsWithNullInstanceElements1Boxed
@@ -55,7 +55,7 @@ data class that stores validated null payloads, sealed permits implementation data class UnevaluateditemsWithNullInstanceElements1BoxedBoolean
implements [UnevaluateditemsWithNullInstanceElements1Boxed](#unevaluateditemswithnullinstanceelements1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesNotAffectedByPropertynames.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesNotAffectedByPropertynames.md index 094a6005ad2..e85441ab5c5 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesNotAffectedByPropertynames.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesNotAffectedByPropertynames.md @@ -11,19 +11,19 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1Boxed](#unevaluatedpropertiesnotaffectedbypropertynames1boxed)
sealed interface for validated payloads | -| record | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedVoid](#unevaluatedpropertiesnotaffectedbypropertynames1boxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedBoolean](#unevaluatedpropertiesnotaffectedbypropertynames1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedNumber](#unevaluatedpropertiesnotaffectedbypropertynames1boxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedString](#unevaluatedpropertiesnotaffectedbypropertynames1boxedstring)
boxed class to store validated String payloads | -| record | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedList](#unevaluatedpropertiesnotaffectedbypropertynames1boxedlist)
boxed class to store validated List payloads | -| record | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedMap](#unevaluatedpropertiesnotaffectedbypropertynames1boxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1](#unevaluatedpropertiesnotaffectedbypropertynames1)
schema class | +| data class | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedVoid](#unevaluatedpropertiesnotaffectedbypropertynames1boxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedBoolean](#unevaluatedpropertiesnotaffectedbypropertynames1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedNumber](#unevaluatedpropertiesnotaffectedbypropertynames1boxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedString](#unevaluatedpropertiesnotaffectedbypropertynames1boxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedList](#unevaluatedpropertiesnotaffectedbypropertynames1boxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1BoxedMap](#unevaluatedpropertiesnotaffectedbypropertynames1boxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedpropertiesNotAffectedByPropertynames1](#unevaluatedpropertiesnotaffectedbypropertynames1)
schema class | | sealed interface | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedPropertiesBoxed](#unevaluatedpropertiesboxed)
sealed interface for validated payloads | -| record | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedPropertiesBoxedNumber](#unevaluatedpropertiesboxednumber)
boxed class to store validated Number payloads | -| static class | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedProperties](#unevaluatedproperties)
schema class | +| data class | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedPropertiesBoxedNumber](#unevaluatedpropertiesboxednumber)
boxed class to store validated Number payloads | +| class | [UnevaluatedpropertiesNotAffectedByPropertynames.UnevaluatedProperties](#unevaluatedproperties)
schema class | | sealed interface | [UnevaluatedpropertiesNotAffectedByPropertynames.PropertyNamesBoxed](#propertynamesboxed)
sealed interface for validated payloads | -| record | [UnevaluatedpropertiesNotAffectedByPropertynames.PropertyNamesBoxedString](#propertynamesboxedstring)
boxed class to store validated String payloads | -| static class | [UnevaluatedpropertiesNotAffectedByPropertynames.PropertyNames](#propertynames)
schema class | +| data class | [UnevaluatedpropertiesNotAffectedByPropertynames.PropertyNamesBoxedString](#propertynamesboxedstring)
boxed class to store validated String payloads | +| class | [UnevaluatedpropertiesNotAffectedByPropertynames.PropertyNames](#propertynames)
schema class | ## UnevaluatedpropertiesNotAffectedByPropertynames1Boxed sealed interface UnevaluatedpropertiesNotAffectedByPropertynames1Boxed
@@ -58,7 +58,7 @@ data class that stores validated null payloads, sealed permits implementation data class UnevaluatedpropertiesNotAffectedByPropertynames1BoxedBoolean
implements [UnevaluatedpropertiesNotAffectedByPropertynames1Boxed](#unevaluatedpropertiesnotaffectedbypropertynames1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesSchema.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesSchema.md index 81e1734a23a..62706f9b93b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesSchema.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesSchema.md @@ -11,11 +11,11 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UnevaluatedpropertiesSchema.UnevaluatedpropertiesSchema1Boxed](#unevaluatedpropertiesschema1boxed)
sealed interface for validated payloads | -| record | [UnevaluatedpropertiesSchema.UnevaluatedpropertiesSchema1BoxedMap](#unevaluatedpropertiesschema1boxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluatedpropertiesSchema.UnevaluatedpropertiesSchema1](#unevaluatedpropertiesschema1)
schema class | +| data class | [UnevaluatedpropertiesSchema.UnevaluatedpropertiesSchema1BoxedMap](#unevaluatedpropertiesschema1boxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluatedpropertiesSchema.UnevaluatedpropertiesSchema1](#unevaluatedpropertiesschema1)
schema class | | sealed interface | [UnevaluatedpropertiesSchema.UnevaluatedPropertiesBoxed](#unevaluatedpropertiesboxed)
sealed interface for validated payloads | -| record | [UnevaluatedpropertiesSchema.UnevaluatedPropertiesBoxedString](#unevaluatedpropertiesboxedstring)
boxed class to store validated String payloads | -| static class | [UnevaluatedpropertiesSchema.UnevaluatedProperties](#unevaluatedproperties)
schema class | +| data class | [UnevaluatedpropertiesSchema.UnevaluatedPropertiesBoxedString](#unevaluatedpropertiesboxedstring)
boxed class to store validated String payloads | +| class | [UnevaluatedpropertiesSchema.UnevaluatedProperties](#unevaluatedproperties)
schema class | ## UnevaluatedpropertiesSchema1Boxed sealed interface UnevaluatedpropertiesSchema1Boxed
diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithAdjacentAdditionalproperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithAdjacentAdditionalproperties.md index 1da219f372c..2de299904cc 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithAdjacentAdditionalproperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithAdjacentAdditionalproperties.md @@ -13,29 +13,29 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalproperties1Boxed](#unevaluatedpropertieswithadjacentadditionalproperties1boxed)
sealed interface for validated payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalproperties1BoxedMap](#unevaluatedpropertieswithadjacentadditionalproperties1boxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalproperties1](#unevaluatedpropertieswithadjacentadditionalproperties1)
schema class | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalproperties1BoxedMap](#unevaluatedpropertieswithadjacentadditionalproperties1boxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalproperties1](#unevaluatedpropertieswithadjacentadditionalproperties1)
schema class | | sealed interface | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxed](#unevaluatedpropertiesboxed)
sealed interface for validated payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedVoid](#unevaluatedpropertiesboxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedBoolean](#unevaluatedpropertiesboxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedNumber](#unevaluatedpropertiesboxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedString](#unevaluatedpropertiesboxedstring)
boxed class to store validated String payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedList](#unevaluatedpropertiesboxedlist)
boxed class to store validated List payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedMap](#unevaluatedpropertiesboxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedProperties](#unevaluatedproperties)
schema class | -| static class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalpropertiesMapBuilder](#unevaluatedpropertieswithadjacentadditionalpropertiesmapbuilder)
builder for Map payloads | -| static class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalpropertiesMap](#unevaluatedpropertieswithadjacentadditionalpropertiesmap)
output class for Map payloads | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedVoid](#unevaluatedpropertiesboxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedBoolean](#unevaluatedpropertiesboxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedNumber](#unevaluatedpropertiesboxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedString](#unevaluatedpropertiesboxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedList](#unevaluatedpropertiesboxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedPropertiesBoxedMap](#unevaluatedpropertiesboxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedProperties](#unevaluatedproperties)
schema class | +| class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalpropertiesMapBuilder](#unevaluatedpropertieswithadjacentadditionalpropertiesmapbuilder)
builder for Map payloads | +| class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.UnevaluatedpropertiesWithAdjacentAdditionalpropertiesMap](#unevaluatedpropertieswithadjacentadditionalpropertiesmap)
output class for Map payloads | | sealed interface | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.FooBoxed](#fooboxed)
sealed interface for validated payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | -| static class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.Foo](#foo)
schema class | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.FooBoxedString](#fooboxedstring)
boxed class to store validated String payloads | +| class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.Foo](#foo)
schema class | | sealed interface | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxed](#additionalpropertiesboxed)
sealed interface for validated payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedVoid](#additionalpropertiesboxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedNumber](#additionalpropertiesboxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedString](#additionalpropertiesboxedstring)
boxed class to store validated String payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedList](#additionalpropertiesboxedlist)
boxed class to store validated List payloads | -| record | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedMap](#additionalpropertiesboxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalProperties](#additionalproperties)
schema class | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedVoid](#additionalpropertiesboxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedBoolean](#additionalpropertiesboxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedNumber](#additionalpropertiesboxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedString](#additionalpropertiesboxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedList](#additionalpropertiesboxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalPropertiesBoxedMap](#additionalpropertiesboxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluatedpropertiesWithAdjacentAdditionalproperties.AdditionalProperties](#additionalproperties)
schema class | ## UnevaluatedpropertiesWithAdjacentAdditionalproperties1Boxed sealed interface UnevaluatedpropertiesWithAdjacentAdditionalproperties1Boxed
@@ -139,7 +139,7 @@ data class that stores validated null payloads, sealed permits implementation data class UnevaluatedPropertiesBoxedBoolean
implements [UnevaluatedPropertiesBoxed](#unevaluatedpropertiesboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -338,7 +338,7 @@ data class that stores validated null payloads, sealed permits implementation data class AdditionalPropertiesBoxedBoolean
implements [AdditionalPropertiesBoxed](#additionalpropertiesboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithNullValuedInstanceProperties.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithNullValuedInstanceProperties.md index 9dfe7011feb..ee0c890c0d5 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithNullValuedInstanceProperties.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UnevaluatedpropertiesWithNullValuedInstanceProperties.md @@ -11,16 +11,16 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1Boxed](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxed)
sealed interface for validated payloads | -| record | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedVoid](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedvoid)
boxed class to store validated null payloads | -| record | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedBoolean](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedNumber](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxednumber)
boxed class to store validated Number payloads | -| record | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedString](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedstring)
boxed class to store validated String payloads | -| record | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedList](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedlist)
boxed class to store validated List payloads | -| record | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedMap](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedmap)
boxed class to store validated Map payloads | -| static class | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1](#unevaluatedpropertieswithnullvaluedinstanceproperties1)
schema class | +| data class | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedVoid](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedvoid)
boxed class to store validated null payloads | +| data class | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedBoolean](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedNumber](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxednumber)
boxed class to store validated Number payloads | +| data class | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedString](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedstring)
boxed class to store validated String payloads | +| data class | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedList](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedlist)
boxed class to store validated List payloads | +| data class | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedMap](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxedmap)
boxed class to store validated Map payloads | +| class | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedpropertiesWithNullValuedInstanceProperties1](#unevaluatedpropertieswithnullvaluedinstanceproperties1)
schema class | | sealed interface | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedPropertiesBoxed](#unevaluatedpropertiesboxed)
sealed interface for validated payloads | -| record | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedPropertiesBoxedVoid](#unevaluatedpropertiesboxedvoid)
boxed class to store validated null payloads | -| static class | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedProperties](#unevaluatedproperties)
schema class | +| data class | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedPropertiesBoxedVoid](#unevaluatedpropertiesboxedvoid)
boxed class to store validated null payloads | +| class | [UnevaluatedpropertiesWithNullValuedInstanceProperties.UnevaluatedProperties](#unevaluatedproperties)
schema class | ## UnevaluatedpropertiesWithNullValuedInstanceProperties1Boxed sealed interface UnevaluatedpropertiesWithNullValuedInstanceProperties1Boxed
@@ -55,7 +55,7 @@ data class that stores validated null payloads, sealed permits implementation data class UnevaluatedpropertiesWithNullValuedInstanceProperties1BoxedBoolean
implements [UnevaluatedpropertiesWithNullValuedInstanceProperties1Boxed](#unevaluatedpropertieswithnullvaluedinstanceproperties1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md index e973205c00e..3454bf20fe9 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1Boxed](#uniqueitemsfalsevalidation1boxed)
sealed interface for validated payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedVoid](#uniqueitemsfalsevalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedBoolean](#uniqueitemsfalsevalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedNumber](#uniqueitemsfalsevalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedString](#uniqueitemsfalsevalidation1boxedstring)
boxed class to store validated String payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedList](#uniqueitemsfalsevalidation1boxedlist)
boxed class to store validated List payloads | -| record | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedMap](#uniqueitemsfalsevalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1](#uniqueitemsfalsevalidation1)
schema class | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedVoid](#uniqueitemsfalsevalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedBoolean](#uniqueitemsfalsevalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedNumber](#uniqueitemsfalsevalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedString](#uniqueitemsfalsevalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedList](#uniqueitemsfalsevalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1BoxedMap](#uniqueitemsfalsevalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [UniqueitemsFalseValidation.UniqueitemsFalseValidation1](#uniqueitemsfalsevalidation1)
schema class | ## UniqueitemsFalseValidation1Boxed sealed interface UniqueitemsFalseValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class UniqueitemsFalseValidation1BoxedBoolean
implements [UniqueitemsFalseValidation1Boxed](#uniqueitemsfalsevalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseWithAnArrayOfItems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseWithAnArrayOfItems.md index bbf2813c5c9..e567fe3fc31 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseWithAnArrayOfItems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsFalseWithAnArrayOfItems.md @@ -13,21 +13,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1Boxed](#uniqueitemsfalsewithanarrayofitems1boxed)
sealed interface for validated payloads | -| record | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedVoid](#uniqueitemsfalsewithanarrayofitems1boxedvoid)
boxed class to store validated null payloads | -| record | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedBoolean](#uniqueitemsfalsewithanarrayofitems1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedNumber](#uniqueitemsfalsewithanarrayofitems1boxednumber)
boxed class to store validated Number payloads | -| record | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedString](#uniqueitemsfalsewithanarrayofitems1boxedstring)
boxed class to store validated String payloads | -| record | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedList](#uniqueitemsfalsewithanarrayofitems1boxedlist)
boxed class to store validated List payloads | -| record | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedMap](#uniqueitemsfalsewithanarrayofitems1boxedmap)
boxed class to store validated Map payloads | -| static class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1](#uniqueitemsfalsewithanarrayofitems1)
schema class | +| data class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedVoid](#uniqueitemsfalsewithanarrayofitems1boxedvoid)
boxed class to store validated null payloads | +| data class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedBoolean](#uniqueitemsfalsewithanarrayofitems1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedNumber](#uniqueitemsfalsewithanarrayofitems1boxednumber)
boxed class to store validated Number payloads | +| data class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedString](#uniqueitemsfalsewithanarrayofitems1boxedstring)
boxed class to store validated String payloads | +| data class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedList](#uniqueitemsfalsewithanarrayofitems1boxedlist)
boxed class to store validated List payloads | +| data class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1BoxedMap](#uniqueitemsfalsewithanarrayofitems1boxedmap)
boxed class to store validated Map payloads | +| class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItems1](#uniqueitemsfalsewithanarrayofitems1)
schema class | | sealed interface | [UniqueitemsFalseWithAnArrayOfItems.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [UniqueitemsFalseWithAnArrayOfItems.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| static class | [UniqueitemsFalseWithAnArrayOfItems.Schema1](#schema1)
schema class | +| data class | [UniqueitemsFalseWithAnArrayOfItems.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| class | [UniqueitemsFalseWithAnArrayOfItems.Schema1](#schema1)
schema class | | sealed interface | [UniqueitemsFalseWithAnArrayOfItems.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [UniqueitemsFalseWithAnArrayOfItems.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| static class | [UniqueitemsFalseWithAnArrayOfItems.Schema0](#schema0)
schema class | -| static class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItemsListBuilder](#uniqueitemsfalsewithanarrayofitemslistbuilder)
builder for List payloads | -| static class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItemsList](#uniqueitemsfalsewithanarrayofitemslist)
output class for List payloads | +| data class | [UniqueitemsFalseWithAnArrayOfItems.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| class | [UniqueitemsFalseWithAnArrayOfItems.Schema0](#schema0)
schema class | +| class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItemsListBuilder](#uniqueitemsfalsewithanarrayofitemslistbuilder)
builder for List payloads | +| class | [UniqueitemsFalseWithAnArrayOfItems.UniqueitemsFalseWithAnArrayOfItemsList](#uniqueitemsfalsewithanarrayofitemslist)
output class for List payloads | ## UniqueitemsFalseWithAnArrayOfItems1Boxed sealed interface UniqueitemsFalseWithAnArrayOfItems1Boxed
@@ -62,7 +62,7 @@ data class that stores validated null payloads, sealed permits implementation data class UniqueitemsFalseWithAnArrayOfItems1BoxedBoolean
implements [UniqueitemsFalseWithAnArrayOfItems1Boxed](#uniqueitemsfalsewithanarrayofitems1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -188,7 +188,7 @@ sealed interface that stores validated payloads using boxed classes data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -223,7 +223,7 @@ sealed interface that stores validated payloads using boxed classes data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md index 4b3da1c0ec8..99368d6c1b3 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsValidation.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UniqueitemsValidation.UniqueitemsValidation1Boxed](#uniqueitemsvalidation1boxed)
sealed interface for validated payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedVoid](#uniqueitemsvalidation1boxedvoid)
boxed class to store validated null payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedBoolean](#uniqueitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedNumber](#uniqueitemsvalidation1boxednumber)
boxed class to store validated Number payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedString](#uniqueitemsvalidation1boxedstring)
boxed class to store validated String payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedList](#uniqueitemsvalidation1boxedlist)
boxed class to store validated List payloads | -| record | [UniqueitemsValidation.UniqueitemsValidation1BoxedMap](#uniqueitemsvalidation1boxedmap)
boxed class to store validated Map payloads | -| static class | [UniqueitemsValidation.UniqueitemsValidation1](#uniqueitemsvalidation1)
schema class | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedVoid](#uniqueitemsvalidation1boxedvoid)
boxed class to store validated null payloads | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedBoolean](#uniqueitemsvalidation1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedNumber](#uniqueitemsvalidation1boxednumber)
boxed class to store validated Number payloads | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedString](#uniqueitemsvalidation1boxedstring)
boxed class to store validated String payloads | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedList](#uniqueitemsvalidation1boxedlist)
boxed class to store validated List payloads | +| data class | [UniqueitemsValidation.UniqueitemsValidation1BoxedMap](#uniqueitemsvalidation1boxedmap)
boxed class to store validated Map payloads | +| class | [UniqueitemsValidation.UniqueitemsValidation1](#uniqueitemsvalidation1)
schema class | ## UniqueitemsValidation1Boxed sealed interface UniqueitemsValidation1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class UniqueitemsValidation1BoxedBoolean
implements [UniqueitemsValidation1Boxed](#uniqueitemsvalidation1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsWithAnArrayOfItems.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsWithAnArrayOfItems.md index 8d3ce6b34a0..3a0a0b5662b 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsWithAnArrayOfItems.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UniqueitemsWithAnArrayOfItems.md @@ -13,21 +13,21 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1Boxed](#uniqueitemswithanarrayofitems1boxed)
sealed interface for validated payloads | -| record | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedVoid](#uniqueitemswithanarrayofitems1boxedvoid)
boxed class to store validated null payloads | -| record | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedBoolean](#uniqueitemswithanarrayofitems1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedNumber](#uniqueitemswithanarrayofitems1boxednumber)
boxed class to store validated Number payloads | -| record | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedString](#uniqueitemswithanarrayofitems1boxedstring)
boxed class to store validated String payloads | -| record | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedList](#uniqueitemswithanarrayofitems1boxedlist)
boxed class to store validated List payloads | -| record | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedMap](#uniqueitemswithanarrayofitems1boxedmap)
boxed class to store validated Map payloads | -| static class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1](#uniqueitemswithanarrayofitems1)
schema class | +| data class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedVoid](#uniqueitemswithanarrayofitems1boxedvoid)
boxed class to store validated null payloads | +| data class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedBoolean](#uniqueitemswithanarrayofitems1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedNumber](#uniqueitemswithanarrayofitems1boxednumber)
boxed class to store validated Number payloads | +| data class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedString](#uniqueitemswithanarrayofitems1boxedstring)
boxed class to store validated String payloads | +| data class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedList](#uniqueitemswithanarrayofitems1boxedlist)
boxed class to store validated List payloads | +| data class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1BoxedMap](#uniqueitemswithanarrayofitems1boxedmap)
boxed class to store validated Map payloads | +| class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItems1](#uniqueitemswithanarrayofitems1)
schema class | | sealed interface | [UniqueitemsWithAnArrayOfItems.Schema1Boxed](#schema1boxed)
sealed interface for validated payloads | -| record | [UniqueitemsWithAnArrayOfItems.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | -| static class | [UniqueitemsWithAnArrayOfItems.Schema1](#schema1)
schema class | +| data class | [UniqueitemsWithAnArrayOfItems.Schema1BoxedBoolean](#schema1boxedboolean)
boxed class to store validated boolean payloads | +| class | [UniqueitemsWithAnArrayOfItems.Schema1](#schema1)
schema class | | sealed interface | [UniqueitemsWithAnArrayOfItems.Schema0Boxed](#schema0boxed)
sealed interface for validated payloads | -| record | [UniqueitemsWithAnArrayOfItems.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | -| static class | [UniqueitemsWithAnArrayOfItems.Schema0](#schema0)
schema class | -| static class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItemsListBuilder](#uniqueitemswithanarrayofitemslistbuilder)
builder for List payloads | -| static class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItemsList](#uniqueitemswithanarrayofitemslist)
output class for List payloads | +| data class | [UniqueitemsWithAnArrayOfItems.Schema0BoxedBoolean](#schema0boxedboolean)
boxed class to store validated boolean payloads | +| class | [UniqueitemsWithAnArrayOfItems.Schema0](#schema0)
schema class | +| class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItemsListBuilder](#uniqueitemswithanarrayofitemslistbuilder)
builder for List payloads | +| class | [UniqueitemsWithAnArrayOfItems.UniqueitemsWithAnArrayOfItemsList](#uniqueitemswithanarrayofitemslist)
output class for List payloads | ## UniqueitemsWithAnArrayOfItems1Boxed sealed interface UniqueitemsWithAnArrayOfItems1Boxed
@@ -62,7 +62,7 @@ data class that stores validated null payloads, sealed permits implementation data class UniqueitemsWithAnArrayOfItems1BoxedBoolean
implements [UniqueitemsWithAnArrayOfItems1Boxed](#uniqueitemswithanarrayofitems1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -188,7 +188,7 @@ sealed interface that stores validated payloads using boxed classes data class Schema1BoxedBoolean
implements [Schema1Boxed](#schema1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -223,7 +223,7 @@ sealed interface that stores validated payloads using boxed classes data class Schema0BoxedBoolean
implements [Schema0Boxed](#schema0boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriFormat.md index 6c21950a1cb..207ae83de09 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UriFormat.UriFormat1Boxed](#uriformat1boxed)
sealed interface for validated payloads | -| record | [UriFormat.UriFormat1BoxedVoid](#uriformat1boxedvoid)
boxed class to store validated null payloads | -| record | [UriFormat.UriFormat1BoxedBoolean](#uriformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UriFormat.UriFormat1BoxedNumber](#uriformat1boxednumber)
boxed class to store validated Number payloads | -| record | [UriFormat.UriFormat1BoxedString](#uriformat1boxedstring)
boxed class to store validated String payloads | -| record | [UriFormat.UriFormat1BoxedList](#uriformat1boxedlist)
boxed class to store validated List payloads | -| record | [UriFormat.UriFormat1BoxedMap](#uriformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [UriFormat.UriFormat1](#uriformat1)
schema class | +| data class | [UriFormat.UriFormat1BoxedVoid](#uriformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [UriFormat.UriFormat1BoxedBoolean](#uriformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UriFormat.UriFormat1BoxedNumber](#uriformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [UriFormat.UriFormat1BoxedString](#uriformat1boxedstring)
boxed class to store validated String payloads | +| data class | [UriFormat.UriFormat1BoxedList](#uriformat1boxedlist)
boxed class to store validated List payloads | +| data class | [UriFormat.UriFormat1BoxedMap](#uriformat1boxedmap)
boxed class to store validated Map payloads | +| class | [UriFormat.UriFormat1](#uriformat1)
schema class | ## UriFormat1Boxed sealed interface UriFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class UriFormat1BoxedBoolean
implements [UriFormat1Boxed](#uriformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md index 16ef1cd0916..7b866bde5d8 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriReferenceFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UriReferenceFormat.UriReferenceFormat1Boxed](#urireferenceformat1boxed)
sealed interface for validated payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedVoid](#urireferenceformat1boxedvoid)
boxed class to store validated null payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedBoolean](#urireferenceformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedNumber](#urireferenceformat1boxednumber)
boxed class to store validated Number payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedString](#urireferenceformat1boxedstring)
boxed class to store validated String payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedList](#urireferenceformat1boxedlist)
boxed class to store validated List payloads | -| record | [UriReferenceFormat.UriReferenceFormat1BoxedMap](#urireferenceformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [UriReferenceFormat.UriReferenceFormat1](#urireferenceformat1)
schema class | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedVoid](#urireferenceformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedBoolean](#urireferenceformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedNumber](#urireferenceformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedString](#urireferenceformat1boxedstring)
boxed class to store validated String payloads | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedList](#urireferenceformat1boxedlist)
boxed class to store validated List payloads | +| data class | [UriReferenceFormat.UriReferenceFormat1BoxedMap](#urireferenceformat1boxedmap)
boxed class to store validated Map payloads | +| class | [UriReferenceFormat.UriReferenceFormat1](#urireferenceformat1)
schema class | ## UriReferenceFormat1Boxed sealed interface UriReferenceFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class UriReferenceFormat1BoxedBoolean
implements [UriReferenceFormat1Boxed](#urireferenceformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md index 7b608e65bcd..e2612eac0fc 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UriTemplateFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UriTemplateFormat.UriTemplateFormat1Boxed](#uritemplateformat1boxed)
sealed interface for validated payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedVoid](#uritemplateformat1boxedvoid)
boxed class to store validated null payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedBoolean](#uritemplateformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedNumber](#uritemplateformat1boxednumber)
boxed class to store validated Number payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedString](#uritemplateformat1boxedstring)
boxed class to store validated String payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedList](#uritemplateformat1boxedlist)
boxed class to store validated List payloads | -| record | [UriTemplateFormat.UriTemplateFormat1BoxedMap](#uritemplateformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [UriTemplateFormat.UriTemplateFormat1](#uritemplateformat1)
schema class | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedVoid](#uritemplateformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedBoolean](#uritemplateformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedNumber](#uritemplateformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedString](#uritemplateformat1boxedstring)
boxed class to store validated String payloads | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedList](#uritemplateformat1boxedlist)
boxed class to store validated List payloads | +| data class | [UriTemplateFormat.UriTemplateFormat1BoxedMap](#uritemplateformat1boxedmap)
boxed class to store validated Map payloads | +| class | [UriTemplateFormat.UriTemplateFormat1](#uritemplateformat1)
schema class | ## UriTemplateFormat1Boxed sealed interface UriTemplateFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class UriTemplateFormat1BoxedBoolean
implements [UriTemplateFormat1Boxed](#uritemplateformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UuidFormat.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UuidFormat.md index 75b296c0841..2af46d63f91 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UuidFormat.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/UuidFormat.md @@ -11,13 +11,13 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [UuidFormat.UuidFormat1Boxed](#uuidformat1boxed)
sealed interface for validated payloads | -| record | [UuidFormat.UuidFormat1BoxedVoid](#uuidformat1boxedvoid)
boxed class to store validated null payloads | -| record | [UuidFormat.UuidFormat1BoxedBoolean](#uuidformat1boxedboolean)
boxed class to store validated boolean payloads | -| record | [UuidFormat.UuidFormat1BoxedNumber](#uuidformat1boxednumber)
boxed class to store validated Number payloads | -| record | [UuidFormat.UuidFormat1BoxedString](#uuidformat1boxedstring)
boxed class to store validated String payloads | -| record | [UuidFormat.UuidFormat1BoxedList](#uuidformat1boxedlist)
boxed class to store validated List payloads | -| record | [UuidFormat.UuidFormat1BoxedMap](#uuidformat1boxedmap)
boxed class to store validated Map payloads | -| static class | [UuidFormat.UuidFormat1](#uuidformat1)
schema class | +| data class | [UuidFormat.UuidFormat1BoxedVoid](#uuidformat1boxedvoid)
boxed class to store validated null payloads | +| data class | [UuidFormat.UuidFormat1BoxedBoolean](#uuidformat1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [UuidFormat.UuidFormat1BoxedNumber](#uuidformat1boxednumber)
boxed class to store validated Number payloads | +| data class | [UuidFormat.UuidFormat1BoxedString](#uuidformat1boxedstring)
boxed class to store validated String payloads | +| data class | [UuidFormat.UuidFormat1BoxedList](#uuidformat1boxedlist)
boxed class to store validated List payloads | +| data class | [UuidFormat.UuidFormat1BoxedMap](#uuidformat1boxedmap)
boxed class to store validated Map payloads | +| class | [UuidFormat.UuidFormat1](#uuidformat1)
schema class | ## UuidFormat1Boxed sealed interface UuidFormat1Boxed
@@ -52,7 +52,7 @@ data class that stores validated null payloads, sealed permits implementation data class UuidFormat1BoxedBoolean
implements [UuidFormat1Boxed](#uuidformat1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ValidateAgainstCorrectBranchThenVsElse.md b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ValidateAgainstCorrectBranchThenVsElse.md index 95e64dd7f26..394cfa908a9 100644 --- a/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ValidateAgainstCorrectBranchThenVsElse.md +++ b/samples/client/3_1_0_unit_test/kotlin/docs/components/schemas/ValidateAgainstCorrectBranchThenVsElse.md @@ -11,37 +11,37 @@ A class that contains necessary nested | Modifier and Type | Class and Description | | ----------------- | ---------------------- | | sealed interface | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1Boxed](#validateagainstcorrectbranchthenvselse1boxed)
sealed interface for validated payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedVoid](#validateagainstcorrectbranchthenvselse1boxedvoid)
boxed class to store validated null payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedBoolean](#validateagainstcorrectbranchthenvselse1boxedboolean)
boxed class to store validated boolean payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedNumber](#validateagainstcorrectbranchthenvselse1boxednumber)
boxed class to store validated Number payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedString](#validateagainstcorrectbranchthenvselse1boxedstring)
boxed class to store validated String payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedList](#validateagainstcorrectbranchthenvselse1boxedlist)
boxed class to store validated List payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedMap](#validateagainstcorrectbranchthenvselse1boxedmap)
boxed class to store validated Map payloads | -| static class | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1](#validateagainstcorrectbranchthenvselse1)
schema class | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedVoid](#validateagainstcorrectbranchthenvselse1boxedvoid)
boxed class to store validated null payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedBoolean](#validateagainstcorrectbranchthenvselse1boxedboolean)
boxed class to store validated boolean payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedNumber](#validateagainstcorrectbranchthenvselse1boxednumber)
boxed class to store validated Number payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedString](#validateagainstcorrectbranchthenvselse1boxedstring)
boxed class to store validated String payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedList](#validateagainstcorrectbranchthenvselse1boxedlist)
boxed class to store validated List payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1BoxedMap](#validateagainstcorrectbranchthenvselse1boxedmap)
boxed class to store validated Map payloads | +| class | [ValidateAgainstCorrectBranchThenVsElse.ValidateAgainstCorrectBranchThenVsElse1](#validateagainstcorrectbranchthenvselse1)
schema class | | sealed interface | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxed](#thenboxed)
sealed interface for validated payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedVoid](#thenboxedvoid)
boxed class to store validated null payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedBoolean](#thenboxedboolean)
boxed class to store validated boolean payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedNumber](#thenboxednumber)
boxed class to store validated Number payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedString](#thenboxedstring)
boxed class to store validated String payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedList](#thenboxedlist)
boxed class to store validated List payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedMap](#thenboxedmap)
boxed class to store validated Map payloads | -| static class | [ValidateAgainstCorrectBranchThenVsElse.Then](#then)
schema class | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedVoid](#thenboxedvoid)
boxed class to store validated null payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedBoolean](#thenboxedboolean)
boxed class to store validated boolean payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedNumber](#thenboxednumber)
boxed class to store validated Number payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedString](#thenboxedstring)
boxed class to store validated String payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedList](#thenboxedlist)
boxed class to store validated List payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ThenBoxedMap](#thenboxedmap)
boxed class to store validated Map payloads | +| class | [ValidateAgainstCorrectBranchThenVsElse.Then](#then)
schema class | | sealed interface | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxed](#ifschemaboxed)
sealed interface for validated payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [ValidateAgainstCorrectBranchThenVsElse.IfSchema](#ifschema)
schema class | +| data class | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedVoid](#ifschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedBoolean](#ifschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedNumber](#ifschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedString](#ifschemaboxedstring)
boxed class to store validated String payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedList](#ifschemaboxedlist)
boxed class to store validated List payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.IfSchemaBoxedMap](#ifschemaboxedmap)
boxed class to store validated Map payloads | +| class | [ValidateAgainstCorrectBranchThenVsElse.IfSchema](#ifschema)
schema class | | sealed interface | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxed](#elseschemaboxed)
sealed interface for validated payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedVoid](#elseschemaboxedvoid)
boxed class to store validated null payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedBoolean](#elseschemaboxedboolean)
boxed class to store validated boolean payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedNumber](#elseschemaboxednumber)
boxed class to store validated Number payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedString](#elseschemaboxedstring)
boxed class to store validated String payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedList](#elseschemaboxedlist)
boxed class to store validated List payloads | -| record | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedMap](#elseschemaboxedmap)
boxed class to store validated Map payloads | -| static class | [ValidateAgainstCorrectBranchThenVsElse.ElseSchema](#elseschema)
schema class | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedVoid](#elseschemaboxedvoid)
boxed class to store validated null payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedBoolean](#elseschemaboxedboolean)
boxed class to store validated boolean payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedNumber](#elseschemaboxednumber)
boxed class to store validated Number payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedString](#elseschemaboxedstring)
boxed class to store validated String payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedList](#elseschemaboxedlist)
boxed class to store validated List payloads | +| data class | [ValidateAgainstCorrectBranchThenVsElse.ElseSchemaBoxedMap](#elseschemaboxedmap)
boxed class to store validated Map payloads | +| class | [ValidateAgainstCorrectBranchThenVsElse.ElseSchema](#elseschema)
schema class | ## ValidateAgainstCorrectBranchThenVsElse1Boxed sealed interface ValidateAgainstCorrectBranchThenVsElse1Boxed
@@ -76,7 +76,7 @@ data class that stores validated null payloads, sealed permits implementation data class ValidateAgainstCorrectBranchThenVsElse1BoxedBoolean
implements [ValidateAgainstCorrectBranchThenVsElse1Boxed](#validateagainstcorrectbranchthenvselse1boxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -225,7 +225,7 @@ data class that stores validated null payloads, sealed permits implementation data class ThenBoxedBoolean
implements [ThenBoxed](#thenboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -372,7 +372,7 @@ data class that stores validated null payloads, sealed permits implementation data class IfSchemaBoxedBoolean
implements [IfSchemaBoxed](#ifschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | @@ -519,7 +519,7 @@ data class that stores validated null payloads, sealed permits implementation data class ElseSchemaBoxedBoolean
implements [ElseSchemaBoxed](#elseschemaboxed) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation ### Constructor Summary | Constructor and Description | diff --git a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/SchemaClass/_boxedBoolean.hbs b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/SchemaClass/_boxedBoolean.hbs index 4c2f62d3326..ab8c547cf4a 100644 --- a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/SchemaClass/_boxedBoolean.hbs +++ b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/SchemaClass/_boxedBoolean.hbs @@ -3,7 +3,7 @@ data class {{jsonPathPiece.pascalCase}}BoxedBoolean
implements [{{jsonPathPiece.pascalCase}}Boxed](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxed" "")) }}) -record that stores validated boolean payloads, sealed permits implementation +data class that stores validated boolean payloads, sealed permits implementation {{headerSize}}## Constructor Summary | Constructor and Description | diff --git a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs index cc0d2e2cbf0..88ab818c862 100644 --- a/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs +++ b/src/main/resources/kotlin/src/main/kotlin/packagename/components/schemas/Schema_doc.hbs @@ -37,44 +37,44 @@ A class that contains necessary nested | sealed interface | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}Boxed](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxed" "")) }})
sealed interface for validated payloads | {{#each types}} {{#eq this "null"}} -| record | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedVoid](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedvoid" ""))}})
boxed class to store validated null payloads | +| data class | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedVoid](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedvoid" ""))}})
boxed class to store validated null payloads | {{/eq}} {{#eq this "boolean"}} -| record | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedBoolean](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedboolean" ""))}})
boxed class to store validated boolean payloads | +| data class | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedBoolean](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedboolean" ""))}})
boxed class to store validated boolean payloads | {{/eq}} {{#or (eq this "number") (eq this "integer")}} -| record | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedNumber](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxednumber" ""))}})
boxed class to store validated Number payloads | +| data class | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedNumber](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxednumber" ""))}})
boxed class to store validated Number payloads | {{/or}} {{#and (eq this "string") (neq ../format "binary") }} -| record | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedString](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedstring" ""))}})
boxed class to store validated String payloads | +| data class | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedString](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedstring" ""))}})
boxed class to store validated String payloads | {{/and}} {{#eq this "array"}} -| record | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedList](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedlist" ""))}})
boxed class to store validated List payloads | +| data class | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedList](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedlist" ""))}})
boxed class to store validated List payloads | {{/eq}}{{#eq this "object"}} -| record | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedMap](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedmap" ""))}})
boxed class to store validated Map payloads | +| data class | [{{../../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedMap](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedmap" ""))}})
boxed class to store validated Map payloads | {{/eq}} {{else}} -| record | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedVoid](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedvoid" ""))}})
boxed class to store validated null payloads | -| record | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedBoolean](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedboolean" ""))}})
boxed class to store validated boolean payloads | -| record | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedNumber](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxednumber" ""))}})
boxed class to store validated Number payloads | -| record | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedString](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedstring" ""))}})
boxed class to store validated String payloads | -| record | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedList](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedlist" ""))}})
boxed class to store validated List payloads | -| record | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedMap](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedmap" ""))}})
boxed class to store validated Map payloads | +| data class | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedVoid](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedvoid" ""))}})
boxed class to store validated null payloads | +| data class | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedBoolean](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedboolean" ""))}})
boxed class to store validated boolean payloads | +| data class | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedNumber](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxednumber" ""))}})
boxed class to store validated Number payloads | +| data class | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedString](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedstring" ""))}})
boxed class to store validated String payloads | +| data class | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedList](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedlist" ""))}})
boxed class to store validated List payloads | +| data class | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}BoxedMap](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces (join jsonPathPiece.kebabCase "boxedmap" ""))}})
boxed class to store validated Map payloads | {{/each}} {{/eq}} -| static class | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces jsonPathPiece) }})
schema class | +| class | [{{../containerJsonPathPiece.pascalCase}}.{{jsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces jsonPathPiece) }})
schema class | {{else}} {{#eq instanceType "propertiesOutputType"}} -| static class | [{{../containerJsonPathPiece.pascalCase}}.{{mapOutputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapOutputJsonPathPiece) }})
output class for Map payloads | +| class | [{{../containerJsonPathPiece.pascalCase}}.{{mapOutputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapOutputJsonPathPiece) }})
output class for Map payloads | {{else}} {{#eq instanceType "arrayOutputType"}} -| static class | [{{../containerJsonPathPiece.pascalCase}}.{{arrayOutputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces arrayOutputJsonPathPiece) }})
output class for List payloads | +| class | [{{../containerJsonPathPiece.pascalCase}}.{{arrayOutputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces arrayOutputJsonPathPiece) }})
output class for List payloads | {{else}} {{#eq instanceType "arrayInputType"}} -| static class | [{{../containerJsonPathPiece.pascalCase}}.{{arrayInputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces arrayInputJsonPathPiece) }})
builder for List payloads | +| class | [{{../containerJsonPathPiece.pascalCase}}.{{arrayInputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces arrayInputJsonPathPiece) }})
builder for List payloads | {{else}} {{#or (eq instanceType "propertiesInputType") (eq instanceType "requiredPropertiesInputType") (eq instanceType "optionalPropertiesInputType") }} -| static class | [{{../containerJsonPathPiece.pascalCase}}.{{mapInputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapInputJsonPathPiece) }})
builder for Map payloads | +| class | [{{../containerJsonPathPiece.pascalCase}}.{{mapInputJsonPathPiece.pascalCase}}](#{{> src/main/kotlin/packagename/components/_helper_anchor_id identifierPieces=(append identifierPieces mapInputJsonPathPiece) }})
builder for Map payloads | {{else}} {{#eq instanceType "enumClass"}} {{#with enumInfo}} From 41771e102946d180e3749e4ba70e2bbcaaa6ee7a Mon Sep 17 00:00:00 2001 From: Justin Black Date: Mon, 20 May 2024 14:35:01 -0700 Subject: [PATCH 4/7] Updates jvmToolchain --- samples/client/3_0_3_unit_test/kotlin/build.gradle.kts | 6 ++---- samples/client/3_1_0_unit_test/kotlin/build.gradle.kts | 6 ++---- src/main/resources/kotlin/build.gradle.hbs | 6 ++---- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/samples/client/3_0_3_unit_test/kotlin/build.gradle.kts b/samples/client/3_0_3_unit_test/kotlin/build.gradle.kts index 882b3b35624..b9294caee1f 100644 --- a/samples/client/3_0_3_unit_test/kotlin/build.gradle.kts +++ b/samples/client/3_0_3_unit_test/kotlin/build.gradle.kts @@ -21,10 +21,8 @@ group = "org.openapijsonschematools" version = "0.0.1" description = "OpenAPI Kotlin" -java { - toolchain { - languageVersion.set(JavaLanguageVersion.of(17)) - } +kotlin { + jvmToolchain(17) } tasks.wrapper { diff --git a/samples/client/3_1_0_unit_test/kotlin/build.gradle.kts b/samples/client/3_1_0_unit_test/kotlin/build.gradle.kts index 882b3b35624..b9294caee1f 100644 --- a/samples/client/3_1_0_unit_test/kotlin/build.gradle.kts +++ b/samples/client/3_1_0_unit_test/kotlin/build.gradle.kts @@ -21,10 +21,8 @@ group = "org.openapijsonschematools" version = "0.0.1" description = "OpenAPI Kotlin" -java { - toolchain { - languageVersion.set(JavaLanguageVersion.of(17)) - } +kotlin { + jvmToolchain(17) } tasks.wrapper { diff --git a/src/main/resources/kotlin/build.gradle.hbs b/src/main/resources/kotlin/build.gradle.hbs index c9036f371c4..d2d9e485c61 100644 --- a/src/main/resources/kotlin/build.gradle.hbs +++ b/src/main/resources/kotlin/build.gradle.hbs @@ -21,10 +21,8 @@ group = "{{groupId}}" version = "{{artifactVersion}}" description = "{{artifactDescription}}" -java { - toolchain { - languageVersion.set(JavaLanguageVersion.of(17)) - } +kotlin { + jvmToolchain(17) } tasks.wrapper { From ad70df4c24cf2347169ec8779013efcd22f5e09a Mon Sep 17 00:00:00 2001 From: Justin Black Date: Mon, 20 May 2024 14:41:43 -0700 Subject: [PATCH 5/7] Removes caches from kotlin test run in ci --- .circleci/config.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7bb844036e3..6053aece9b9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -143,15 +143,8 @@ jobs: CIRCLE_ARTIFACTS: /tmp/circleci-artifacts CIRCLE_TEST_REPORTS: /tmp/circleci-test-results steps: - - restore_cache: - keys: - - kotlinClientGradleCache - command_build_and_test: jobId: "testKotlinClientSamples" - - save_cache: - key: kotlinClientGradleCache - paths: - - ~/build workflows: version: 2 build: From 1b2a506997f15161f3a444e1223bc84e09f4e22b Mon Sep 17 00:00:00 2001 From: Justin Black Date: Mon, 20 May 2024 14:48:29 -0700 Subject: [PATCH 6/7] Turns nodaemon on in ci --- .circleci/testKotlinClientSamples.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/testKotlinClientSamples.sh b/.circleci/testKotlinClientSamples.sh index d1a438304da..cc03a3ecfc6 100644 --- a/.circleci/testKotlinClientSamples.sh +++ b/.circleci/testKotlinClientSamples.sh @@ -1,2 +1,2 @@ - (cd samples/client/3_0_3_unit_test/kotlin && gradle wrapper && ./gradlew cleanTest test -info) - (cd samples/client/3_1_0_unit_test/kotlin && gradle wrapper && ./gradlew cleanTest test -info) \ No newline at end of file + (cd samples/client/3_0_3_unit_test/kotlin && gradle wrapper && ./gradlew cleanTest test -info --no-daemon) + (cd samples/client/3_1_0_unit_test/kotlin && gradle wrapper && ./gradlew cleanTest test -info --no-daemon) \ No newline at end of file From a9c742f181e526bf8483675d7ca18f1b4faa966a Mon Sep 17 00:00:00 2001 From: Justin Black Date: Mon, 20 May 2024 15:01:00 -0700 Subject: [PATCH 7/7] Removes info from gradle test invocation --- .circleci/testKotlinClientSamples.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/testKotlinClientSamples.sh b/.circleci/testKotlinClientSamples.sh index cc03a3ecfc6..bd90fec52df 100644 --- a/.circleci/testKotlinClientSamples.sh +++ b/.circleci/testKotlinClientSamples.sh @@ -1,2 +1,2 @@ - (cd samples/client/3_0_3_unit_test/kotlin && gradle wrapper && ./gradlew cleanTest test -info --no-daemon) - (cd samples/client/3_1_0_unit_test/kotlin && gradle wrapper && ./gradlew cleanTest test -info --no-daemon) \ No newline at end of file + (cd samples/client/3_0_3_unit_test/kotlin && gradle wrapper && ./gradlew cleanTest test --no-daemon) + (cd samples/client/3_1_0_unit_test/kotlin && gradle wrapper && ./gradlew cleanTest test --no-daemon) \ No newline at end of file