Channel.proto 699 B

12345678910111213141516171819202122232425262728
  1. syntax = "proto2";
  2. message ChannelMetadata {
  3. // Channel Title
  4. optional string title = 1;
  5. // Channel Description
  6. optional string description = 2;
  7. // Wether to display channel to the public
  8. optional bool is_public = 3;
  9. // ISO_639-1 Language [Code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)
  10. optional string language = 4;
  11. // index into external [assets array](#.Assets)
  12. optional uint32 cover_photo = 5;
  13. // index into external [assets array](#.Assets)
  14. optional uint32 avatar_photo = 6;
  15. // Channel Category Id
  16. optional uint64 category = 7;
  17. }
  18. message ChannelCategoryMetadata {
  19. // Category Name
  20. optional string name = 1;
  21. }