mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-10 09:03:02 +08:00
8 lines
341 B
Elixir
8 lines
341 B
Elixir
defmodule LivebookProto.AppDeploymentStatus do
|
|
use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.13.0"
|
|
|
|
field :id, 1, type: :string
|
|
field :deployment_group_id, 2, type: :string, json_name: "deploymentGroupId"
|
|
field :version, 3, type: :string
|
|
field :status, 4, type: LivebookProto.AppDeploymentStatusType, enum: true
|
|
end
|