Class: Bitrise::AppOwner

Inherits:
Object
  • Object
show all
Defined in:
lib/bitrise/app_owner.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_typeObject (readonly)

Returns the value of attribute account_type.



3
4
5
# File 'lib/bitrise/app_owner.rb', line 3

def 
  @account_type
end

#nameObject (readonly)

Returns the value of attribute name.



3
4
5
# File 'lib/bitrise/app_owner.rb', line 3

def name
  @name
end

#slugObject (readonly)

Returns the value of attribute slug.



3
4
5
# File 'lib/bitrise/app_owner.rb', line 3

def slug
  @slug
end