github.com/status-im/status-go@v1.1.0/protocol/protobuf/url_data.proto (about) 1 syntax = "proto3"; 2 3 option go_package = "./;protobuf"; 4 package protobuf; 5 6 import "shard.proto"; 7 8 message Community { 9 string display_name = 1; 10 string description = 2; 11 uint32 members_count = 3; 12 string color = 4; 13 repeated uint32 tag_indices = 5; 14 } 15 16 message Channel { 17 string display_name = 1; 18 string description = 2; 19 string emoji = 3; 20 string color = 4; 21 Community community = 5; 22 string uuid = 6; 23 } 24 25 message User { 26 string display_name = 1; 27 string description = 2; 28 string color = 3; 29 } 30 31 message URLData { 32 // Community, Channel, or User 33 bytes content = 1; 34 Shard shard = 2; 35 }