class ConnectorKit::App

Simple model class for representing Apps

Attributes

bundle_id[R]
name[R]
sku[R]

Public Class Methods

new(options) click to toggle source
Calls superclass method
# File lib/connector_kit/models/app.rb, line 8
def initialize(options)
  super(options)

  attrs = options['attributes']
  @bundle_id = attrs['bundleId']
  @name = attrs['name']
  @sku = attrs['sku']
end