Class: FastpixClient::Models::Operations::GetDrmConfigurationRequest
- Inherits:
-
Object
- Object
- FastpixClient::Models::Operations::GetDrmConfigurationRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/fastpix_client/models/operations/getdrmconfiguration_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(offset: 1, limit: 10) ⇒ GetDrmConfigurationRequest
constructor
A new instance of GetDrmConfigurationRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(offset: 1, limit: 10) ⇒ GetDrmConfigurationRequest
Returns a new instance of GetDrmConfigurationRequest.
21 22 23 24 |
# File 'lib/fastpix_client/models/operations/getdrmconfiguration_request.rb', line 21 def initialize(offset: 1, limit: 10) @offset = offset @limit = limit end |
Instance Method Details
#==(other) ⇒ Object
27 28 29 30 31 32 |
# File 'lib/fastpix_client/models/operations/getdrmconfiguration_request.rb', line 27 def ==(other) return false unless other.is_a? self.class return false unless @offset == other.offset return false unless @limit == other.limit true end |