toggle menu
kotlin-jupyter-kernel
0.12.0-335
jvm
switch theme
search in API
shared-compiler
/
org.jetbrains.kotlinx.jupyter.messaging
/
ExecuteRequest
Execute
Request
@
Serializable
data
class
ExecuteRequest
(
val
code
:
String
,
val
silent
:
Boolean
=
false
,
val
storeHistory
:
Boolean
=
true
,
val
userExpressions
:
Map
<
String
,
String
>
=
mapOf()
,
val
userVariables
:
List
<
String
>
=
listOf()
,
val
allowStdin
:
Boolean
=
true
,
val
stopOnError
:
Boolean
=
true
)
:
AbstractMessageContent
Members
Constructors
Execute
Request
Link copied to clipboard
constructor
(
code
:
String
,
silent
:
Boolean
=
false
,
storeHistory
:
Boolean
=
true
,
userExpressions
:
Map
<
String
,
String
>
=
mapOf()
,
userVariables
:
List
<
String
>
=
listOf()
,
allowStdin
:
Boolean
=
true
,
stopOnError
:
Boolean
=
true
)
Properties
allow
Stdin
Link copied to clipboard
@
SerialName
(
value
=
"allow_stdin"
)
val
allowStdin
:
Boolean
=
true
code
Link copied to clipboard
val
code
:
String
silent
Link copied to clipboard
val
silent
:
Boolean
=
false
stop
On
Error
Link copied to clipboard
@
SerialName
(
value
=
"stop_on_error"
)
val
stopOnError
:
Boolean
=
true
store
History
Link copied to clipboard
@
SerialName
(
value
=
"store_history"
)
val
storeHistory
:
Boolean
=
true
user
Expressions
Link copied to clipboard
@
SerialName
(
value
=
"user_expressions"
)
val
userExpressions
:
Map
<
String
,
String
>
user
Variables
Link copied to clipboard
@
SerialName
(
value
=
"user_variables"
)
val
userVariables
:
List
<
String
>