class HAR::Browser
- HAR::Browser
- Reference
- Object
Overview
Creator
and Browser
objects share the same structure.
Included Modules
- JSON::Serializable
Defined in:
har/browser.crConstructors
- .new(pull : JSON::PullParser)
- .new(name : String = "Crystal HAR", version : String = HAR::VERSION, comment : Nil | String = nil)
Instance Method Summary
-
#comment : String | Nil
A comment provided by the user or the application.
-
#comment=(comment : String | Nil)
A comment provided by the user or the application.
-
#name : String
Name of the application/browser used to export the log.
-
#name=(name : String)
Name of the application/browser used to export the log.
-
#version : String
Version of the application/browser used to export the log.
-
#version=(version : String)
Version of the application/browser used to export the log.
Constructor Detail
def self.new(name : String = "Crystal HAR", version : String = HAR::VERSION, comment : Nil | String = nil)
#