123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- syntax = "proto3";
- package google.cloud.video.stitcher.v1;
- import "google/cloud/video/stitcher/v1/events.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/video/stitcher/v1;stitcher";
- option java_multiple_files = true;
- option java_outer_classname = "CompanionsProto";
- option java_package = "com.google.cloud.video.stitcher.v1";
- message CompanionAds {
-
- enum DisplayRequirement {
-
- DISPLAY_REQUIREMENT_UNSPECIFIED = 0;
-
- ALL = 1;
-
- ANY = 2;
-
- NONE = 3;
- }
-
- DisplayRequirement display_requirement = 1;
-
- repeated Companion companions = 2;
- }
- message Companion {
-
- oneof ad_resource {
-
- IframeAdResource iframe_ad_resource = 10;
-
- StaticAdResource static_ad_resource = 11;
-
- HtmlAdResource html_ad_resource = 12;
- }
-
- string api_framework = 1;
-
- int32 height_px = 2;
-
- int32 width_px = 3;
-
- int32 asset_height_px = 4;
-
- int32 expanded_height_px = 5;
-
- int32 asset_width_px = 6;
-
- int32 expanded_width_px = 7;
-
-
-
- string ad_slot_id = 8;
-
- repeated Event events = 9;
- }
- message HtmlAdResource {
-
- string html_source = 1;
- }
- message IframeAdResource {
-
- string uri = 1;
- }
- message StaticAdResource {
-
- string uri = 1;
-
- string creative_type = 2;
- }
|