Class: Google::Apis::YoutubePartnerV1::ExcludedInterval

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ExcludedInterval

Returns a new instance of ExcludedInterval.



1777
1778
1779
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1777

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

Instance Attribute Details

#highFloat

The end (inclusive) time in seconds of the time window. The value can be any value greater than low. If high is greater than the length of the reference, the interval between low and the end of the reference will be excluded. Every interval must specify a value for this field. Corresponds to the JSON property high

Returns:

  • (Float)


1758
1759
1760
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1758

def high
  @high
end

#lowFloat

The start (inclusive) time in seconds of the time window. The value can be any value between 0 and high. Every interval must specify a value for this field. Corresponds to the JSON property low

Returns:

  • (Float)


1764
1765
1766
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1764

def low
  @low
end

#originString

The source of the request to exclude the interval from Content ID matching. Corresponds to the JSON property origin

Returns:

  • (String)


1769
1770
1771
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1769

def origin
  @origin
end

#time_createdDateTime

The date and time that the exclusion was created. The value is specified in RFC 3339 (YYYY-MM-DDThh:mm:ss.000Z) format. Corresponds to the JSON property timeCreated

Returns:

  • (DateTime)


1775
1776
1777
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1775

def time_created
  @time_created
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1782
1783
1784
1785
1786
1787
# File 'generated/google/apis/youtube_partner_v1/classes.rb', line 1782

def update!(**args)
  @high = args[:high] if args.key?(:high)
  @low = args[:low] if args.key?(:low)
  @origin = args[:origin] if args.key?(:origin)
  @time_created = args[:time_created] if args.key?(:time_created)
end