class Google::Apis::DfareportingV3_4::SiteVideoSettings

Video Settings

Attributes

companion_settings[RW]

Companion Settings Corresponds to the JSON property `companionSettings` @return [Google::Apis::DfareportingV3_4::SiteCompanionSetting]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “ dfareporting#siteVideoSettings”. Corresponds to the JSON property `kind` @return [String]

oba_enabled[RW]

Whether OBA icons are enabled for this placement. Corresponds to the JSON property `obaEnabled` @return [Boolean]

oba_enabled?[RW]

Whether OBA icons are enabled for this placement. Corresponds to the JSON property `obaEnabled` @return [Boolean]

oba_settings[RW]

Online Behavioral Advertiser icon. Corresponds to the JSON property `obaSettings` @return [Google::Apis::DfareportingV3_4::ObaIcon]

orientation[RW]

Orientation of a site template used for video. This will act as default for new placements created under this site. Corresponds to the JSON property `orientation` @return [String]

skippable_settings[RW]

Skippable Settings Corresponds to the JSON property `skippableSettings` @return [Google::Apis::DfareportingV3_4::SiteSkippableSetting]

transcode_settings[RW]

Transcode Settings Corresponds to the JSON property `transcodeSettings` @return [Google::Apis::DfareportingV3_4::SiteTranscodeSetting]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 11743
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_4/classes.rb, line 11748
def update!(**args)
  @companion_settings = args[:companion_settings] if args.key?(:companion_settings)
  @kind = args[:kind] if args.key?(:kind)
  @oba_enabled = args[:oba_enabled] if args.key?(:oba_enabled)
  @oba_settings = args[:oba_settings] if args.key?(:oba_settings)
  @orientation = args[:orientation] if args.key?(:orientation)
  @skippable_settings = args[:skippable_settings] if args.key?(:skippable_settings)
  @transcode_settings = args[:transcode_settings] if args.key?(:transcode_settings)
end