Class: IOSDeveloper::Profile
- Inherits:
-
Object
- Object
- IOSDeveloper::Profile
- Defined in:
- lib/iosdeveloper/profile.rb
Instance Attribute Summary collapse
-
#app_id ⇒ Object
readonly
Returns the value of attribute app_id.
-
#download_url ⇒ Object
readonly
Returns the value of attribute download_url.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(name, app_id, status, type, download_url) ⇒ Profile
constructor
A new instance of Profile.
Constructor Details
#initialize(name, app_id, status, type, download_url) ⇒ Profile
Returns a new instance of Profile.
5 6 7 8 9 10 11 |
# File 'lib/iosdeveloper/profile.rb', line 5 def initialize(name, app_id, status, type, download_url) @name = name @app_id = app_id @status = status @type = type @download_url = download_url end |
Instance Attribute Details
#app_id ⇒ Object (readonly)
Returns the value of attribute app_id.
13 14 15 |
# File 'lib/iosdeveloper/profile.rb', line 13 def app_id @app_id end |
#download_url ⇒ Object (readonly)
Returns the value of attribute download_url.
13 14 15 |
# File 'lib/iosdeveloper/profile.rb', line 13 def download_url @download_url end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
13 14 15 |
# File 'lib/iosdeveloper/profile.rb', line 13 def name @name end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
13 14 15 |
# File 'lib/iosdeveloper/profile.rb', line 13 def status @status end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
13 14 15 |
# File 'lib/iosdeveloper/profile.rb', line 13 def type @type end |