Class: Pageflow::ZencoderOutputDefinition Private
- Inherits:
-
Object
- Object
- Pageflow::ZencoderOutputDefinition
- Defined in:
- lib/pageflow/zencoder_output_definition.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Direct Known Subclasses
ZencoderAudioOutputDefinition, ZencoderMetaDataOutputDefinition, ZencoderVideoOutputDefinition
Instance Attribute Summary collapse
- #options ⇒ Object private
Instance Method Summary collapse
- #==(other) ⇒ Object (also: #eql?) private
-
#initialize(options) ⇒ ZencoderOutputDefinition
constructor
private
A new instance of ZencoderOutputDefinition.
- #input_s3_url ⇒ Object private
- #outputs ⇒ Object private
Constructor Details
#initialize(options) ⇒ ZencoderOutputDefinition
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of ZencoderOutputDefinition.
9 10 11 |
# File 'lib/pageflow/zencoder_output_definition.rb', line 9 def initialize() @options = end |
Instance Attribute Details
#options ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
7 8 9 |
# File 'lib/pageflow/zencoder_output_definition.rb', line 7 def @options end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
21 22 23 24 25 |
# File 'lib/pageflow/zencoder_output_definition.rb', line 21 def ==(other) other.class == self.class && other.input_s3_url == input_s3_url && other.outputs == outputs end |
#input_s3_url ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
13 14 15 |
# File 'lib/pageflow/zencoder_output_definition.rb', line 13 def input_s3_url raise 'Not implemented' end |
#outputs ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
17 18 19 |
# File 'lib/pageflow/zencoder_output_definition.rb', line 17 def outputs raise 'Not implemented' end |