Sha256: 805b3d1b4042b1450ebd2d82fa18c0f01943e66ebdb82aa4e27409495cb108b4
Contents?: true
Size: 808 Bytes
Versions: 16
Compression:
Stored size: 808 Bytes
Contents
require_relative '../../model' module Spaceship module ConnectAPI module TestFlight class BetaAppLocalization include Spaceship::ConnectAPI::Model attr_accessor :feedback_email attr_accessor :marketing_url attr_accessor :privacy_policy_url attr_accessor :tv_os_privacy_policy attr_accessor :description attr_accessor :locale attr_mapping({ "feedbackEmail" => "feedback_email", "marketingUrl" => "marketing_url", "privacyPolicyUrl" => "privacy_policy_url", "tvOsPrivacyPolicy" => "tv_os_privacy_policy", "description" => "description", "locale" => "locale" }) def self.type return "betaAppLocalizations" end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems