class Fabricio::Model::App

This model represents an application

Attributes

bundle_id[R]
created_at[R]
icon_url[R]
id[R]
name[R]
platform[R]

Public Class Methods

new(attributes) click to toggle source

Returns an App model object

@param attributes [Hash] @return [Fabricio::Model::App]

# File lib/fabricio/models/app.rb, line 13
def initialize(attributes)
  @id = attributes['id']
  @name = attributes['name']
  @bundle_id = attributes['bundle_identifier']
  @created_at = attributes['created_at']
  @platform = attributes['platform']
  @icon_url = attributes['icon_url']
  @json = attributes
end