Class: Google::Apis::DfareportingV5::VideoProcessingData

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

Overview

Contains processing data for a video asset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VideoProcessingData

Returns a new instance of VideoProcessingData.



14013
14014
14015
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 14013

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

Instance Attribute Details

#error_reasonString

For a FAILED processing state, the error reason discovered. Corresponds to the JSON property errorReason

Returns:

  • (String)


14006
14007
14008
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 14006

def error_reason
  @error_reason
end

#processing_stateString

Output only. The processing state of the studio creative asset. Corresponds to the JSON property processingState

Returns:

  • (String)


14011
14012
14013
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 14011

def processing_state
  @processing_state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14018
14019
14020
14021
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 14018

def update!(**args)
  @error_reason = args[:error_reason] if args.key?(:error_reason)
  @processing_state = args[:processing_state] if args.key?(:processing_state)
end