ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.529.1

This commit is contained in:
speakeasybot
2025-04-07 00:10:08 +00:00
parent 2d3d3206a4
commit 1be9c77a05
852 changed files with 9666 additions and 1368 deletions

View File

@@ -118,6 +118,45 @@ module PlexRubySDK
@writer = writer
@year = year
end
def ==(other)
return false unless other.is_a? self.class
return false unless @added_at == other.added_at
return false unless @art == other.art
return false unless @audience_rating == other.audience_rating
return false unless @audience_rating_image == other.audience_rating_image
return false unless @chapter_source == other.chapter_source
return false unless @content_rating == other.content_rating
return false unless @country == other.country
return false unless @director == other.director
return false unless @duration == other.duration
return false unless @genre == other.genre
return false unless @guid == other.guid
return false unless @key == other.key
return false unless @last_viewed_at == other.last_viewed_at
return false unless @library_section_id == other.library_section_id
return false unless @library_section_key == other.library_section_key
return false unless @library_section_title == other.library_section_title
return false unless @media == other.media
return false unless @originally_available_at == other.originally_available_at
return false unless @primary_extra_key == other.primary_extra_key
return false unless @rating == other.rating
return false unless @rating_image == other.rating_image
return false unless @rating_key == other.rating_key
return false unless @role == other.role
return false unless @skip_count == other.skip_count
return false unless @studio == other.studio
return false unless @summary == other.summary
return false unless @tagline == other.tagline
return false unless @thumb == other.thumb
return false unless @title == other.title
return false unless @type == other.type
return false unless @updated_at == other.updated_at
return false unless @view_count == other.view_count
return false unless @writer == other.writer
return false unless @year == other.year
true
end
end
end
end