Class: Bitrise::AppOwner
- Inherits:
-
Object
- Object
- Bitrise::AppOwner
- Defined in:
- lib/bitrise/app_owner.rb
Instance Attribute Summary collapse
-
#account_type ⇒ Object
readonly
Returns the value of attribute account_type.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#slug ⇒ Object
readonly
Returns the value of attribute slug.
Instance Method Summary collapse
-
#initialize(attrs = {}) ⇒ AppOwner
constructor
A new instance of AppOwner.
Constructor Details
#initialize(attrs = {}) ⇒ AppOwner
Returns a new instance of AppOwner.
5 6 7 8 9 |
# File 'lib/bitrise/app_owner.rb', line 5 def initialize(attrs = {}) @account_type = attrs['account_type'] @name = attrs['name'] @slug = attrs['slug'] end |
Instance Attribute Details
#account_type ⇒ Object (readonly)
Returns the value of attribute account_type.
3 4 5 |
# File 'lib/bitrise/app_owner.rb', line 3 def account_type @account_type end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
3 4 5 |
# File 'lib/bitrise/app_owner.rb', line 3 def name @name end |
#slug ⇒ Object (readonly)
Returns the value of attribute slug.
3 4 5 |
# File 'lib/bitrise/app_owner.rb', line 3 def slug @slug end |