Class: Conductor::Http::Models::CreateOrUpdateApplicationRequest
- Inherits:
-
BaseModel
- Object
- BaseModel
- Conductor::Http::Models::CreateOrUpdateApplicationRequest
- Defined in:
- lib/conductor/http/models/create_or_update_application_request.rb
Overview
CreateOrUpdateApplicationRequest model - request to create or update an application
Constant Summary collapse
- SWAGGER_TYPES =
{ name: 'String' }.freeze
- ATTRIBUTE_MAP =
{ name: :name }.freeze
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(params = {}) ⇒ CreateOrUpdateApplicationRequest
constructor
A new instance of CreateOrUpdateApplicationRequest.
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 = {}) ⇒ CreateOrUpdateApplicationRequest
Returns a new instance of CreateOrUpdateApplicationRequest.
18 19 20 |
# File 'lib/conductor/http/models/create_or_update_application_request.rb', line 18 def initialize(params = {}) @name = params[:name] end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
16 17 18 |
# File 'lib/conductor/http/models/create_or_update_application_request.rb', line 16 def name @name end |