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