Method: Megam::Billings#initialize

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

#initialize(email = nil, api_key = nil, host = nil) ⇒ Billings

Returns a new instance of Billings.



19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/megam/core/billings.rb', line 19

def initialize(email=nil, api_key=nil, host=nil)
  @id = nil
  @accounts_id = nil
  @line1 = nil
  @line2 = nil
  @country_code = nil
  @postal_code=nil
  @state=nil
  @phone = nil
  @bill_type = nil
  @created_at = nil
  @some_msg = {}
  super(email, api_key, host)
end