Class: Daytona::SessionCommandLogsResponse
- Inherits:
-
Object
- Object
- Daytona::SessionCommandLogsResponse
- Defined in:
- lib/daytona/common/process.rb
Instance Attribute Summary collapse
-
#output ⇒ String?
readonly
The combined output from the command.
-
#stderr ⇒ String?
readonly
The stderr from the command.
-
#stdout ⇒ String?
readonly
The stdout from the command.
Instance Method Summary collapse
-
#initialize(output: nil, stdout: nil, stderr: nil) ⇒ SessionCommandLogsResponse
constructor
Initialize a new SessionCommandLogsResponse.
Constructor Details
#initialize(output: nil, stdout: nil, stderr: nil) ⇒ SessionCommandLogsResponse
Initialize a new SessionCommandLogsResponse
140 141 142 143 144 |
# File 'lib/daytona/common/process.rb', line 140 def initialize(output: nil, stdout: nil, stderr: nil) @output = output @stdout = stdout @stderr = stderr end |
Instance Attribute Details
#output ⇒ String? (readonly)
Returns The combined output from the command.
127 128 129 |
# File 'lib/daytona/common/process.rb', line 127 def output @output end |
#stderr ⇒ String? (readonly)
Returns The stderr from the command.
133 134 135 |
# File 'lib/daytona/common/process.rb', line 133 def stderr @stderr end |
#stdout ⇒ String? (readonly)
Returns The stdout from the command.
130 131 132 |
# File 'lib/daytona/common/process.rb', line 130 def stdout @stdout end |