Class: Google::Apis::DfareportingV5::VideoProcessingData
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV5::VideoProcessingData
- 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
-
#error_reason ⇒ String
For a FAILED processing state, the error reason discovered.
-
#processing_state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VideoProcessingData
constructor
A new instance of VideoProcessingData.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VideoProcessingData
Returns a new instance of VideoProcessingData.
13837 13838 13839 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13837 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_reason ⇒ String
For a FAILED processing state, the error reason discovered.
Corresponds to the JSON property errorReason
13830 13831 13832 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13830 def error_reason @error_reason end |
#processing_state ⇒ String
Output only. The processing state of the studio creative asset.
Corresponds to the JSON property processingState
13835 13836 13837 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13835 def processing_state @processing_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13842 13843 13844 13845 |
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13842 def update!(**args) @error_reason = args[:error_reason] if args.key?(:error_reason) @processing_state = args[:processing_state] if args.key?(:processing_state) end |