Sha256: 75d49ca103ebf84766895a83aea653b35b37ea74ca5264dd1628b747d95dc71a
Contents?: true
Size: 762 Bytes
Versions: 3
Compression:
Stored size: 762 Bytes
Contents
require_relative '../model' module Spaceship class ConnectAPI 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
Version data entries
3 entries across 3 versions & 1 rubygems