companions.proto 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.video.stitcher.v1;
  16. import "google/cloud/video/stitcher/v1/events.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/cloud/video/stitcher/v1;stitcher";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "CompanionsProto";
  20. option java_package = "com.google.cloud.video.stitcher.v1";
  21. // Metadata for companion ads.
  22. message CompanionAds {
  23. // Indicates how many of the companions should be displayed with the ad.
  24. enum DisplayRequirement {
  25. // Required companions are not specified. The default is ALL.
  26. DISPLAY_REQUIREMENT_UNSPECIFIED = 0;
  27. // All companions are required to be displayed.
  28. ALL = 1;
  29. // At least one of companions needs to be displayed.
  30. ANY = 2;
  31. // All companions are optional for display.
  32. NONE = 3;
  33. }
  34. // Indicates how many of the companions should be displayed with the ad.
  35. DisplayRequirement display_requirement = 1;
  36. // List of companion ads.
  37. repeated Companion companions = 2;
  38. }
  39. // Metadata for a companion.
  40. message Companion {
  41. // Ad resource associated with the companion ad.
  42. oneof ad_resource {
  43. // The IFrame ad resource associated with the companion ad.
  44. IframeAdResource iframe_ad_resource = 10;
  45. // The static ad resource associated with the companion ad.
  46. StaticAdResource static_ad_resource = 11;
  47. // The HTML ad resource associated with the companion ad.
  48. HtmlAdResource html_ad_resource = 12;
  49. }
  50. // The API necessary to communicate with the creative if available.
  51. string api_framework = 1;
  52. // The pixel height of the placement slot for the intended creative.
  53. int32 height_px = 2;
  54. // The pixel width of the placement slot for the intended creative.
  55. int32 width_px = 3;
  56. // The pixel height of the creative.
  57. int32 asset_height_px = 4;
  58. // The maximum pixel height of the creative in its expanded state.
  59. int32 expanded_height_px = 5;
  60. // The pixel width of the creative.
  61. int32 asset_width_px = 6;
  62. // The maximum pixel width of the creative in its expanded state.
  63. int32 expanded_width_px = 7;
  64. // The ID used to identify the desired placement on a publisher's page.
  65. // Values to be used should be discussed between publishers and
  66. // advertisers.
  67. string ad_slot_id = 8;
  68. // The list of tracking events for the companion.
  69. repeated Event events = 9;
  70. }
  71. // Metadata for an HTML ad resource.
  72. message HtmlAdResource {
  73. // The HTML to display for the ad resource.
  74. string html_source = 1;
  75. }
  76. // Metadata for an IFrame ad resource.
  77. message IframeAdResource {
  78. // URI source for an IFrame to display for the ad resource.
  79. string uri = 1;
  80. }
  81. // Metadata for a static ad resource.
  82. message StaticAdResource {
  83. // URI to the static file for the ad resource.
  84. string uri = 1;
  85. // Describes the MIME type of the ad resource.
  86. string creative_type = 2;
  87. }