Sha256: cf3cf1ac0ac16e774108e3e7840420ea2ee86e752041e18aa7e02f3bb4211f64
Contents?: true
Size: 352 Bytes
Versions: 2
Compression:
Stored size: 352 Bytes
Contents
module ConnectorKit # Simple model class for representing Apps in the App Store Connect API class App attr_reader :id, :bundle_id, :name, :sku def initialize(options) @id = options['id'] attrs = options['attributes'] @bundle_id = attrs['bundleId'] @name = attrs['name'] @sku = attrs['sku'] end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
connector_kit-0.2.0 | lib/connector_kit/models/app.rb |
connector_kit-0.1.0 | lib/connector_kit/models/app.rb |