@@ -28,7 +28,7 @@ import kotlin.collections.toTypedArray
28
28
*
29
29
* This is a test description that should be put in the KDoc comment for a class
30
30
*
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 )
32
32
*
33
33
* @param fooBar <required> Short description
34
34
* @param fooBar_Untyped <required> Short description
@@ -60,7 +60,7 @@ import kotlin.collections.toTypedArray
60
60
* version, or a newer version that the binding doesn't yet know about
61
61
*/
62
62
@ExposedCopyVisibility
63
- public data class ActionWithAllTypesOfInputs private constructor(
63
+ public data class ActionWithAllTypesOfInputsBindingV1 private constructor(
64
64
/* *
65
65
* <required> Short description
66
66
*/
@@ -104,23 +104,23 @@ public data class ActionWithAllTypesOfInputs private constructor(
104
104
/* *
105
105
* <required> Enumeration
106
106
*/
107
- public val finBin : ActionWithAllTypesOfInputs .Bin ? = null ,
107
+ public val finBin : ActionWithAllTypesOfInputsBindingV1 .Bin ? = null ,
108
108
/* *
109
109
* <required> Enumeration
110
110
*/
111
111
public val finBin_Untyped : String? = null ,
112
112
/* *
113
113
* <required> Integer with special value
114
114
*/
115
- public val gooZen : ActionWithAllTypesOfInputs .Zen ? = null ,
115
+ public val gooZen : ActionWithAllTypesOfInputsBindingV1 .Zen ? = null ,
116
116
/* *
117
117
* <required> Integer with special value
118
118
*/
119
119
public val gooZen_Untyped : String? = null ,
120
120
/* *
121
121
* <required> Enum with custom naming
122
122
*/
123
- public val bahEnum : ActionWithAllTypesOfInputs .BahEnum ? = null ,
123
+ public val bahEnum : ActionWithAllTypesOfInputsBindingV1 .BahEnum ? = null ,
124
124
/* *
125
125
* <required> Enum with custom naming
126
126
*/
@@ -144,15 +144,15 @@ public data class ActionWithAllTypesOfInputs private constructor(
144
144
/* *
145
145
* List of enums
146
146
*/
147
- public val listEnums : List <ActionWithAllTypesOfInputs .MyEnum >? = null ,
147
+ public val listEnums : List <ActionWithAllTypesOfInputsBindingV1 .MyEnum >? = null ,
148
148
/* *
149
149
* List of enums
150
150
*/
151
151
public val listEnums_Untyped : String? = null ,
152
152
/* *
153
153
* List of integer with special values
154
154
*/
155
- public val listIntSpecial : List <ActionWithAllTypesOfInputs .MyInt >? = null ,
155
+ public val listIntSpecial : List <ActionWithAllTypesOfInputsBindingV1 .MyInt >? = null ,
156
156
/* *
157
157
* List of integer with special values
158
158
*/
@@ -166,8 +166,8 @@ public data class ActionWithAllTypesOfInputs private constructor(
166
166
* version that the binding doesn't yet know about
167
167
*/
168
168
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" ) {
171
171
init {
172
172
require(! ((fooBar != null ) && (fooBar_Untyped != null ))) {
173
173
" Only fooBar or fooBar_Untyped must be set, but not both"
@@ -251,19 +251,19 @@ public data class ActionWithAllTypesOfInputs private constructor(
251
251
intPint_Untyped: String? = null ,
252
252
floPint: Float? = null ,
253
253
floPint_Untyped: String? = null ,
254
- finBin: ActionWithAllTypesOfInputs .Bin ? = null ,
254
+ finBin: ActionWithAllTypesOfInputsBindingV1 .Bin ? = null ,
255
255
finBin_Untyped: String? = null ,
256
- gooZen: ActionWithAllTypesOfInputs .Zen ? = null ,
256
+ gooZen: ActionWithAllTypesOfInputsBindingV1 .Zen ? = null ,
257
257
gooZen_Untyped: String? = null ,
258
- bahEnum: ActionWithAllTypesOfInputs .BahEnum ? = null ,
258
+ bahEnum: ActionWithAllTypesOfInputsBindingV1 .BahEnum ? = null ,
259
259
bahEnum_Untyped: String? = null ,
260
260
listStrings: List <String >? = null ,
261
261
listStrings_Untyped: String? = null ,
262
262
listInts: List <Int >? = null ,
263
263
listInts_Untyped: String? = null ,
264
- listEnums: List <ActionWithAllTypesOfInputs .MyEnum >? = null ,
264
+ listEnums: List <ActionWithAllTypesOfInputsBindingV1 .MyEnum >? = null ,
265
265
listEnums_Untyped: String? = null ,
266
- listIntSpecial: List <ActionWithAllTypesOfInputs .MyInt >? = null ,
266
+ listIntSpecial: List <ActionWithAllTypesOfInputsBindingV1 .MyInt >? = null ,
267
267
listIntSpecial_Untyped: String? = null ,
268
268
_customInputs : Map <String , String > = mapOf (),
269
269
_customVersion : String? = null ,
@@ -314,61 +314,61 @@ public data class ActionWithAllTypesOfInputs private constructor(
314
314
public sealed class Bin (
315
315
public val stringValue : String ,
316
316
) {
317
- public object Foo : ActionWithAllTypesOfInputs .Bin(" foo" )
317
+ public object Foo : ActionWithAllTypesOfInputsBindingV1 .Bin(" foo" )
318
318
319
- public object BooBar : ActionWithAllTypesOfInputs .Bin(" boo-bar" )
319
+ public object BooBar : ActionWithAllTypesOfInputsBindingV1 .Bin(" boo-bar" )
320
320
321
- public object Baz123 : ActionWithAllTypesOfInputs .Bin(" baz123" )
321
+ public object Baz123 : ActionWithAllTypesOfInputsBindingV1 .Bin(" baz123" )
322
322
323
323
public class Custom (
324
324
customStringValue : String ,
325
- ) : ActionWithAllTypesOfInputs .Bin(customStringValue)
325
+ ) : ActionWithAllTypesOfInputsBindingV1 .Bin(customStringValue)
326
326
}
327
327
328
328
public sealed class Zen (
329
329
public val integerValue : Int ,
330
330
) {
331
331
public class Value (
332
332
requestedValue : Int ,
333
- ) : ActionWithAllTypesOfInputs .Zen(requestedValue)
333
+ ) : ActionWithAllTypesOfInputsBindingV1 .Zen(requestedValue)
334
334
335
- public object Special1 : ActionWithAllTypesOfInputs .Zen(3 )
335
+ public object Special1 : ActionWithAllTypesOfInputsBindingV1 .Zen(3 )
336
336
337
- public object Special2 : ActionWithAllTypesOfInputs .Zen(-1 )
337
+ public object Special2 : ActionWithAllTypesOfInputsBindingV1 .Zen(-1 )
338
338
}
339
339
340
340
public sealed class BahEnum (
341
341
public val stringValue : String ,
342
342
) {
343
- public object HelloWorld : ActionWithAllTypesOfInputs .BahEnum(" helloworld" )
343
+ public object HelloWorld : ActionWithAllTypesOfInputsBindingV1 .BahEnum(" helloworld" )
344
344
345
345
public class Custom (
346
346
customStringValue : String ,
347
- ) : ActionWithAllTypesOfInputs .BahEnum(customStringValue)
347
+ ) : ActionWithAllTypesOfInputsBindingV1 .BahEnum(customStringValue)
348
348
}
349
349
350
350
public sealed class MyEnum (
351
351
public val stringValue : String ,
352
352
) {
353
- public object One : ActionWithAllTypesOfInputs .MyEnum(" one" )
353
+ public object One : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" one" )
354
354
355
- public object Two : ActionWithAllTypesOfInputs .MyEnum(" two" )
355
+ public object Two : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" two" )
356
356
357
- public object Three : ActionWithAllTypesOfInputs .MyEnum(" three" )
357
+ public object Three : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" three" )
358
358
359
359
public class Custom (
360
360
customStringValue : String ,
361
- ) : ActionWithAllTypesOfInputs .MyEnum(customStringValue)
361
+ ) : ActionWithAllTypesOfInputsBindingV1 .MyEnum(customStringValue)
362
362
}
363
363
364
364
public sealed class MyInt (
365
365
public val integerValue : Int ,
366
366
) {
367
367
public class Value (
368
368
requestedValue : Int ,
369
- ) : ActionWithAllTypesOfInputs .MyInt(requestedValue)
369
+ ) : ActionWithAllTypesOfInputsBindingV1 .MyInt(requestedValue)
370
370
371
- public object TheAnswer : ActionWithAllTypesOfInputs .MyInt(42 )
371
+ public object TheAnswer : ActionWithAllTypesOfInputsBindingV1 .MyInt(42 )
372
372
}
373
373
374
374
public class Outputs (
0 commit comments