Class: PlexRubySDK::Models::Operations::Billing

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/plex_ruby_sdk/models/operations/billing.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(internal_payment_method: nil, payment_method_id: nil) ⇒ Billing

Returns a new instance of Billing.



26
27
28
29
# File 'lib/plex_ruby_sdk/models/operations/billing.rb', line 26

def initialize(internal_payment_method: nil, payment_method_id: nil)
  @internal_payment_method = internal_payment_method
  @payment_method_id = payment_method_id
end

Instance Method Details

#==(other) ⇒ Object



31
32
33
34
35
36
# File 'lib/plex_ruby_sdk/models/operations/billing.rb', line 31

def ==(other)
  return false unless other.is_a? self.class
  return false unless @internal_payment_method == other.internal_payment_method
  return false unless @payment_method_id == other.payment_method_id
  true
end