Class: Crawlberg::CookieInfo
- Inherits:
-
Object
- Object
- Crawlberg::CookieInfo
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#domain ⇒ String?
readonly
Returns the value of attribute domain.
-
#name ⇒ String
readonly
Returns the value of attribute name.
-
#path ⇒ String?
readonly
Returns the value of attribute path.
-
#value ⇒ String
readonly
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.
136 |
# File 'sig/types.rbs', line 136
def initialize: (?name: String, ?value: String, ?domain: String, ?path: String) -> void
|
Instance Attribute Details
#domain ⇒ String? (readonly)
Returns the value of attribute domain.
133 134 135 |
# File 'sig/types.rbs', line 133 def domain @domain end |
#name ⇒ String (readonly)
Returns the value of attribute name.
131 132 133 |
# File 'sig/types.rbs', line 131 def name @name end |
#path ⇒ String? (readonly)
Returns the value of attribute path.
134 135 136 |
# File 'sig/types.rbs', line 134 def path @path end |
#value ⇒ String (readonly)
Returns the value of attribute value.
132 133 134 |
# File 'sig/types.rbs', line 132 def value @value end |