123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- syntax = "proto3";
- package google.cloud.video.stitcher.v1;
- import "google/protobuf/duration.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/video/stitcher/v1;stitcher";
- option java_multiple_files = true;
- option java_outer_classname = "EventsProto";
- option java_package = "com.google.cloud.video.stitcher.v1";
- message Event {
-
- enum EventType {
-
- EVENT_TYPE_UNSPECIFIED = 0;
-
- CREATIVE_VIEW = 1;
-
- START = 2;
-
- BREAK_START = 3;
-
- BREAK_END = 4;
-
- IMPRESSION = 5;
-
- FIRST_QUARTILE = 6;
-
- MIDPOINT = 7;
-
- THIRD_QUARTILE = 8;
-
- COMPLETE = 9;
-
- PROGRESS = 10;
-
- MUTE = 11;
-
- UNMUTE = 12;
-
- PAUSE = 13;
-
- CLICK = 14;
-
- CLICK_THROUGH = 15;
-
- REWIND = 16;
-
- RESUME = 17;
-
- ERROR = 18;
-
- EXPAND = 21;
-
- COLLAPSE = 22;
-
- CLOSE = 24;
-
- CLOSE_LINEAR = 25;
-
- SKIP = 26;
-
- ACCEPT_INVITATION = 27;
- }
-
- EventType type = 1;
-
- string uri = 2;
-
- string id = 3;
-
- google.protobuf.Duration offset = 4;
- }
- message ProgressEvent {
-
-
- google.protobuf.Duration time_offset = 1;
-
-
-
-
- repeated Event events = 2;
- }
|