@@ -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
@@ -58,7 +58,7 @@ import kotlin.collections.toTypedArray
5858 * @param _customVersion Allows overriding action's version, for example to use a specific minor version, or a newer version that the binding doesn't yet know about
5959 */
6060@ExposedCopyVisibility
61- public data class ActionWithAllTypesOfInputs private constructor(
61+ public data class ActionWithAllTypesOfInputsBindingV1 private constructor(
6262 /* *
6363 * <required> Short description
6464 */
@@ -102,23 +102,23 @@ public data class ActionWithAllTypesOfInputs private constructor(
102102 /* *
103103 * <required> Enumeration
104104 */
105- public val finBin : ActionWithAllTypesOfInputs .Bin ? = null ,
105+ public val finBin : ActionWithAllTypesOfInputsBindingV1 .Bin ? = null ,
106106 /* *
107107 * <required> Enumeration
108108 */
109109 public val finBin_Untyped : String? = null ,
110110 /* *
111111 * <required> Integer with special value
112112 */
113- public val gooZen : ActionWithAllTypesOfInputs .Zen ? = null ,
113+ public val gooZen : ActionWithAllTypesOfInputsBindingV1 .Zen ? = null ,
114114 /* *
115115 * <required> Integer with special value
116116 */
117117 public val gooZen_Untyped : String? = null ,
118118 /* *
119119 * <required> Enum with custom naming
120120 */
121- public val bahEnum : ActionWithAllTypesOfInputs .BahEnum ? = null ,
121+ public val bahEnum : ActionWithAllTypesOfInputsBindingV1 .BahEnum ? = null ,
122122 /* *
123123 * <required> Enum with custom naming
124124 */
@@ -142,15 +142,15 @@ public data class ActionWithAllTypesOfInputs private constructor(
142142 /* *
143143 * List of enums
144144 */
145- public val listEnums : List <ActionWithAllTypesOfInputs .MyEnum >? = null ,
145+ public val listEnums : List <ActionWithAllTypesOfInputsBindingV1 .MyEnum >? = null ,
146146 /* *
147147 * List of enums
148148 */
149149 public val listEnums_Untyped : String? = null ,
150150 /* *
151151 * List of integer with special values
152152 */
153- public val listIntSpecial : List <ActionWithAllTypesOfInputs .MyInt >? = null ,
153+ public val listIntSpecial : List <ActionWithAllTypesOfInputsBindingV1 .MyInt >? = null ,
154154 /* *
155155 * List of integer with special values
156156 */
@@ -163,7 +163,7 @@ public data class ActionWithAllTypesOfInputs private constructor(
163163 * Allows overriding action's version, for example to use a specific minor version, or a newer version that the binding doesn't yet know about
164164 */
165165 public val _customVersion : String? = null ,
166- ) : RegularAction<ActionWithAllTypesOfInputs .Outputs>(" john-smith" , " action-with-all-types-of-inputs" , _customVersion ? : " v3" ) {
166+ ) : RegularAction<ActionWithAllTypesOfInputsBindingV1 .Outputs>(" john-smith" , " action-with-all-types-of-inputs-binding-v1 " , _customVersion ? : " v3" ) {
167167 init {
168168 require(! ((fooBar != null ) && (fooBar_Untyped != null ))) {
169169 " Only fooBar or fooBar_Untyped must be set, but not both"
@@ -247,19 +247,19 @@ public data class ActionWithAllTypesOfInputs private constructor(
247247 intPint_Untyped: String? = null ,
248248 floPint: Float? = null ,
249249 floPint_Untyped: String? = null ,
250- finBin: ActionWithAllTypesOfInputs .Bin ? = null ,
250+ finBin: ActionWithAllTypesOfInputsBindingV1 .Bin ? = null ,
251251 finBin_Untyped: String? = null ,
252- gooZen: ActionWithAllTypesOfInputs .Zen ? = null ,
252+ gooZen: ActionWithAllTypesOfInputsBindingV1 .Zen ? = null ,
253253 gooZen_Untyped: String? = null ,
254- bahEnum: ActionWithAllTypesOfInputs .BahEnum ? = null ,
254+ bahEnum: ActionWithAllTypesOfInputsBindingV1 .BahEnum ? = null ,
255255 bahEnum_Untyped: String? = null ,
256256 listStrings: List <String >? = null ,
257257 listStrings_Untyped: String? = null ,
258258 listInts: List <Int >? = null ,
259259 listInts_Untyped: String? = null ,
260- listEnums: List <ActionWithAllTypesOfInputs .MyEnum >? = null ,
260+ listEnums: List <ActionWithAllTypesOfInputsBindingV1 .MyEnum >? = null ,
261261 listEnums_Untyped: String? = null ,
262- listIntSpecial: List <ActionWithAllTypesOfInputs .MyInt >? = null ,
262+ listIntSpecial: List <ActionWithAllTypesOfInputsBindingV1 .MyInt >? = null ,
263263 listIntSpecial_Untyped: String? = null ,
264264 _customInputs : Map <String , String > = mapOf (),
265265 _customVersion : String? = null ,
@@ -301,61 +301,61 @@ public data class ActionWithAllTypesOfInputs private constructor(
301301 public sealed class Bin (
302302 public val stringValue : String ,
303303 ) {
304- public object Foo : ActionWithAllTypesOfInputs .Bin(" foo" )
304+ public object Foo : ActionWithAllTypesOfInputsBindingV1 .Bin(" foo" )
305305
306- public object BooBar : ActionWithAllTypesOfInputs .Bin(" boo-bar" )
306+ public object BooBar : ActionWithAllTypesOfInputsBindingV1 .Bin(" boo-bar" )
307307
308- public object Baz123 : ActionWithAllTypesOfInputs .Bin(" baz123" )
308+ public object Baz123 : ActionWithAllTypesOfInputsBindingV1 .Bin(" baz123" )
309309
310310 public class Custom (
311311 customStringValue : String ,
312- ) : ActionWithAllTypesOfInputs .Bin(customStringValue)
312+ ) : ActionWithAllTypesOfInputsBindingV1 .Bin(customStringValue)
313313 }
314314
315315 public sealed class Zen (
316316 public val integerValue : Int ,
317317 ) {
318318 public class Value (
319319 requestedValue : Int ,
320- ) : ActionWithAllTypesOfInputs .Zen(requestedValue)
320+ ) : ActionWithAllTypesOfInputsBindingV1 .Zen(requestedValue)
321321
322- public object Special1 : ActionWithAllTypesOfInputs .Zen(3 )
322+ public object Special1 : ActionWithAllTypesOfInputsBindingV1 .Zen(3 )
323323
324- public object Special2 : ActionWithAllTypesOfInputs .Zen(-1 )
324+ public object Special2 : ActionWithAllTypesOfInputsBindingV1 .Zen(-1 )
325325 }
326326
327327 public sealed class BahEnum (
328328 public val stringValue : String ,
329329 ) {
330- public object HelloWorld : ActionWithAllTypesOfInputs .BahEnum(" helloworld" )
330+ public object HelloWorld : ActionWithAllTypesOfInputsBindingV1 .BahEnum(" helloworld" )
331331
332332 public class Custom (
333333 customStringValue : String ,
334- ) : ActionWithAllTypesOfInputs .BahEnum(customStringValue)
334+ ) : ActionWithAllTypesOfInputsBindingV1 .BahEnum(customStringValue)
335335 }
336336
337337 public sealed class MyEnum (
338338 public val stringValue : String ,
339339 ) {
340- public object One : ActionWithAllTypesOfInputs .MyEnum(" one" )
340+ public object One : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" one" )
341341
342- public object Two : ActionWithAllTypesOfInputs .MyEnum(" two" )
342+ public object Two : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" two" )
343343
344- public object Three : ActionWithAllTypesOfInputs .MyEnum(" three" )
344+ public object Three : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" three" )
345345
346346 public class Custom (
347347 customStringValue : String ,
348- ) : ActionWithAllTypesOfInputs .MyEnum(customStringValue)
348+ ) : ActionWithAllTypesOfInputsBindingV1 .MyEnum(customStringValue)
349349 }
350350
351351 public sealed class MyInt (
352352 public val integerValue : Int ,
353353 ) {
354354 public class Value (
355355 requestedValue : Int ,
356- ) : ActionWithAllTypesOfInputs .MyInt(requestedValue)
356+ ) : ActionWithAllTypesOfInputsBindingV1 .MyInt(requestedValue)
357357
358- public object TheAnswer : ActionWithAllTypesOfInputs .MyInt(42 )
358+ public object TheAnswer : ActionWithAllTypesOfInputsBindingV1 .MyInt(42 )
359359 }
360360
361361 public class Outputs (
0 commit comments