Class: Google::Apis::DfareportingV4::VideoProcessingData

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/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.



14704
14705
14706
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 14704

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)


14697
14698
14699
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 14697

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)


14702
14703
14704
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 14702

def processing_state
  @processing_state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14709
14710
14711
14712
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 14709

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