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.
300 |
# File 'sig/types.rbs', line 300
def initialize: (?name: String, ?value: String, ?domain: String, ?path: String) -> void
|
Instance Attribute Details
#domain ⇒ String?
Returns the value of attribute domain.
297 298 299 |
# File 'sig/types.rbs', line 297 def domain @domain end |
#name ⇒ String?
Returns the value of attribute name.
295 296 297 |
# File 'sig/types.rbs', line 295 def name @name end |
#path ⇒ String?
Returns the value of attribute path.
298 299 300 |
# File 'sig/types.rbs', line 298 def path @path end |
#value ⇒ String?
Returns the value of attribute value.
296 297 298 |
# File 'sig/types.rbs', line 296 def value @value end |