Sha256: 2f0df6266f0e1839bb3dae9bd1786d9fb1f28429a2ec5b7629d6692309c719d0

Contents?: true

Size: 688 Bytes

Versions: 1

Compression:

Stored size: 688 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

1 entries across 1 versions & 1 rubygems

Version Path
fastlane_hotfix-2.187.0 spaceship/lib/spaceship/connect_api/models/app_data_usage_data_protection.rb