Class: NgrokAPI::Models::BrowserSession

Inherits:
Object
  • Object
show all
Defined in:
lib/ngrokapi/models/browser_session.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client: nil, attrs: {}) ⇒ BrowserSession

Returns a new instance of BrowserSession.



14
15
16
17
18
19
20
# File 'lib/ngrokapi/models/browser_session.rb', line 14

def initialize(client: nil, attrs: {})
  @client = client
  @attrs = attrs
  @user_agent = @attrs['user_agent']
  @ip_address = @attrs['ip_address']
  @location = @attrs['location']
end

Instance Attribute Details

#attrsObject (readonly)

Returns the value of attribute attrs.



8
9
10
# File 'lib/ngrokapi/models/browser_session.rb', line 8

def attrs
  @attrs
end

#clientObject (readonly)

Returns the value of attribute client.



8
9
10
# File 'lib/ngrokapi/models/browser_session.rb', line 8

def client
  @client
end

#ip_addressObject (readonly)

Returns the value of attribute ip_address.



8
9
10
# File 'lib/ngrokapi/models/browser_session.rb', line 8

def ip_address
  @ip_address
end

#locationObject (readonly)

Returns the value of attribute location.



8
9
10
# File 'lib/ngrokapi/models/browser_session.rb', line 8

def location
  @location
end

#user_agentObject (readonly)

Returns the value of attribute user_agent.



8
9
10
# File 'lib/ngrokapi/models/browser_session.rb', line 8

def user_agent
  @user_agent
end

Instance Method Details

#==(other) ⇒ Object



22
23
24
# File 'lib/ngrokapi/models/browser_session.rb', line 22

def ==(other)
  @attrs == other.attrs
end

#to_hObject



30
31
32
# File 'lib/ngrokapi/models/browser_session.rb', line 30

def to_h
  @attrs.to_h
end

#to_sObject



26
27
28
# File 'lib/ngrokapi/models/browser_session.rb', line 26

def to_s
  @attrs.to_s
end