Class: Gpdb::REST::RecordingRequest::Model
- Defined in:
- lib/gpdb/rest/recording_request/model.rb
Instance Attribute Summary collapse
-
#application_context ⇒ Object
Returns the value of attribute application_context.
-
#recording_request_id ⇒ Object
Returns the value of attribute recording_request_id.
-
#target ⇒ Object
Returns the value of attribute target.
-
#target_owner_context ⇒ Object
Returns the value of attribute target_owner_context.
-
#target_type_sig ⇒ Object
Returns the value of attribute target_type_sig.
-
#user_context ⇒ Object
Returns the value of attribute user_context.
Attributes inherited from Model
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ Model
constructor
A new instance of Model.
Constructor Details
#initialize(attributes = {}) ⇒ Model
Returns a new instance of Model.
10 11 12 13 14 15 16 17 |
# File 'lib/gpdb/rest/recording_request/model.rb', line 10 def initialize(attributes = {}) self.id = attributes[:recording_request_id] self.target = attributes[:target] self.target_type_sig = attributes[:target_owner_context] self.user_context = attributes[:user_context] self.application_context = attributes[:application_context] self.target_owner_context = attributes[:target_owner_context] end |
Instance Attribute Details
#application_context ⇒ Object
Returns the value of attribute application_context.
7 8 9 |
# File 'lib/gpdb/rest/recording_request/model.rb', line 7 def application_context @application_context end |
#recording_request_id ⇒ Object
Returns the value of attribute recording_request_id.
7 8 9 |
# File 'lib/gpdb/rest/recording_request/model.rb', line 7 def recording_request_id @recording_request_id end |
#target ⇒ Object
Returns the value of attribute target.
7 8 9 |
# File 'lib/gpdb/rest/recording_request/model.rb', line 7 def target @target end |
#target_owner_context ⇒ Object
Returns the value of attribute target_owner_context.
7 8 9 |
# File 'lib/gpdb/rest/recording_request/model.rb', line 7 def target_owner_context @target_owner_context end |
#target_type_sig ⇒ Object
Returns the value of attribute target_type_sig.
7 8 9 |
# File 'lib/gpdb/rest/recording_request/model.rb', line 7 def target_type_sig @target_type_sig end |
#user_context ⇒ Object
Returns the value of attribute user_context.
7 8 9 |
# File 'lib/gpdb/rest/recording_request/model.rb', line 7 def user_context @user_context end |