Sha256: c676f84107edfb06efb792b27df43a2aa82a234c96aba2aa1ca1049645e28401
Contents?: true
Size: 734 Bytes
Versions: 9
Compression:
Stored size: 734 Bytes
Contents
require_relative './model' module Spaceship module 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
9 entries across 9 versions & 1 rubygems