Class: FastpixClient::Models::Components::MediaIdsRequest
- Inherits:
-
Object
- Object
- FastpixClient::Models::Components::MediaIdsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/fastpix_client/models/components/mediaidsrequest.rb
Overview
The list of mediaId(s) you want to perform the operation on.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(media_ids:) ⇒ MediaIdsRequest
constructor
A new instance of MediaIdsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(media_ids:) ⇒ MediaIdsRequest
Returns a new instance of MediaIdsRequest.
19 20 21 |
# File 'lib/fastpix_client/models/components/mediaidsrequest.rb', line 19 def initialize(media_ids:) @media_ids = media_ids end |
Instance Method Details
#==(other) ⇒ Object
24 25 26 27 28 |
# File 'lib/fastpix_client/models/components/mediaidsrequest.rb', line 24 def ==(other) return false unless other.is_a? self.class return false unless @media_ids == other.media_ids true end |