Class: Orchestrate::Application::SchemaEventType

Inherits:
Object
  • Object
show all
Defined in:
lib/orchestrate_application/schema_collection.rb

Overview

Schema support object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(event_type, properties) ⇒ SchemaEventType

Returns a new instance of SchemaEventType.



39
40
41
# File 'lib/orchestrate_application/schema_collection.rb', line 39

def initialize(event_type, properties)
  @name, @properties = event_type, properties
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



38
39
40
# File 'lib/orchestrate_application/schema_collection.rb', line 38

def name
  @name
end

#propertiesObject (readonly)

Returns the value of attribute properties.



38
39
40
# File 'lib/orchestrate_application/schema_collection.rb', line 38

def properties
  @properties
end