Class: Puppeteer::NetworkManager::RedirectInfo
- Inherits:
-
Object
- Object
- Puppeteer::NetworkManager::RedirectInfo
- Defined in:
- lib/puppeteer/network_manager.rb
Instance Attribute Summary collapse
-
#event ⇒ Object
readonly
Returns the value of attribute event.
-
#fetch_request_id ⇒ Object
readonly
Returns the value of attribute fetch_request_id.
Instance Method Summary collapse
-
#initialize(event:, fetch_request_id:) ⇒ RedirectInfo
constructor
A new instance of RedirectInfo.
Constructor Details
#initialize(event:, fetch_request_id:) ⇒ RedirectInfo
Returns a new instance of RedirectInfo.
71 72 73 74 |
# File 'lib/puppeteer/network_manager.rb', line 71 def initialize(event:, fetch_request_id:) @event = event @fetch_request_id = fetch_request_id end |
Instance Attribute Details
#event ⇒ Object (readonly)
Returns the value of attribute event.
75 76 77 |
# File 'lib/puppeteer/network_manager.rb', line 75 def event @event end |
#fetch_request_id ⇒ Object (readonly)
Returns the value of attribute fetch_request_id.
75 76 77 |
# File 'lib/puppeteer/network_manager.rb', line 75 def fetch_request_id @fetch_request_id end |