Method: Megam::Subscriptions#initialize

Defined in:
lib/megam/core/subscriptions.rb

#initialize(email = nil, api_key = nil) ⇒ Subscriptions

Returns a new instance of Subscriptions.



19
20
21
22
23
24
25
26
27
28
# File 'lib/megam/core/subscriptions.rb', line 19

def initialize(email=nil, api_key=nil)
  @id = nil
  @accounts_id = nil
  @assembly_id = nil
  @start_date = nil
  @end_date = nil
  @created_at = nil
  @some_msg = {}
  super(email, api_key)
end