Class: IOSDeveloper::Profile

Inherits:
Object
  • Object
show all
Defined in:
lib/iosdeveloper/profile.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_idObject (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_urlObject (readonly)

Returns the value of attribute download_url.



13
14
15
# File 'lib/iosdeveloper/profile.rb', line 13

def download_url
  @download_url
end

#nameObject (readonly)

Returns the value of attribute name.



13
14
15
# File 'lib/iosdeveloper/profile.rb', line 13

def name
  @name
end

#statusObject (readonly)

Returns the value of attribute status.



13
14
15
# File 'lib/iosdeveloper/profile.rb', line 13

def status
  @status
end

#typeObject (readonly)

Returns the value of attribute type.



13
14
15
# File 'lib/iosdeveloper/profile.rb', line 13

def type
  @type
end