Sha256: 088c1c25020158e0121f906081a488d4eb00125240faee974c830f7e43f591f8
Contents?: true
Size: 661 Bytes
Versions: 87
Compression:
Stored size: 661 Bytes
Contents
require_relative '../model' module Spaceship class ConnectAPI class AppDataUsageDataProtection include Spaceship::ConnectAPI::Model attr_accessor :deleted attr_mapping({ "deleted" => "deleted" }) # Found at https://appstoreconnect.apple.com/iris/v1/appDataUsageDataProtections module ID DATA_USED_TO_TRACK_YOU = "DATA_USED_TO_TRACK_YOU" DATA_LINKED_TO_YOU = "DATA_LINKED_TO_YOU" DATA_NOT_LINKED_TO_YOU = "DATA_NOT_LINKED_TO_YOU" DATA_NOT_COLLECTED = "DATA_NOT_COLLECTED" end def self.type return "appDataUsageDataProtections" end end end end
Version data entries
87 entries across 87 versions & 4 rubygems