mirror of
https://github.com/FlipsideCrypto/databricks-sdk-golang.git
synced 2026-02-06 10:57:34 +00:00
8 lines
339 B
Go
8 lines
339 B
Go
package models
|
|
|
|
type RunState struct {
|
|
LifeCycleState *RunLifeCycleState `json:"life_cycle_state,omitempty" url:"life_cycle_state,omitempty"`
|
|
ResultState *RunResultState `json:"result_state,omitempty" url:"result_state,omitempty"`
|
|
StateMessage string `json:"state_message,omitempty" url:"state_message,omitempty"`
|
|
}
|