Class: Google::Apis::DfareportingV3_4::SkippableSetting

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

Overview

Skippable Settings

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SkippableSetting

Returns a new instance of SkippableSetting.



11890
11891
11892
# File 'lib/google/apis/dfareporting_v3_4/classes.rb', line 11890

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

Instance Attribute Details

#kindString

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

Returns:

  • (String)


11872
11873
11874
# File 'lib/google/apis/dfareporting_v3_4/classes.rb', line 11872

def kind
  @kind
end

#progress_offsetGoogle::Apis::DfareportingV3_4::VideoOffset

Video Offset Corresponds to the JSON property progressOffset



11877
11878
11879
# File 'lib/google/apis/dfareporting_v3_4/classes.rb', line 11877

def progress_offset
  @progress_offset
end

#skip_offsetGoogle::Apis::DfareportingV3_4::VideoOffset

Video Offset Corresponds to the JSON property skipOffset



11882
11883
11884
# File 'lib/google/apis/dfareporting_v3_4/classes.rb', line 11882

def skip_offset
  @skip_offset
end

#skippableBoolean Also known as: skippable?

Whether the user can skip creatives served to this placement. Corresponds to the JSON property skippable

Returns:

  • (Boolean)


11887
11888
11889
# File 'lib/google/apis/dfareporting_v3_4/classes.rb', line 11887

def skippable
  @skippable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11895
11896
11897
11898
11899
11900
# File 'lib/google/apis/dfareporting_v3_4/classes.rb', line 11895

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