@@ -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
@@ -58,7 +58,7 @@ import kotlin.collections.toTypedArray
58
58
* @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
59
59
*/
60
60
@ExposedCopyVisibility
61
- public data class ActionWithAllTypesOfInputs private constructor(
61
+ public data class ActionWithAllTypesOfInputsBindingV1 private constructor(
62
62
/* *
63
63
* <required> Short description
64
64
*/
@@ -102,23 +102,23 @@ public data class ActionWithAllTypesOfInputs private constructor(
102
102
/* *
103
103
* <required> Enumeration
104
104
*/
105
- public val finBin : ActionWithAllTypesOfInputs .Bin ? = null ,
105
+ public val finBin : ActionWithAllTypesOfInputsBindingV1 .Bin ? = null ,
106
106
/* *
107
107
* <required> Enumeration
108
108
*/
109
109
public val finBin_Untyped : String? = null ,
110
110
/* *
111
111
* <required> Integer with special value
112
112
*/
113
- public val gooZen : ActionWithAllTypesOfInputs .Zen ? = null ,
113
+ public val gooZen : ActionWithAllTypesOfInputsBindingV1 .Zen ? = null ,
114
114
/* *
115
115
* <required> Integer with special value
116
116
*/
117
117
public val gooZen_Untyped : String? = null ,
118
118
/* *
119
119
* <required> Enum with custom naming
120
120
*/
121
- public val bahEnum : ActionWithAllTypesOfInputs .BahEnum ? = null ,
121
+ public val bahEnum : ActionWithAllTypesOfInputsBindingV1 .BahEnum ? = null ,
122
122
/* *
123
123
* <required> Enum with custom naming
124
124
*/
@@ -142,15 +142,15 @@ public data class ActionWithAllTypesOfInputs private constructor(
142
142
/* *
143
143
* List of enums
144
144
*/
145
- public val listEnums : List <ActionWithAllTypesOfInputs .MyEnum >? = null ,
145
+ public val listEnums : List <ActionWithAllTypesOfInputsBindingV1 .MyEnum >? = null ,
146
146
/* *
147
147
* List of enums
148
148
*/
149
149
public val listEnums_Untyped : String? = null ,
150
150
/* *
151
151
* List of integer with special values
152
152
*/
153
- public val listIntSpecial : List <ActionWithAllTypesOfInputs .MyInt >? = null ,
153
+ public val listIntSpecial : List <ActionWithAllTypesOfInputsBindingV1 .MyInt >? = null ,
154
154
/* *
155
155
* List of integer with special values
156
156
*/
@@ -163,7 +163,7 @@ public data class ActionWithAllTypesOfInputs private constructor(
163
163
* 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
164
164
*/
165
165
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" ) {
167
167
init {
168
168
require(! ((fooBar != null ) && (fooBar_Untyped != null ))) {
169
169
" Only fooBar or fooBar_Untyped must be set, but not both"
@@ -247,19 +247,19 @@ public data class ActionWithAllTypesOfInputs private constructor(
247
247
intPint_Untyped: String? = null ,
248
248
floPint: Float? = null ,
249
249
floPint_Untyped: String? = null ,
250
- finBin: ActionWithAllTypesOfInputs .Bin ? = null ,
250
+ finBin: ActionWithAllTypesOfInputsBindingV1 .Bin ? = null ,
251
251
finBin_Untyped: String? = null ,
252
- gooZen: ActionWithAllTypesOfInputs .Zen ? = null ,
252
+ gooZen: ActionWithAllTypesOfInputsBindingV1 .Zen ? = null ,
253
253
gooZen_Untyped: String? = null ,
254
- bahEnum: ActionWithAllTypesOfInputs .BahEnum ? = null ,
254
+ bahEnum: ActionWithAllTypesOfInputsBindingV1 .BahEnum ? = null ,
255
255
bahEnum_Untyped: String? = null ,
256
256
listStrings: List <String >? = null ,
257
257
listStrings_Untyped: String? = null ,
258
258
listInts: List <Int >? = null ,
259
259
listInts_Untyped: String? = null ,
260
- listEnums: List <ActionWithAllTypesOfInputs .MyEnum >? = null ,
260
+ listEnums: List <ActionWithAllTypesOfInputsBindingV1 .MyEnum >? = null ,
261
261
listEnums_Untyped: String? = null ,
262
- listIntSpecial: List <ActionWithAllTypesOfInputs .MyInt >? = null ,
262
+ listIntSpecial: List <ActionWithAllTypesOfInputsBindingV1 .MyInt >? = null ,
263
263
listIntSpecial_Untyped: String? = null ,
264
264
_customInputs : Map <String , String > = mapOf (),
265
265
_customVersion : String? = null ,
@@ -301,61 +301,61 @@ public data class ActionWithAllTypesOfInputs private constructor(
301
301
public sealed class Bin (
302
302
public val stringValue : String ,
303
303
) {
304
- public object Foo : ActionWithAllTypesOfInputs .Bin(" foo" )
304
+ public object Foo : ActionWithAllTypesOfInputsBindingV1 .Bin(" foo" )
305
305
306
- public object BooBar : ActionWithAllTypesOfInputs .Bin(" boo-bar" )
306
+ public object BooBar : ActionWithAllTypesOfInputsBindingV1 .Bin(" boo-bar" )
307
307
308
- public object Baz123 : ActionWithAllTypesOfInputs .Bin(" baz123" )
308
+ public object Baz123 : ActionWithAllTypesOfInputsBindingV1 .Bin(" baz123" )
309
309
310
310
public class Custom (
311
311
customStringValue : String ,
312
- ) : ActionWithAllTypesOfInputs .Bin(customStringValue)
312
+ ) : ActionWithAllTypesOfInputsBindingV1 .Bin(customStringValue)
313
313
}
314
314
315
315
public sealed class Zen (
316
316
public val integerValue : Int ,
317
317
) {
318
318
public class Value (
319
319
requestedValue : Int ,
320
- ) : ActionWithAllTypesOfInputs .Zen(requestedValue)
320
+ ) : ActionWithAllTypesOfInputsBindingV1 .Zen(requestedValue)
321
321
322
- public object Special1 : ActionWithAllTypesOfInputs .Zen(3 )
322
+ public object Special1 : ActionWithAllTypesOfInputsBindingV1 .Zen(3 )
323
323
324
- public object Special2 : ActionWithAllTypesOfInputs .Zen(-1 )
324
+ public object Special2 : ActionWithAllTypesOfInputsBindingV1 .Zen(-1 )
325
325
}
326
326
327
327
public sealed class BahEnum (
328
328
public val stringValue : String ,
329
329
) {
330
- public object HelloWorld : ActionWithAllTypesOfInputs .BahEnum(" helloworld" )
330
+ public object HelloWorld : ActionWithAllTypesOfInputsBindingV1 .BahEnum(" helloworld" )
331
331
332
332
public class Custom (
333
333
customStringValue : String ,
334
- ) : ActionWithAllTypesOfInputs .BahEnum(customStringValue)
334
+ ) : ActionWithAllTypesOfInputsBindingV1 .BahEnum(customStringValue)
335
335
}
336
336
337
337
public sealed class MyEnum (
338
338
public val stringValue : String ,
339
339
) {
340
- public object One : ActionWithAllTypesOfInputs .MyEnum(" one" )
340
+ public object One : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" one" )
341
341
342
- public object Two : ActionWithAllTypesOfInputs .MyEnum(" two" )
342
+ public object Two : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" two" )
343
343
344
- public object Three : ActionWithAllTypesOfInputs .MyEnum(" three" )
344
+ public object Three : ActionWithAllTypesOfInputsBindingV1 .MyEnum(" three" )
345
345
346
346
public class Custom (
347
347
customStringValue : String ,
348
- ) : ActionWithAllTypesOfInputs .MyEnum(customStringValue)
348
+ ) : ActionWithAllTypesOfInputsBindingV1 .MyEnum(customStringValue)
349
349
}
350
350
351
351
public sealed class MyInt (
352
352
public val integerValue : Int ,
353
353
) {
354
354
public class Value (
355
355
requestedValue : Int ,
356
- ) : ActionWithAllTypesOfInputs .MyInt(requestedValue)
356
+ ) : ActionWithAllTypesOfInputsBindingV1 .MyInt(requestedValue)
357
357
358
- public object TheAnswer : ActionWithAllTypesOfInputs .MyInt(42 )
358
+ public object TheAnswer : ActionWithAllTypesOfInputsBindingV1 .MyInt(42 )
359
359
}
360
360
361
361
public class Outputs (
0 commit comments