Class: MrMurano::Module::ModuleItem
- Inherits:
-
Item
- Object
- Item
- MrMurano::Module::ModuleItem
- Defined in:
- lib/MrMurano/Solution-Services.rb
Overview
Module Specific details on an Item.
Instance Attribute Summary collapse
-
#alias ⇒ String
Internal Alias name.
-
#created_at ⇒ String
Timestamp when this item was created.
-
#solution_id ⇒ String
The application solution’s ID.
Instance Method Summary collapse
Instance Attribute Details
#alias ⇒ String
Returns Internal Alias name.
302 303 304 |
# File 'lib/MrMurano/Solution-Services.rb', line 302 def alias @alias end |
#created_at ⇒ String
Returns Timestamp when this item was created.
304 305 306 |
# File 'lib/MrMurano/Solution-Services.rb', line 304 def created_at @created_at end |
#solution_id ⇒ String
Returns The application solution’s ID.
306 307 308 |
# File 'lib/MrMurano/Solution-Services.rb', line 306 def solution_id @solution_id end |
Instance Method Details
#reject_ephemeral ⇒ Object
308 309 310 311 312 313 314 315 316 317 318 |
# File 'lib/MrMurano/Solution-Services.rb', line 308 def reject_ephemeral super.reject do |attr_key, _| [ # Writeable platform properties: # :alias, # :solution_id, # Read-only platform properties: :created_at, ].include? attr_key end end |