Class: Google::Apis::DfareportingV3_5::SiteSkippableSetting

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v3_5/classes.rb,
lib/google/apis/dfareporting_v3_5/representations.rb,
lib/google/apis/dfareporting_v3_5/representations.rb

Overview

Skippable Settings

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SiteSkippableSetting

Returns a new instance of SiteSkippableSetting.



11322
11323
11324
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 11322

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#siteSkippableSetting". Corresponds to the JSON property kind

Returns:

  • (String)


11303
11304
11305
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 11303

def kind
  @kind
end

#progress_offsetGoogle::Apis::DfareportingV3_5::VideoOffset

Video Offset Corresponds to the JSON property progressOffset



11308
11309
11310
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 11308

def progress_offset
  @progress_offset
end

#skip_offsetGoogle::Apis::DfareportingV3_5::VideoOffset

Video Offset Corresponds to the JSON property skipOffset



11313
11314
11315
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 11313

def skip_offset
  @skip_offset
end

#skippableBoolean Also known as: skippable?

Whether the user can skip creatives served to this site. This will act as default for new placements created under this site. Corresponds to the JSON property skippable

Returns:

  • (Boolean)


11319
11320
11321
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 11319

def skippable
  @skippable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11327
11328
11329
11330
11331
11332
# File 'lib/google/apis/dfareporting_v3_5/classes.rb', line 11327

def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @progress_offset = args[:progress_offset] if args.key?(:progress_offset)
  @skip_offset = args[:skip_offset] if args.key?(:skip_offset)
  @skippable = args[:skippable] if args.key?(:skippable)
end