class InventoryRefresh::InventoryCollection::UnconnectedEdge
Attributes
inventory_object[R]
inventory_object_key[R]
inventory_object_lazy[R]
Public Class Methods
new(inventory_object, inventory_object_key, inventory_object_lazy)
click to toggle source
@param inventory_object
[InventoryRefresh::InventoryObject] InventoryObject
that couldn't connect the relation @param inventory_object_key
[String] Relation name that couldn't be connected @param inventory_object_lazy
[InventoryRefresh::InventoryObjectLazy] The lazy relation that failed to load
this can happen only for relations with key, or pointing to DB only relations
# File lib/inventory_refresh/inventory_collection/unconnected_edge.rb, line 12 def initialize(inventory_object, inventory_object_key, inventory_object_lazy) @inventory_object = inventory_object @inventory_object_key = inventory_object_key @inventory_object_lazy = inventory_object_lazy end