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.



13837
13838
13839
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13837

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)


13830
13831
13832
# File 'lib/google/apis/dfareporting_v5/classes.rb', line 13830

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)


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