Class: Lutaml::Model::ImportRegistry::DeferredImport Private

Inherits:
Struct
  • Object
show all
Defined in:
lib/lutaml/model/import_registry.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Represents a single deferred import

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#methodObject

Returns the value of attribute method

Returns:

  • (Object)

    the current value of method



29
30
31
# File 'lib/lutaml/model/import_registry.rb', line 29

def method
  @method
end

#owner_classObject

Returns the value of attribute owner_class

Returns:

  • (Object)

    the current value of owner_class



29
30
31
# File 'lib/lutaml/model/import_registry.rb', line 29

def owner_class
  @owner_class
end

#resolvedObject

Returns the value of attribute resolved

Returns:

  • (Object)

    the current value of resolved



29
30
31
# File 'lib/lutaml/model/import_registry.rb', line 29

def resolved
  @resolved
end

#symbolObject

Returns the value of attribute symbol

Returns:

  • (Object)

    the current value of symbol



29
30
31
# File 'lib/lutaml/model/import_registry.rb', line 29

def symbol
  @symbol
end

Instance Method Details

#resolved?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


30
31
32
# File 'lib/lutaml/model/import_registry.rb', line 30

def resolved?
  resolved == true
end