class HAR::Page
 
  - HAR::Page
- Reference
- Object
Included Modules
- JSON::Serializable
Defined in:
har/page.crConstructors
- .new(pull : JSON::PullParser)
- .new(started_date_time : String | Time | Nil = nil, id : Nil | String = nil, title : Nil | String = nil, page_timings : Nil | HAR::PageTimings = nil, 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. 
- 
        #id : String | Nil
        
          Unique identifier of a page within the Log.
- 
        #id=(id : String | Nil)
        
          Unique identifier of a page within the Log.
- #page_timings : PageTimings | Nil
- #page_timings=(page_timings : PageTimings | Nil)
- #started_date_time : Time | String | Nil
- #started_date_time=(started_date_time : Time | String | Nil)
- 
        #title : String | Nil
        
          Page title. 
- 
        #title=(title : String | Nil)
        
          Page title. 
Constructor Detail
        
        def self.new(started_date_time : String | Time | Nil = nil, id : Nil | String = nil, title : Nil | String = nil, page_timings : Nil | HAR::PageTimings = nil, comment : Nil | String = nil)
        #
      
      
      Instance Method Detail
        
        def id : String | Nil
        #
      
      
        Unique identifier of a page within the Log.
Log#entries use it to refer to the parent page.
        
        def id=(id : String | Nil)
        #
      
      
        Unique identifier of a page within the Log.
Log#entries use it to refer to the parent page.