Class: PlexRubySDK::Models::Operations::GetGlobalHubsRequest
- Inherits:
-
Object
- Object
- PlexRubySDK::Models::Operations::GetGlobalHubsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/plex_ruby_sdk/models/operations/getglobalhubs_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(count: nil, only_transient: nil) ⇒ GetGlobalHubsRequest
constructor
A new instance of GetGlobalHubsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(count: nil, only_transient: nil) ⇒ GetGlobalHubsRequest
Returns a new instance of GetGlobalHubsRequest.
23 24 25 26 |
# File 'lib/plex_ruby_sdk/models/operations/getglobalhubs_request.rb', line 23 def initialize(count: nil, only_transient: nil) @count = count @only_transient = only_transient end |
Instance Method Details
#==(other) ⇒ Object
28 29 30 31 32 33 |
# File 'lib/plex_ruby_sdk/models/operations/getglobalhubs_request.rb', line 28 def ==(other) return false unless other.is_a? self.class return false unless @count == other.count return false unless @only_transient == other.only_transient true end |