more changes
This commit is contained in:
parent
4223fd24b4
commit
69807aaae5
4 changed files with 12 additions and 11 deletions
|
@ -4,4 +4,8 @@ package pb;
|
|||
|
||||
message Channel {
|
||||
bytes public_key = 1;
|
||||
string name = 2;
|
||||
string description = 3;
|
||||
string thumbnail_url = 4; // url or claim ID?
|
||||
string cover_url = 5; // url or claim ID?
|
||||
}
|
||||
|
|
|
@ -7,9 +7,8 @@ import "channel.proto";
|
|||
|
||||
message Claim {
|
||||
enum Type {
|
||||
UNKNOWN = 0;
|
||||
STREAM = 1;
|
||||
CHANNEL = 2;
|
||||
STREAM = 0;
|
||||
CHANNEL = 1;
|
||||
}
|
||||
|
||||
Type type = 1; // do we need this?
|
||||
|
|
|
@ -4,10 +4,9 @@ package pb;
|
|||
|
||||
message Fee {
|
||||
enum Currency {
|
||||
UNKNOWN = 0;
|
||||
LBC = 1;
|
||||
BTC = 2;
|
||||
USD = 3;
|
||||
LBC = 0;
|
||||
BTC = 1;
|
||||
USD = 2;
|
||||
}
|
||||
|
||||
Currency currency = 1;
|
||||
|
|
|
@ -17,8 +17,7 @@ message Stream {
|
|||
|
||||
Fee fee = 16;
|
||||
string license_url = 17;
|
||||
string thumbnail = 18;
|
||||
string preview = 19;
|
||||
bool nsfw = 20;
|
||||
uint32 duration = 21;
|
||||
string thumbnail_url = 18;
|
||||
uint32 duration = 19;
|
||||
repeated string tags = 20;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue