Class: Applitools::SessionStartInfo
- Inherits:
-
Object
- Object
- Applitools::SessionStartInfo
show all
- Includes:
- Jsonable
- Defined in:
- lib/applitools/core/session_start_info.rb
Instance Method Summary
collapse
Methods included from Jsonable
included, #json, #json_data
Constructor Details
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'lib/applitools/core/session_start_info.rb', line 14
def initialize(options = {})
self.agent_id = options[:agent_id]
self.app_id_or_name = options[:app_id_or_name]
self.ver_id = options[:ver_id]
self.scenario_id_or_name = options[:scenario_id_or_name]
self.batch_info = options[:batch_info]
self.environment_name = options[:environment_name]
self.baseline_env_name = options[:baseline_env_name]
self.environment = options[:environment]
self.default_match_settings = options[:default_match_settings]
self.branch_name = options[:branch_name]
self.parent_branch_name = options[:parent_branch_name]
self.properties = options[:properties]
self.compare_with_parent_branch = options[:compare_with_parent_branch]
self.save_diffs = options[:save_diffs]
self.session_type = options[:session_type]
self.baseline_branch_name = options[:baseline_branch_name]
end
|
Instance Method Details
#to_hash ⇒ Object
33
34
35
|
# File 'lib/applitools/core/session_start_info.rb', line 33
def to_hash
json_data
end
|