Sha256: b9fba24f5134cde1e5ecb1bba3660ecba21d7db453872348dfd6f9a8c224211f
Contents?: true
Size: 699 Bytes
Versions: 431
Compression:
Stored size: 699 Bytes
Contents
module Spaceship module Tunes # Represents the information about the generation of promocodes class AppVersionGeneratedPromocodes < TunesBase # @return attr_reader :effective_date attr_reader :expiration_date attr_reader :username # the AppVersionPromocodes this relates to attr_reader :version # Array of String attr_reader :codes attr_mapping({ 'effectiveDate' => :effective_date, 'expirationDate' => :expiration_date, 'username' => :username }) def setup @version = Tunes::AppVersionPromocodes.factory(raw_data['version']) @codes = raw_data['codes'] end end end end
Version data entries
431 entries across 431 versions & 1 rubygems