Class: ViewGroup
- Inherits:
-
Object
- Object
- ViewGroup
- Defined in:
- lib/apollo_commons_ruby/ViewGroup.rb
Instance Attribute Summary collapse
-
#apolloUserId ⇒ Object
readonly
Returns the value of attribute apolloUserId.
-
#domainId ⇒ Object
readonly
Returns the value of attribute domainId.
-
#projectId ⇒ Object
readonly
Returns the value of attribute projectId.
-
#tenantId ⇒ Object
readonly
Returns the value of attribute tenantId.
-
#viewGroupDefinition ⇒ Object
readonly
Returns the value of attribute viewGroupDefinition.
-
#viewGroupName ⇒ Object
readonly
Returns the value of attribute viewGroupName.
Instance Method Summary collapse
-
#initialize(configuration_json, view_group_definition, view_group_name, domain_id, apollo_user_id) ⇒ ViewGroup
constructor
A new instance of ViewGroup.
Constructor Details
#initialize(configuration_json, view_group_definition, view_group_name, domain_id, apollo_user_id) ⇒ ViewGroup
Returns a new instance of ViewGroup.
23 24 25 26 27 28 29 30 |
# File 'lib/apollo_commons_ruby/ViewGroup.rb', line 23 def initialize(configuration_json, view_group_definition, view_group_name, domain_id, apollo_user_id) @tenantId = configuration_json["tenantId"] @projectId = configuration_json["projectId"] @viewGroupDefinition = view_group_definition @viewGroupName = view_group_name @domainId = domain_id @apolloUserId = apollo_user_id end |
Instance Attribute Details
#apolloUserId ⇒ Object (readonly)
Returns the value of attribute apolloUserId.
20 21 22 |
# File 'lib/apollo_commons_ruby/ViewGroup.rb', line 20 def apolloUserId @apolloUserId end |
#domainId ⇒ Object (readonly)
Returns the value of attribute domainId.
19 20 21 |
# File 'lib/apollo_commons_ruby/ViewGroup.rb', line 19 def domainId @domainId end |
#projectId ⇒ Object (readonly)
Returns the value of attribute projectId.
17 18 19 |
# File 'lib/apollo_commons_ruby/ViewGroup.rb', line 17 def projectId @projectId end |
#tenantId ⇒ Object (readonly)
Returns the value of attribute tenantId.
16 17 18 |
# File 'lib/apollo_commons_ruby/ViewGroup.rb', line 16 def tenantId @tenantId end |
#viewGroupDefinition ⇒ Object (readonly)
Returns the value of attribute viewGroupDefinition.
18 19 20 |
# File 'lib/apollo_commons_ruby/ViewGroup.rb', line 18 def viewGroupDefinition @viewGroupDefinition end |
#viewGroupName ⇒ Object (readonly)
Returns the value of attribute viewGroupName.
21 22 23 |
# File 'lib/apollo_commons_ruby/ViewGroup.rb', line 21 def viewGroupName @viewGroupName end |