Class: FastpixClient::Models::Operations::Configuration
- Inherits:
-
Object
- Object
- FastpixClient::Models::Operations::Configuration
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/fastpix_client/models/operations/configuration.rb
Overview
Represents configuration details for the media.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(url: nil) ⇒ Configuration
constructor
A new instance of Configuration.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(url: nil) ⇒ Configuration
Returns a new instance of Configuration.
20 21 22 |
# File 'lib/fastpix_client/models/operations/configuration.rb', line 20 def initialize(url: nil) @url = url end |
Instance Method Details
#==(other) ⇒ Object
25 26 27 28 29 |
# File 'lib/fastpix_client/models/operations/configuration.rb', line 25 def ==(other) return false unless other.is_a? self.class return false unless @url == other.url true end |