class HAR::Param

Included Modules

Defined in:

har/param.cr

Constructors

Instance Method Summary

Constructor Detail

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

[View source]
def self.new(name : String, value : Nil | String = nil, file_name : Nil | String = nil, content_type : Nil | String = 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 content_type : String | Nil #

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

[View source]
def file_name : String | Nil #

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

[View source]
def name : String #

Name of a posted parameter.


[View source]
def name=(name : String) #

Name of a posted parameter.


[View source]
def value : String | Nil #

Value of a posted parameter or content of a posted file.


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

Value of a posted parameter or content of a posted file.


[View source]