/// A <see cref="ScriptableObject"/> representing the AppLovin Settings that can be set in the Integration Manager Window.
///
/// The scriptable object asset is created with the name <c>AppLovinSettings.asset</c> and is placed under the directory <c>Assets/MaxSdk/Resources</c>.
///
/// NOTE: Not name spacing this class since it is reflected upon by the Google adapter and will break compatibility.
publicconststringDefaultUserTrackingDescriptionEnV0="Pressing \\\"Allow\\\" uses device info for more relevant ad content";
publicconststringDefaultUserTrackingDescriptionEnV1="This only uses device info for less annoying, more relevant ads";
publicconststringDefaultUserTrackingDescriptionEnV2="This only uses device info for more interesting and relevant ads";
publicconststringDefaultUserTrackingDescriptionEnV3="This uses device info for more personalized ads and content";
publicconststringDefaultUserTrackingDescriptionDe="\\\"Erlauben\\\" drücken benutzt Gerätinformationen für relevantere Werbeinhalte";
publicconststringDefaultUserTrackingDescriptionEs="Presionando \\\"Permitir\\\", se usa la información del dispositivo para obtener contenido publicitario más relevante";
publicconststringDefaultUserTrackingDescriptionFr="\\\"Autoriser\\\" permet d'utiliser les infos du téléphone pour afficher des contenus publicitaires plus pertinents";
/// A placeholder constant to be replaced with the actual default localization or an empty string based on whether or not localization is enabled when when the getter is called.
/// A URL pointing to the Privacy Policy for the app to be shown when prompting the user for consent.
/// </summary>
publicstringConsentFlowPrivacyPolicyUrl
{
get{returnInstance.consentFlowPrivacyPolicyUrl;}
set{Instance.consentFlowPrivacyPolicyUrl=value;}
}
/// <summary>
/// An optional URL pointing to the Terms of Service for the app to be shown when prompting the user for consent.
/// </summary>
publicstringConsentFlowTermsOfServiceUrl
{
get{returnInstance.consentFlowTermsOfServiceUrl;}
set{Instance.consentFlowTermsOfServiceUrl=value;}
}
/// <summary>
/// A User Tracking Usage Description in English to be shown to users when requesting permission to use data for tracking.
/// For more information see <see cref="https://developer.apple.com/documentation/bundleresources/information_property_list/nsusertrackingusagedescription">Apple's documentation</see>.
/// Whether or not to localize User Tracking Usage Description.
/// For more information see <see cref="https://developer.apple.com/documentation/bundleresources/information_property_list/nsusertrackingusagedescription">Apple's documentation</see>.
/// A User Tracking Usage Description in German to be shown to users when requesting permission to use data for tracking.
/// For more information see <see cref="https://developer.apple.com/documentation/bundleresources/information_property_list/nsusertrackingusagedescription">Apple's documentation</see>.
/// A User Tracking Usage Description in Spanish to be shown to users when requesting permission to use data for tracking.
/// For more information see <see cref="https://developer.apple.com/documentation/bundleresources/information_property_list/nsusertrackingusagedescription">Apple's documentation</see>.
/// A User Tracking Usage Description in French to be shown to users when requesting permission to use data for tracking.
/// For more information see <see cref="https://developer.apple.com/documentation/bundleresources/information_property_list/nsusertrackingusagedescription">Apple's documentation</see>.
/// A User Tracking Usage Description in Japanese to be shown to users when requesting permission to use data for tracking.
/// For more information see <see cref="https://developer.apple.com/documentation/bundleresources/information_property_list/nsusertrackingusagedescription">Apple's documentation</see>.
/// A User Tracking Usage Description in Korean to be shown to users when requesting permission to use data for tracking.
/// For more information see <see cref="https://developer.apple.com/documentation/bundleresources/information_property_list/nsusertrackingusagedescription">Apple's documentation</see>.
/// A User Tracking Usage Description in Chinese (Simplified) to be shown to users when requesting permission to use data for tracking.
/// For more information see <see cref="https://developer.apple.com/documentation/bundleresources/information_property_list/nsusertrackingusagedescription">Apple's documentation</see>.
/// A User Tracking Usage Description in Chinese (Traditional) to be shown to users when requesting permission to use data for tracking.
/// For more information see <see cref="https://developer.apple.com/documentation/bundleresources/information_property_list/nsusertrackingusagedescription">Apple's documentation</see>.
/// </summary>
publicstringUserTrackingUsageDescriptionZhHant
{
get
{
// Since this localization has been added separate from the other localizations,
// we use a placeholder constant to be replaced with the actual value or an empty string based on whether or not the localization was enabled by the publisher.