class HAR::Page

Included Modules

Defined in:

har/page.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
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) #

[View source]

Instance Method Detail

def comment : String | Nil #

A comment provided by the user or the application.


[View source]
def comment=(comment : String | Nil) #

A comment provided by the user or the application.


[View source]
def id : String | Nil #

Unique identifier of a page within the Log. Log#entries use it to refer to the parent page.


[View source]
def id=(id : String | Nil) #

Unique identifier of a page within the Log. Log#entries use it to refer to the parent page.


[View source]
def page_timings : PageTimings | Nil #

[View source]
def page_timings=(page_timings : PageTimings | Nil) #

[View source]
def started_date_time : Time | String | Nil #

[View source]
def started_date_time=(started_date_time : Time | String | Nil) #

[View source]
def title : String | Nil #

Page title.


[View source]
def title=(title : String | Nil) #

Page title.


[View source]