Class: Google::Apis::YoutubePartnerV1::ReferenceConflictMatch
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubePartnerV1::ReferenceConflictMatch
 
- 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
- 
  
    
      #conflicting_reference_offset_ms  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Conflicting reference offset in milliseconds. 
- 
  
    
      #length_ms  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Match length in milliseconds. 
- 
  
    
      #original_reference_offset_ms  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Original reference offset in milliseconds. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The referenceConflictMatch's type. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ReferenceConflictMatch 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ReferenceConflictMatch. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReferenceConflictMatch
Returns a new instance of ReferenceConflictMatch
| 3271 3272 3273 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3271 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#conflicting_reference_offset_ms ⇒ Fixnum
Conflicting reference offset in milliseconds.
Corresponds to the JSON property conflicting_reference_offset_ms
| 3254 3255 3256 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3254 def conflicting_reference_offset_ms @conflicting_reference_offset_ms end | 
#length_ms ⇒ Fixnum
Match length in milliseconds.
Corresponds to the JSON property length_ms
| 3259 3260 3261 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3259 def length_ms @length_ms end | 
#original_reference_offset_ms ⇒ Fixnum
Original reference offset in milliseconds.
Corresponds to the JSON property original_reference_offset_ms
| 3264 3265 3266 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3264 def original_reference_offset_ms @original_reference_offset_ms end | 
#type ⇒ String
The referenceConflictMatch's type.
Corresponds to the JSON property type
| 3269 3270 3271 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3269 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3276 3277 3278 3279 3280 3281 | # File 'generated/google/apis/youtube_partner_v1/classes.rb', line 3276 def update!(**args) @conflicting_reference_offset_ms = args[:conflicting_reference_offset_ms] if args.key?(:conflicting_reference_offset_ms) @length_ms = args[:length_ms] if args.key?(:length_ms) @original_reference_offset_ms = args[:original_reference_offset_ms] if args.key?(:original_reference_offset_ms) @type = args[:type] if args.key?(:type) end |