Class: Conductor::Http::Models::ConductorApplication
- Defined in:
- lib/conductor/http/models/conductor_application.rb
Overview
ConductorApplication model - represents an application in Conductor
Constant Summary collapse
- SWAGGER_TYPES =
{ id: 'String', name: 'String', created_by: 'String', create_time: 'Integer', update_time: 'Integer', updated_by: 'String' }.freeze
- ATTRIBUTE_MAP =
{ id: :id, name: :name, created_by: :createdBy, create_time: :createTime, update_time: :updateTime, updated_by: :updatedBy }.freeze
Instance Attribute Summary collapse
-
#create_time ⇒ Object
Returns the value of attribute create_time.
-
#created_by ⇒ Object
Returns the value of attribute created_by.
-
#id ⇒ Object
Returns the value of attribute id.
-
#name ⇒ Object
Returns the value of attribute name.
-
#update_time ⇒ Object
Returns the value of attribute update_time.
-
#updated_by ⇒ Object
Returns the value of attribute updated_by.
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ ConductorApplication
constructor
A new instance of ConductorApplication.
Methods inherited from BaseModel
attribute_map, deserialize_model, deserialize_value, find_model_class, from_hash, from_json, parse_datetime, swagger_types, #to_h, #to_json
Constructor Details
#initialize(params = {}) ⇒ ConductorApplication
Returns a new instance of ConductorApplication.
28 29 30 31 32 33 34 35 |
# File 'lib/conductor/http/models/conductor_application.rb', line 28 def initialize(params = {}) @id = params[:id] @name = params[:name] @created_by = params[:created_by] @create_time = params[:create_time] @update_time = params[:update_time] @updated_by = params[:updated_by] end |
Instance Attribute Details
#create_time ⇒ Object
Returns the value of attribute create_time.
26 27 28 |
# File 'lib/conductor/http/models/conductor_application.rb', line 26 def create_time @create_time end |
#created_by ⇒ Object
Returns the value of attribute created_by.
26 27 28 |
# File 'lib/conductor/http/models/conductor_application.rb', line 26 def created_by @created_by end |
#id ⇒ Object
Returns the value of attribute id.
26 27 28 |
# File 'lib/conductor/http/models/conductor_application.rb', line 26 def id @id end |
#name ⇒ Object
Returns the value of attribute name.
26 27 28 |
# File 'lib/conductor/http/models/conductor_application.rb', line 26 def name @name end |
#update_time ⇒ Object
Returns the value of attribute update_time.
26 27 28 |
# File 'lib/conductor/http/models/conductor_application.rb', line 26 def update_time @update_time end |
#updated_by ⇒ Object
Returns the value of attribute updated_by.
26 27 28 |
# File 'lib/conductor/http/models/conductor_application.rb', line 26 def updated_by @updated_by end |