mirror of
				https://github.com/livebook-dev/livebook.git
				synced 2025-11-01 00:06:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			573 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			573 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
| defmodule LivebookProto.AppDeploymentCreated do
 | |
|   use Protobuf, syntax: :proto3, protoc_gen_elixir_version: "0.12.0"
 | |
| 
 | |
|   field :id, 1, type: :string
 | |
|   field :title, 2, type: :string
 | |
|   field :sha, 3, type: :string
 | |
|   field :archive_url, 4, type: :string, json_name: "archiveUrl"
 | |
|   field :app_id, 5, type: :string, json_name: "appId"
 | |
|   field :slug, 6, type: :string
 | |
|   field :deployment_group_id, 7, type: :string, json_name: "deploymentGroupId"
 | |
|   field :deployed_by, 8, type: :string, json_name: "deployedBy"
 | |
|   field :deployed_at, 9, type: :string, json_name: "deployedAt"
 | |
| end
 |