Sha256: 0fef98d6b1a70830929247cf516914c6297f802f80dee138ab9903c9f317c76e
Contents?: true
Size: 740 Bytes
Versions: 3
Compression:
Stored size: 740 Bytes
Contents
require_relative 'iap_family_details' module Spaceship module Tunes class IAPFamilyList < TunesBase # @return (Spaceship::Tunes::Application) A reference to the application attr_accessor :application # @return (String) the family name attr_accessor :name # @return (Intger) the Family Id attr_accessor :family_id attr_mapping({ 'id' => :family_id, 'name.value' => :name }) # return a editable family object def edit attrs = client.load_iap_family(app_id: application.apple_id, family_id: self.family_id) attrs[:application] = application Tunes::IAPFamilyDetails.new(attrs) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems