Class: E2B::Models::WriteInfo
- Inherits:
-
Object
- Object
- E2B::Models::WriteInfo
- Defined in:
- lib/e2b/models/entry_info.rb
Overview
Information about a file write operation
Returned after writing a file to confirm the path that was written.
Instance Attribute Summary collapse
-
#path ⇒ String
readonly
Path of the written file.
Instance Method Summary collapse
-
#initialize(path:) ⇒ WriteInfo
constructor
A new instance of WriteInfo.
Constructor Details
#initialize(path:) ⇒ WriteInfo
Returns a new instance of WriteInfo.
238 239 240 |
# File 'lib/e2b/models/entry_info.rb', line 238 def initialize(path:) @path = path end |
Instance Attribute Details
#path ⇒ String (readonly)
Returns Path of the written file.
235 236 237 |
# File 'lib/e2b/models/entry_info.rb', line 235 def path @path end |