Class: Crawlberg::CookieInfo
- Inherits:
-
Object
- Object
- Crawlberg::CookieInfo
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#domain ⇒ String?
Returns the value of attribute domain.
-
#name ⇒ String?
Returns the value of attribute name.
-
#path ⇒ String?
Returns the value of attribute path.
-
#value ⇒ String?
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize ⇒ CookieInfo
constructor
A new instance of CookieInfo.
Constructor Details
#initialize ⇒ CookieInfo
Returns a new instance of CookieInfo.
291 |
# File 'sig/types.rbs', line 291
def initialize: (?name: String, ?value: String, ?domain: String, ?path: String) -> void
|
Instance Attribute Details
#domain ⇒ String?
Returns the value of attribute domain.
288 289 290 |
# File 'sig/types.rbs', line 288 def domain @domain end |
#name ⇒ String?
Returns the value of attribute name.
286 287 288 |
# File 'sig/types.rbs', line 286 def name @name end |
#path ⇒ String?
Returns the value of attribute path.
289 290 291 |
# File 'sig/types.rbs', line 289 def path @path end |
#value ⇒ String?
Returns the value of attribute value.
287 288 289 |
# File 'sig/types.rbs', line 287 def value @value end |