@@ -28,7 +28,7 @@ import kotlin.collections.toTypedArray
2828 *
2929 * This is a test description that should be put in the KDoc comment for a class
3030 *
31- * [Action on GitHub](https://github.com/john-smith/action-with-all-types-of-inputs)
31+ * [Action on GitHub](https://github.com/john-smith/action-with-all-types-of-inputs-binding-v1 )
3232 *
3333 * @param fooBar <required> Short description
3434 * @param fooBar_Untyped <required> Short description
@@ -60,7 +60,7 @@ import kotlin.collections.toTypedArray
6060 * version, or a newer version that the binding doesn't yet know about
6161 */
6262@ExposedCopyVisibility
63- public data class ActionWithAllTypesOfInputs private constructor(
63+ public data class ActionWithAllTypesOfInputsBindingV1 private constructor(
6464 /* *
6565 * <required> Short description
6666 */
@@ -104,23 +104,23 @@ public data class ActionWithAllTypesOfInputs private constructor(
104104 /* *
105105 * <required> Enumeration
106106 */
107- public val finBin : ActionWithAllTypesOfInputs .Bin ? = null ,
107+ public val finBin : ActionWithAllTypesOfInputsBindingV1 .Bin ? = null ,
108108 /* *
109109 * <required> Enumeration
110110 */
111111 public val finBin_Untyped : String? = null ,
112112 /* *
113113 * <required> Integer with special value
114114 */
115- public val gooZen : ActionWithAllTypesOfInputs .Zen ? = null ,
115+ public val gooZen : ActionWithAllTypesOfInputsBindingV1 .Zen ? = null ,
116116 /* *
117117 * <required> Integer with special value
118118 */
119119 public val gooZen_Untyped : String? = null ,
120120 /* *
121121 * <required> Enum with custom naming
122122 */
123- public val bahEnum : ActionWithAllTypesOfInputs .BahEnum ? = null ,
123+ public val bahEnum : ActionWithAllTypesOfInputsBindingV1 .BahEnum ? = null ,
124124 /* *
125125 * <required> Enum with custom naming
126126 */
@@ -144,15 +144,15 @@ public data class ActionWithAllTypesOfInputs private constructor(
144144 /* *
145145 * List of enums
146146 */
147- public val listEnums : List <ActionWithAllTypesOfInputs .MyEnum >? = null ,
147+ public val listEnums : List <ActionWithAllTypesOfInputsBindingV1 .MyEnum >? = null ,
148148 /* *
149149 * List of enums
150150 */
151151 public val listEnums_Untyped : String? = null ,
152152 /* *
153153 * List of integer with special values
154154 */
155- public val listIntSpecial : List <ActionWithAllTypesOfInputs .MyInt >? = null ,
155+ public val listIntSpecial : List <ActionWithAllTypesOfInputsBindingV1 .MyInt >? = null ,
156156 /* *
157157 * List of integer with special values
158158 */
@@ -166,8 +166,8 @@ public data class ActionWithAllTypesOfInputs private constructor(
166166 * version that the binding doesn't yet know about
167167 */
168168 public val _customVersion : String? = null ,
169- ) : RegularAction<ActionWithAllTypesOfInputs .Outputs>(" john-smith" ,
170- " action-with-all-types-of-inputs" , _customVersion ? : " v3" ) {
169+ ) : RegularAction<ActionWithAllTypesOfInputsBindingV1 .Outputs>(" john-smith" ,
170+ " action-with-all-types-of-inputs-binding-v1 " , _customVersion ? : " v3" ) {
171171 init {
172172 require(! ((fooBar != null ) && (fooBar_Untyped != null ))) {
173173 " Only fooBar or fooBar_Untyped must be set, but not both"
@@ -251,19 +251,19 @@ public data class ActionWithAllTypesOfInputs private constructor(
251251 intPint_Untyped: String? = null ,
252252 floPint: Float? = null ,
253253 floPint_Untyped: String? = null ,
254- finBin: ActionWithAllTypesOfInputs .Bin ? = null ,
254+ finBin: ActionWithAllTypesOfInputsBindingV1 .Bin ? = null ,
255255 finBin_Untyped: String? = null ,
256- gooZen: ActionWithAllTypesOfInputs .Zen ? = null ,
256+ gooZen: ActionWithAllTypesOfInputsBindingV1 .Zen ? = null ,
257257 gooZen_Untyped: String? = null ,
258- bahEnum: ActionWithAllTypesOfInputs .BahEnum ? = null ,
258+ bahEnum: ActionWithAllTypesOfInputsBindingV1 .BahEnum ? = null ,
259259 bahEnum_Untyped: String? = null ,
260260 listStrings: List <String >? = null ,
261261 listStrings_Untyped: String? = null ,
262262 listInts: List <Int >? = null ,
263263 listInts_Untyped: String? = null ,
264- listEnums: List <ActionWithAllTypesOfInputs .MyEnum >? = null ,
264+ listEnums: List <ActionWithAllTypesOfInputsBindingV1 .MyEnum >? = null ,
265265 listEnums_Untyped: String? = null ,
266- listIntSpecial: List <ActionWithAllTypesOfInputs .MyInt >? = null ,
266+ listIntSpecial: List <ActionWithAllTypesOfInputsBindingV1 .MyInt >? = null ,
267267 listIntSpecial_Untyped: String? = null ,
268268 _customInputs : Map <String , String > = mapOf (),
269269 _customVersion : String? = null ,
@@ -314,61 +314,61 @@ public data class ActionWithAllTypesOfInputs private constructor(
314314 public sealed class Bin (
315315 public val stringValue : String ,
316316 ) {
317- public object Foo : ActionWithAllTypesOfInputs .Bin(" foo" )
317+ public object Foo : ActionWithAllTypesOfInputsBindingV1 .Bin(" foo" )
318318
319- public object BooBar : ActionWithAllTypesOfInputs .Bin(" boo-bar" )
319+ public object BooBar : ActionWithAllTypesOfInputsBindingV1 .Bin(" boo-bar" )
320320
321- public object Baz123 : ActionWithAllTypesOfInputs .Bin(" baz123" )
321+ public object Baz123 : ActionWithAllTypesOfInputsBindingV1 .Bin(" baz123" )
322322
323323 public class Custom (
324324 customStringValue : String ,
325- ) : ActionWithAllTypesOfInputs .Bin(customStringValue)
325+ ) : ActionWithAllTypesOfInputsBindingV1 .Bin(customStringValue)
326326 }
327327
328328 public sealed class Zen (
329329 public val integerValue : Int ,
330330 ) {
331331 public class Value (
332332 requestedValue : Int ,
333- ) : ActionWithAllTypesOfInputs .Zen(requestedValue)
333+ ) : ActionWithAllTypesOfInputsBindingV1 .Zen(requestedValue)
334334
335- public object Special1 : ActionWithAllTypesOfInputs .Zen(3 )
335+ public object Special1 : ActionWithAllTypesOfInputsBindingV1 .Zen(3 )
336336
337- public object Special2 : ActionWithAllTypesOfInputs .Zen(-1 )
337+ public object Special2 : ActionWithAllTypesOfInputsBindingV1 .Zen(-1 )
338338 }
339339
340340 public sealed class BahEnum (
341341 public val stringValue : String ,
342342 ) {
343- public object HelloWorld : ActionWithAllTypesOfInputs .BahEnum(" helloworld" )
343+ public object HelloWorld : ActionWithAllTypesOfInputsBindingV1 .BahEnum(" helloworld" )
344344
345345 public class Custom (
346346 customStringValue : String ,
347- ) : ActionWithAllTypesOfInputs .BahEnum(customStringValue)
347+ ) : ActionWithAllTypesOfInputsBindingV1 .BahEnum(customStringValue)
348348 }
349349
350350 public sealed class MyEnum (
351351 public val stringValue : String ,
352352 ) {
353- public object One : ActionWithAllTypesOfInputs .MyEnum(" one" )
353+ public object One : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" one" )
354354
355- public object Two : ActionWithAllTypesOfInputs .MyEnum(" two" )
355+ public object Two : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" two" )
356356
357- public object Three : ActionWithAllTypesOfInputs .MyEnum(" three" )
357+ public object Three : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" three" )
358358
359359 public class Custom (
360360 customStringValue : String ,
361- ) : ActionWithAllTypesOfInputs .MyEnum(customStringValue)
361+ ) : ActionWithAllTypesOfInputsBindingV1 .MyEnum(customStringValue)
362362 }
363363
364364 public sealed class MyInt (
365365 public val integerValue : Int ,
366366 ) {
367367 public class Value (
368368 requestedValue : Int ,
369- ) : ActionWithAllTypesOfInputs .MyInt(requestedValue)
369+ ) : ActionWithAllTypesOfInputsBindingV1 .MyInt(requestedValue)
370370
371- public object TheAnswer : ActionWithAllTypesOfInputs .MyInt(42 )
371+ public object TheAnswer : ActionWithAllTypesOfInputsBindingV1 .MyInt(42 )
372372 }
373373
374374 public class Outputs (
0 commit comments