diff --git a/.env.dev b/.env.dev deleted file mode 100644 index fa1f33757d..0000000000 --- a/.env.dev +++ /dev/null @@ -1 +0,0 @@ -APP_CONFIG = "dev" \ No newline at end of file diff --git a/.env.mock b/.env.mock deleted file mode 100644 index 722251fe97..0000000000 --- a/.env.mock +++ /dev/null @@ -1 +0,0 @@ -APP_CONFIG = "mock" \ No newline at end of file diff --git a/.github/workflows/android_build.yml b/.github/workflows/android_build.yml index 1b90917d92..4aabe48b41 100644 --- a/.github/workflows/android_build.yml +++ b/.github/workflows/android_build.yml @@ -18,6 +18,7 @@ jobs: environment: qa type: debug output: APK + secrets: inherit build-qa-release: if: github.event_name == 'push' && startsWith(github.ref_name, 'release-') @@ -26,6 +27,7 @@ jobs: environment: qa type: release output: APK + secrets: inherit generate-apk-diff: if: github.event_name == 'pull_request' && github.base_ref == 'master' diff --git a/.github/workflows/generate_build.yml b/.github/workflows/generate_build.yml index 469ea44de1..ca621c28bc 100644 --- a/.github/workflows/generate_build.yml +++ b/.github/workflows/generate_build.yml @@ -9,7 +9,7 @@ on: type: choice options: - qa - - dev + - prod type: description: Build Type required: true @@ -47,11 +47,6 @@ on: required: true type: string -env: - NON_PROD_RELEASE_STORE_PASSWORD: android - NON_PROD_RELEASE_KEY_ALIAS: navi - NON_PROD_RELEASE_KEY_PASSWORD: android - jobs: print-inputs: runs-on: [ default ] @@ -71,6 +66,7 @@ jobs: run: working-directory: android needs: [ print-inputs ] + environment: ${{ inputs.environment }} steps: - name: Checkout Repository uses: actions/checkout@v4 @@ -101,15 +97,14 @@ jobs: run: sdkmanager "ndk;25.2.9519653" "cmake;3.22.1" - name: Grant Execute Permission for Gradle Wrapper run: chmod +x gradlew - - name: Set up Release Build Configuration - if: inputs.type == 'release' - run: cp keystore/navi-non-prod-release-key.jks app/navi-release-key.jks + - name: Export Release Store File + run: echo ${{ secrets.RELEASE_STORE_FILE }} | base64 -d >> app/navi-release-key.jks - name: Build - APK - ${{ inputs.environment }}-${{ inputs.type }} if: inputs.output == 'APK' - run: ./gradlew package${{ inputs.environment }}${{ inputs.type }}UniversalApk --stacktrace -PRELEASE_STORE_PASSWORD=$NON_PROD_RELEASE_STORE_PASSWORD -PRELEASE_KEY_ALIAS=$NON_PROD_RELEASE_KEY_ALIAS -PRELEASE_KEY_PASSWORD=$NON_PROD_RELEASE_KEY_PASSWORD + run: ./gradlew package${{ inputs.environment }}${{ inputs.type }}UniversalApk -PRELEASE_STORE_PASSWORD=${{ secrets.RELEASE_STORE_PASSWORD }} -PRELEASE_KEY_ALIAS=${{ secrets.RELEASE_KEY_ALIAS }} -PRELEASE_KEY_PASSWORD=${{ secrets.RELEASE_KEY_PASSWORD }} -PBASE_URL=${{ secrets.BASE_URL }} -PALFRED_API_KEY=${{ secrets.ALFRED_API_KEY }} -PAPPSFLYER_KEY=${{ secrets.APPSFLYER_KEY }} -PHYPERVERGE_APP_ID=${{ secrets.HYPERVERGE_APP_ID }} -PHYPERVERGE_APP_KEY=${{ secrets.HYPERVERGE_APP_KEY }} -PMOENGAGE_KEY=${{ secrets.MOENGAGE_KEY }} -PMQTT_PASSWORD=${{ secrets.MQTT_PASSWORD }} -PMQTT_USERNAME=${{ secrets.MQTT_USERNAME }} -PPULSE_BASE_URL=${{ secrets.PULSE_BASE_URL }} -PSSL_PINNING_KEY=${{ secrets.SSL_PINNING_KEY }} -PXIAOMI_PUSH_APP_ID=${{ secrets.XIAOMI_PUSH_APP_ID }} -PXIAOMI_PUSH_APP_KEY=${{ secrets.XIAOMI_PUSH_APP_KEY }} -PYOUTUBE_KEY=${{ secrets.YOUTUBE_KEY }} -PFACEBOOK_APP_ID=${{ secrets.FACEBOOK_APP_ID }} -PTRUECALLER_KEY=${{ secrets.TRUECALLER_KEY }} -PGI_RAZORPAY_KEY=${{ secrets.GI_RAZORPAY_KEY }} -PGOOGLE_MAPS_KEY=${{ secrets.GOOGLE_MAPS_KEY }} -PCODEPUSH_DEPLOYMENT_KEY=${{ secrets.CODEPUSH_DEPLOYMENT_KEY }} - name: Build - AAB - ${{ inputs.environment }}-${{ inputs.type }} if: inputs.output == 'AAB' - run: ./gradlew :app:bundle${{ inputs.environment }}${{ inputs.type }} --stacktrace -PRELEASE_STORE_PASSWORD=$NON_PROD_RELEASE_STORE_PASSWORD -PRELEASE_KEY_ALIAS=$NON_PROD_RELEASE_KEY_ALIAS -PRELEASE_KEY_PASSWORD=$NON_PROD_RELEASE_KEY_PASSWORD + run: ./gradlew :app:bundle${{ inputs.environment }}${{ inputs.type }} -PRELEASE_STORE_PASSWORD=${{ secrets.RELEASE_STORE_PASSWORD }} -PRELEASE_KEY_ALIAS=${{ secrets.RELEASE_KEY_ALIAS }} -PRELEASE_KEY_PASSWORD=${{ secrets.RELEASE_KEY_PASSWORD }} -PBASE_URL=${{ secrets.BASE_URL }} -PALFRED_API_KEY=${{ secrets.ALFRED_API_KEY }} -PAPPSFLYER_KEY=${{ secrets.APPSFLYER_KEY }} -PHYPERVERGE_APP_ID=${{ secrets.HYPERVERGE_APP_ID }} -PHYPERVERGE_APP_KEY=${{ secrets.HYPERVERGE_APP_KEY }} -PMOENGAGE_KEY=${{ secrets.MOENGAGE_KEY }} -PMQTT_PASSWORD=${{ secrets.MQTT_PASSWORD }} -PMQTT_USERNAME=${{ secrets.MQTT_USERNAME }} -PPULSE_BASE_URL=${{ secrets.PULSE_BASE_URL }} -PSSL_PINNING_KEY=${{ secrets.SSL_PINNING_KEY }} -PXIAOMI_PUSH_APP_ID=${{ secrets.XIAOMI_PUSH_APP_ID }} -PXIAOMI_PUSH_APP_KEY=${{ secrets.XIAOMI_PUSH_APP_KEY }} -PYOUTUBE_KEY=${{ secrets.YOUTUBE_KEY }} -PFACEBOOK_APP_ID=${{ secrets.FACEBOOK_APP_ID }} -PTRUECALLER_KEY=${{ secrets.TRUECALLER_KEY }} -PGI_RAZORPAY_KEY=${{ secrets.GI_RAZORPAY_KEY }} -PGOOGLE_MAPS_KEY=${{ secrets.GOOGLE_MAPS_KEY }} -PCODEPUSH_DEPLOYMENT_KEY=${{ secrets.CODEPUSH_DEPLOYMENT_KEY }} - name: Upload - ${{ inputs.output }} - ${{ inputs.environment }}-${{ inputs.type }} uses: actions/upload-artifact@v4 with: @@ -118,11 +113,3 @@ jobs: android/app/build/outputs/apk_from_bundle/ android/app/build/outputs/bundle/ retention-days: 5 - - name: Log APK Size - if: inputs.environment == 'qa' && inputs.type == 'release' && inputs.output == 'APK' && github.event_name == 'push' && startsWith(github.ref_name, 'release-') - run: | - current_version=$(awk '/VERSION_CODE/ {print $4}' app/build.gradle) - current_apk_size=$(stat -c %s android/app/build/outputs/apk_from_bundle/qaRelease/app-qa-release-universal.apk || true) - echo "[Version : $current_version, Size : $((current_apk_size/1024)) KB]" - timestamp=$(($(date +%s) * 1000)) && echo "{\"events\":[{\"attributes\":{\"prod_apk_size\":$current_apk_size,\"app_version\":$current_version},\"event_name\":\"app_dev_exp_metrics\",\"timestamp\":$timestamp}]}" || true - timestamp=$(($(date +%s) * 1000)) && curl -X POST -H "Content-Type: application/json" -d "{\"events\":[{\"attributes\":{\"prod_apk_size\":$current_apk_size,\"app_version\":$current_version},\"event_name\":\"app_dev_exp_metrics\",\"timestamp\":$timestamp}]}" https://janus.prod.navi-tech.in/events/json || true diff --git a/.github/workflows/metrics_logger.yml b/.github/workflows/metrics_logger.yml deleted file mode 100644 index 1d2df3f853..0000000000 --- a/.github/workflows/metrics_logger.yml +++ /dev/null @@ -1,87 +0,0 @@ -name: Metrics Logger - -on: - schedule: - - cron: '30 1 * * *' - -env: - NON_PROD_RELEASE_STORE_PASSWORD: android - NON_PROD_RELEASE_KEY_ALIAS: navi - NON_PROD_RELEASE_KEY_PASSWORD: android - -jobs: - log_build_metrics: - strategy: - fail-fast: false - max-parallel: 1 - matrix: - build_type: - - freshDebug - - cachedRelease - runs-on: [ macOS ] - defaults: - run: - working-directory: android - steps: - - name: Checkout Repository - uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: 18.18.0 - - name: Install Node Modules - run: npm install - - name: Log Build Metadata - run: | - echo "Commit SHA: ${{ github.sha }}" - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Disable local and remote cache - if: matrix.build_type == 'freshDebug' - run: | - sed -i '' 's/enabled = true/enabled = false/g' settings.gradle - - name: Print settings.gradle - run: cat settings.gradle - - name: Copy release key - if: matrix.build_type == 'cachedRelease' - run: cp keystore/navi-non-prod-release-key.jks app/navi-release-key.jks - - name: Build APK - id: build_apk - run: | - t1=$(( $(date +%s) * 1000 )) - if [[ "${{ matrix.build_type }}" == "cachedRelease" ]]; then - ./gradlew packageQaReleaseUniversalApk --stacktrace -PRELEASE_STORE_PASSWORD=$NON_PROD_RELEASE_STORE_PASSWORD -PRELEASE_KEY_ALIAS=$NON_PROD_RELEASE_KEY_ALIAS -PRELEASE_KEY_PASSWORD=$NON_PROD_RELEASE_KEY_PASSWORD - else - ./gradlew packageQaDebugUniversalApk --stacktrace - fi - t2=$(( $(date +%s) * 1000 - t1 )) - echo "BUILD_TIME=$t2" >> "$GITHUB_OUTPUT" - - name: Calculate Apk Size - id: apk_size - run: | - if [[ "${{ matrix.build_type }}" == "cachedRelease" ]]; then - apk_size=$(stat -f%z android/app/build/outputs/apk_from_bundle/qaRelease/app-qa-release-universal.apk) - else - apk_size=$(stat -f%z android/app/build/outputs/apk_from_bundle/qaDebug/app-qa-debug-universal.apk) - fi - - echo "APK_SIZE=$apk_size" >> "$GITHUB_OUTPUT" - - name: Log metrics - run: | - if [[ "${{ matrix.build_type }}" == "cachedDebug" ]]; then - build_time_key="cached_debug_build_time" - apk_size_key="debug_apk_size" - elif [[ "${{ matrix.build_type }}" == "cachedRelease" ]]; then - build_time_key="cached_release_build_time" - apk_size_key="release_apk_size" - else - build_time_key="fresh_debug_build_time" - apk_size_key="debug_apk_size" - fi - - echo "Input value: ${{ matrix.build_type }}" - timestamp=$(($(date +%s) * 1000)) && echo "{\"events\":[{\"attributes\":{\"$build_time_key\":\"${{ steps.build_apk.outputs.BUILD_TIME }}\",\"$apk_size_key\":\"${{ steps.apk_size.outputs.APK_SIZE }}\"},\"event_name\":\"app_dev_exp_metrics\",\"timestamp\":$timestamp}]}" - timestamp=$(($(date +%s) * 1000)) && curl -X POST -H "Content-Type: application/json" -d "{\"events\":[{\"attributes\":{\"$build_time_key\":\"${{ steps.build_apk.outputs.BUILD_TIME }}\",\"$apk_size_key\":\"${{ steps.apk_size.outputs.APK_SIZE }}\"},\"event_name\":\"app_dev_exp_metrics\",\"timestamp\":$timestamp}]}" https://janus.prod.navi-tech.in/events/json - - name: Run UI tests - if: matrix.build_type == 'freshDebug' - run: ./gradlew :app:connectedMockDebugAndroidTest -Pandroid.testInstrumentationRunnerArguments.package=com.navi.ap --stacktrace diff --git a/.github/workflows/production-release.yml b/.github/workflows/production-release.yml new file mode 100644 index 0000000000..8bda89d459 --- /dev/null +++ b/.github/workflows/production-release.yml @@ -0,0 +1,18 @@ +name: Production Release CI + +on: + push: + tags: [ v* ] + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + build-prod-release: + uses: ./.github/workflows/generate_build.yml + with: + environment: prod + type: release + output: AAB + secrets: inherit diff --git a/android/app/build.gradle b/android/app/build.gradle index 94406f7acc..d35867ada7 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -32,15 +32,25 @@ android { resourceConfigurations += ['en'] testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArguments clearPackageData: 'true' - resValue 'string', 'build_config_package','com.naviapp' + resValue 'string', 'build_config_package', 'com.naviapp' } signingConfigs { debug { - storeFile file('../keystore/navi-debug-key.jks') - storePassword "android" - keyAlias "androiddebugkey" - keyPassword "android" + if (project.hasProperty('RELEASE_STORE_PASSWORD') + && project.hasProperty('RELEASE_KEY_ALIAS') + && project.hasProperty('RELEASE_KEY_PASSWORD') + ) { + storeFile file("navi-release-key.jks") + storePassword "$RELEASE_STORE_PASSWORD" + keyAlias "$RELEASE_KEY_ALIAS" + keyPassword "$RELEASE_KEY_PASSWORD" + } else { + storeFile file("../keystore/navi-non-prod-release-key.jks") + storePassword "tPGSdwWiUkmH0Xr2MyVHHLVkdCCMOIU97SL_HUuyATmKEMx8ys4mp_JYCuFV94G7" + keyAlias "key0" + keyPassword "At3yvOS6w-1OlNZQd1nk_5kYkPKa2lklHxHZ_FMKOGgKD28z_QMdCNjoFXWg-dRz" + } } release { if (project.hasProperty('RELEASE_STORE_PASSWORD') @@ -51,6 +61,11 @@ android { storePassword "$RELEASE_STORE_PASSWORD" keyAlias "$RELEASE_KEY_ALIAS" keyPassword "$RELEASE_KEY_PASSWORD" + } else { + storeFile file("../keystore/navi-non-prod-release-key.jks") + storePassword "tPGSdwWiUkmH0Xr2MyVHHLVkdCCMOIU97SL_HUuyATmKEMx8ys4mp_JYCuFV94G7" + keyAlias "key0" + keyPassword "At3yvOS6w-1OlNZQd1nk_5kYkPKa2lklHxHZ_FMKOGgKD28z_QMdCNjoFXWg-dRz" } } } @@ -73,7 +88,7 @@ android { testCoverageEnabled false signingConfig signingConfigs.debug matchingFallbacks = ['debug'] - resValue 'string', 'build_config_package','com.naviapp.dev' + resValue 'string', 'build_config_package', 'com.naviapp.dev' } benchmark { initWith release @@ -84,7 +99,7 @@ android { matchingFallbacks = ['release'] signingConfig signingConfigs.debug manifestPlaceholders = [branchMode: 'false'] - resValue 'string', 'build_config_package','com.naviapp.dev' + resValue 'string', 'build_config_package', 'com.naviapp.dev' } release { debuggable false @@ -94,7 +109,7 @@ android { signingConfig signingConfigs.release manifestPlaceholders = [branchMode: 'false'] matchingFallbacks = ['release'] - resValue 'string', 'build_config_package','com.naviapp' + resValue 'string', 'build_config_package', 'com.naviapp' } } bundle { @@ -140,14 +155,6 @@ android { } } sourceSets { - dev { - androidTest { - java.srcDirs = ['src/androidTest/java', 'src/androidTestLibrary/java'] - } - test { - java.srcDirs = ['src/test/java'] - } - } release { java.srcDirs = ['src/main/java', 'src/release/java'] } @@ -160,29 +167,6 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - applicationId "com.naviapp.dev" - buildConfigField 'String', 'ALFRED_API_KEY', formatString('oMv77fgpBg9NFGom0Psizbf7lbrdBVJz') - buildConfigField 'String', 'APPSFLYER_KEY', formatString('ua6cppJ9oQx7aPQPNyHrHA') - buildConfigField 'String', 'BASE_URL', formatString('https://dev-sa.navi.com/') - buildConfigField 'String', 'HYPERVERGE_APP_ID', formatString('2c007b') - buildConfigField 'String', 'HYPERVERGE_APP_KEY', formatString('c9b1e034f7c8961a3f5b') - buildConfigField 'String', 'MOENGAGE_KEY', formatString('2PDJ4M6TDY7ADQ5N5LU48H9Y') - buildConfigField 'String', 'MQTT_PASSWORD', formatString('testUser@123') - buildConfigField 'String', 'MQTT_USERNAME', formatString('henry') - buildConfigField 'String', 'PULSE_BASE_URL', formatString('https://dev-janus.np.navi-tech.in/') - buildConfigField 'String', 'SSL_PINNING_KEY', formatString('sha256/4sMl7dWjcM6O5RKWBw3DUpd5Qy5OX5pvcHMKQIF1bgM=') - buildConfigField 'String', 'XIAOMI_PUSH_APP_ID', formatString('2882303761521925585') - buildConfigField 'String', 'XIAOMI_PUSH_APP_KEY', formatString('5692192517585') - buildConfigField 'String', 'YOUTUBE_KEY', formatString('AIzaSyDlbxag2dCc-a9ac8JTfH3nnVw41pdI-1U') - manifestPlaceholders = [ - FACEBOOK_APP_ID: "0", - TRUECALLER_KEY : "yicxl1xh6jidagslpi0h9d-uklfeinnx4a6mb6rdgyi" - ] - resValue 'string', 'CodePushDeploymentKey', formatString('QLh2ypE_wVIAdp9rcSPIkbdxwKgPijXyGpKX_') - resValue 'string', 'build_config_package','com.naviapp.dev' - } qa { isDefault true dimension "app" @@ -201,34 +185,11 @@ android { buildConfigField 'String', 'XIAOMI_PUSH_APP_KEY', formatString('5692192517585') buildConfigField 'String', 'YOUTUBE_KEY', formatString('AIzaSyDlbxag2dCc-a9ac8JTfH3nnVw41pdI-1U') manifestPlaceholders = [ - FACEBOOK_APP_ID: "0", + FACEBOOK_APP_ID: "238258890564574", TRUECALLER_KEY : "yicxl1xh6jidagslpi0h9d-uklfeinnx4a6mb6rdgyi" ] resValue 'string', 'CodePushDeploymentKey', formatString('QLh2ypE_wVIAdp9rcSPIkbdxwKgPijXyGpKX_') - resValue 'string', 'build_config_package','com.naviapp.dev' - } - mock { - dimension "app" - applicationId "com.naviapp.dev" - buildConfigField 'String', 'ALFRED_API_KEY', formatString('oMv77fgpBg9NFGom0Psizbf7lbrdBVJz') - buildConfigField 'String', 'APPSFLYER_KEY', formatString('ua6cppJ9oQx7aPQPNyHrHA') - buildConfigField 'String', 'BASE_URL', formatString('http://localhost:2763/') - buildConfigField 'String', 'HYPERVERGE_APP_ID', formatString('2c007b') - buildConfigField 'String', 'HYPERVERGE_APP_KEY', formatString('c9b1e034f7c8961a3f5b') - buildConfigField 'String', 'MOENGAGE_KEY', formatString('2PDJ4M6TDY7ADQ5N5LU48H9Y') - buildConfigField 'String', 'MQTT_PASSWORD', formatString('testUser@123') - buildConfigField 'String', 'MQTT_USERNAME', formatString('henry') - buildConfigField 'String', 'PULSE_BASE_URL', formatString('https://dev-janus.np.navi-tech.in/') - buildConfigField 'String', 'SSL_PINNING_KEY', formatString('sha256/nUU7NjGrGo/mxijjsX+MHerUbpIHBidF8LAYOEPFWA8=') - buildConfigField 'String', 'XIAOMI_PUSH_APP_ID', formatString('2882303761521925585') - buildConfigField 'String', 'XIAOMI_PUSH_APP_KEY', formatString('5692192517585') - buildConfigField 'String', 'YOUTUBE_KEY', formatString('AIzaSyDlbxag2dCc-a9ac8JTfH3nnVw41pdI-1U') - manifestPlaceholders = [ - FACEBOOK_APP_ID: "0", - TRUECALLER_KEY : "yicxl1xh6jidagslpi0h9d-uklfeinnx4a6mb6rdgyi" - ] - resValue "string", 'CodePushDeploymentKey', formatString('QLh2ypE_wVIAdp9rcSPIkbdxwKgPijXyGpKX_') - resValue 'string', 'build_config_package','com.naviapp.dev' + resValue 'string', 'build_config_package', 'com.naviapp.dev' } prod { dimension "app" @@ -267,7 +228,7 @@ android { TRUECALLER_KEY : "$TRUECALLER_KEY" ] resValue "string", 'CodePushDeploymentKey', formatString("$CODEPUSH_DEPLOYMENT_KEY") - resValue 'string', 'build_config_package','com.naviapp' + resValue 'string', 'build_config_package', 'com.naviapp' } } } @@ -278,19 +239,16 @@ static def formatString(String value) { } project.ext.react = [ - entryFile: "index.js", + entryFile : "index.js", enableHermes: true // clean and rebuild if changing - ] project.ext.envConfigFiles = [ - dev: ".env.dev", - qa :".env.qa", - benchmark: ".env.benchmark", - production:'.env.prod' + qa : ".env.qa", + benchmark : ".env.benchmark", + production: ".env.prod" ] - publishing { repositories { if (project.hasProperty('NEXUS_URL') @@ -381,7 +339,6 @@ dependencies { debugImplementation libs.hyperion.sharedPreferences debugImplementation libs.hyperion.simpleItem debugImplementation libs.hyperion.timber - debugImplementation libs.okhttp.mockwebserver releaseImplementation libs.hyperion.coreNoOp @@ -415,7 +372,7 @@ dependencies { ksp libs.androidx.room.compiler ksp libs.raamcosta.composeDestinations.ksp implementation("com.facebook.react:hermes-engine:+") { - exclude group:'com.facebook.fbjni' + exclude group: 'com.facebook.fbjni' } } diff --git a/android/app/src/debug/java/hyperion/HyperionApplication.kt b/android/app/src/debug/java/hyperion/HyperionApplication.kt index 1a0011f7b7..e5f2641c27 100644 --- a/android/app/src/debug/java/hyperion/HyperionApplication.kt +++ b/android/app/src/debug/java/hyperion/HyperionApplication.kt @@ -1,6 +1,6 @@ /* * - * * Copyright © 2023 by Navi Technologies Limited + * * Copyright © 2023-2024 by Navi Technologies Limited * * All rights reserved. Strictly confidential * */ @@ -20,7 +20,7 @@ class HyperionApplication : NaviApplication() { SimpleItemHyperionPlugin.addItem( SimpleItem.Builder() .title("Navi Configuration") - .text("Change Environment, Version Code, & Base URL on the fly.") + .text("Change App Version Code on the fly.") .clickListener { val intent = Intent(applicationContext, NaviConfigurationActivity::class.java) intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK) diff --git a/android/app/src/dev/AndroidManifest.xml b/android/app/src/dev/AndroidManifest.xml deleted file mode 100644 index 5a199b92b5..0000000000 --- a/android/app/src/dev/AndroidManifest.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - diff --git a/android/app/src/dev/google-services.json b/android/app/src/dev/google-services.json deleted file mode 100644 index 63ebadad54..0000000000 --- a/android/app/src/dev/google-services.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "project_info": { - "project_number": "7545371166", - "firebase_url": "https://navi-dev-593cf.firebaseio.com", - "project_id": "navi-dev-593cf", - "storage_bucket": "navi-dev-593cf.appspot.com" - }, - "client": [ - { - "client_info": { - "mobilesdk_app_id": "1:7545371166:android:7be3e213d25f5641ca0c0f", - "android_client_info": { - "package_name": "com.naviapp" - } - }, - "oauth_client": [ - { - "client_id": "7545371166-e927k3npd4mc7auo0g4fbj3ghli4odt1.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyBxvRqQRHyi6B-isZv0VpF2al5cJA4SZ7s" - }, - { - "current_key": "AIzaSyAxa20cH98hAlk0TmAdldaiD6o1nlAoPnA" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [ - { - "client_id": "7545371166-29f25vn86fpdlolv6uj7n757k8m53e5s.apps.googleusercontent.com", - "client_type": 3 - }, - { - "client_id": "7545371166-9gmh4tpgglkh1dsr7ojfs3kvjmatb0u0.apps.googleusercontent.com", - "client_type": 2, - "ios_info": { - "bundle_id": "com.gonavi.app.debug" - } - } - ] - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:7545371166:android:50fa837fb7444a25ca0c0f", - "android_client_info": { - "package_name": "com.naviapp.dev" - } - }, - "oauth_client": [ - { - "client_id": "7545371166-e927k3npd4mc7auo0g4fbj3ghli4odt1.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyBxvRqQRHyi6B-isZv0VpF2al5cJA4SZ7s" - }, - { - "current_key": "AIzaSyAxa20cH98hAlk0TmAdldaiD6o1nlAoPnA" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [ - { - "client_id": "7545371166-29f25vn86fpdlolv6uj7n757k8m53e5s.apps.googleusercontent.com", - "client_type": 3 - }, - { - "client_id": "7545371166-9gmh4tpgglkh1dsr7ojfs3kvjmatb0u0.apps.googleusercontent.com", - "client_type": 2, - "ios_info": { - "bundle_id": "com.gonavi.app.debug" - } - } - ] - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:7545371166:android:fa337bc10b3d4676ca0c0f", - "android_client_info": { - "package_name": "com.naviapp.fps.dev" - } - }, - "oauth_client": [ - { - "client_id": "7545371166-e927k3npd4mc7auo0g4fbj3ghli4odt1.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyBxvRqQRHyi6B-isZv0VpF2al5cJA4SZ7s" - }, - { - "current_key": "AIzaSyAxa20cH98hAlk0TmAdldaiD6o1nlAoPnA" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [ - { - "client_id": "7545371166-29f25vn86fpdlolv6uj7n757k8m53e5s.apps.googleusercontent.com", - "client_type": 3 - }, - { - "client_id": "7545371166-9gmh4tpgglkh1dsr7ojfs3kvjmatb0u0.apps.googleusercontent.com", - "client_type": 2, - "ios_info": { - "bundle_id": "com.gonavi.app.debug" - } - } - ] - } - } - } - ], - "configuration_version": "1" -} \ No newline at end of file diff --git a/android/app/src/dev/res/raw/mock.json b/android/app/src/dev/res/raw/mock.json deleted file mode 100644 index 5117003955..0000000000 --- a/android/app/src/dev/res/raw/mock.json +++ /dev/null @@ -1,1952 +0,0 @@ -{ - "dashboardMock": { - "headerWidget": [], - "contentWidget": [ - { - "widgetId": "lending:dashboard:separator", - "groupId": "DASHBOARD_SECTION", - "widgetName": "SEPARATOR", - "widgetData": { - "height": 24, - "bgColor": "#00000000" - } - }, - { - "widgetId": "lending:dashboard:product_header", - "groupId": "DASHBOARD_SECTION", - "widgetName": "PRODUCT_HEADER_WIDGET", - "widgetData": { - "text": "No Active Loans" - } - }, - { - "widgetId": "lending:dashboard:separator", - "groupId": "DASHBOARD_SECTION", - "widgetName": "SEPARATOR", - "widgetData": { - "height": 16, - "bgColor": "#00000000" - } - }, - { - "widgetId": "lending:dashboard:parent_container", - "groupId": "DASHBOARD_SECTION", - "widgetName": "PARENT_CONTAINER_WIDGET", - "widgetData": { - "items": [ - { - "widgetId": "personal_loan:dashboard:child_container", - "groupId": "DASHBOARD_SECTION", - "productId": "PERSONAL", - "widgetName": "CHILD_CONTAINER_WIDGET", - "widgetData": { - "items": [ - { - "widgetId": "personal_loan:dashboard:loan_in_progress", - "groupId": "DASHBOARD_SECTION", - "productId": "PERSONAL", - "widgetName": "EMPTY_PRODUCT_WIDGET", - "widgetData": { - "items": [ - { - "header": { - "text": "CASH LOAN", - "bgColor": "#F1F2F4" - }, - "content": { - "iconUrl": "https://navi-sa-assets.s3.ap-south-1.amazonaws.com/dashboard/state/in_progress.webp", - "title": "Loan in progress", - "description": { - "text": "Click continue to avail loan" - } - }, - "actionData": { - "url": "gi/bottom_sheet/generic_info_bottom_sheet", - "title": "Continue", - "titleColor": "#ffffff", - "bgColor": "#ff5732", - "parameters": [ - { - "key": "contentDataJsonString", - "value": "{\"title\":{\"font\":\"TT_MEDIUM\",\"size\":18,\"text\":\"Update KYC details\",\"textColor\":\"#191919\"},\"subtitle\":{\"font\":\"SEMI_BOLD\",\"size\":14,\"text\":\"Please update your KYC details to make a claim request.\",\"textColor\":\"#444444\"},\"iconCode\":null,\"buttonCta\":{\"title\":\"Continue\",\"url\":\"gi/kyc_activity/ppe_kyc_fragment\",\"analyticsEventProperties\":{\"name\":\"HI_ppe_kyc_entry_click\",\"properties\":{\"screen_name\":\"ppe_kyc_screen\"}}}}" - } - ], - "metaData": { - "clicked": { - "eventName": "dashboard_card_click", - "parameters": { - "widget_id": "personal_loan:dashboard:loan_in_progress", - "widget_name": "EMPTY_PRODUCT_WIDGET", - "button_identifier": "Continue" - } - } - } - } - } - ], - "visibleItem": 1.0, - "metaData": { - "viewed": { - "eventName": "dashboard_card_view", - "parameters": { - "widget_id": "personal_loan:dashboard:loan_in_progress", - "widget_name": "EMPTY_PRODUCT_WIDGET" - } - } - }, - "childWidget": true - } - } - ] - } - }, - { - "widgetId": "home_loan:dashboard:child_container", - "groupId": "DASHBOARD_SECTION", - "productId": "HOME", - "widgetName": "CHILD_CONTAINER_WIDGET", - "widgetData": { - "items": [ - { - "widgetId": "home_loan:dashboard:loan_in_progress", - "groupId": "DASHBOARD_SECTION", - "productId": "HOME", - "widgetName": "EMPTY_PRODUCT_WIDGET", - "widgetData": { - "items": [ - { - "header": { - "text": "HOME LOAN", - "bgColor": "#F1F2F4" - }, - "content": { - "iconUrl": "https://navi-sa-assets.s3.ap-south-1.amazonaws.com/dashboard/state/in_progress.webp", - "title": "Loan in progress", - "description": { - "text": "Click continue to avail loan" - } - }, - "actionData": { - "url": "HOME/HOME", - "title": "Continue", - "titleColor": "#ffffff", - "bgColor": "#ff5732", - "parameters": [ - { - "key": "loanApplicationId", - "value": "aca9c1a6-0b51-46f7-a363-adb857523059" - } - ], - "metaData": { - "clicked": { - "eventName": "dashboard_card_click", - "parameters": { - "widget_id": "home_loan:dashboard:loan_in_progress", - "widget_name": "EMPTY_PRODUCT_WIDGET", - "button_identifier": "Continue" - } - } - } - } - } - ], - "visibleItem": 1.0, - "metaData": { - "viewed": { - "eventName": "dashboard_card_view", - "parameters": { - "widget_id": "home_loan:dashboard:loan_in_progress", - "widget_name": "EMPTY_PRODUCT_WIDGET" - } - } - }, - "childWidget": true - } - } - ] - } - } - ] - } - }, - { - "widgetId": "lending:dashboard:separator", - "groupId": "DASHBOARD_SECTION", - "widgetName": "SEPARATOR", - "widgetData": { - "height": 24, - "bgColor": "#00000000" - } - } - ], - "footerWidget": [], - "extraData": {} - }, - "feeDetailsMock": { - "header": { - "leftIconCode": "ICON_CROSS_BLACK", - "infoCta": { - "title": "HELP" - } - }, - "content": { - "widgets": [ - { - "widgetLayoutParams": { - "margin": { - "startDp": 16, - "endDp": 16, - "topDp": 8 - } - }, - "type": "UI_TRON_WIDGET", - "uiTronResponse": { - "data": { - "emi_icon": { - "viewType": "Image", - "iconUrl": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/ic_emi_calculator_green.png" - }, - "summary_footer_percent": { - "viewType": "Text", - "text": " 26%" - }, - "currencyAmount": { - "viewType": "Text", - "text": "1,30,000.00" - }, - "tenure_amount": { - "viewType": "Text", - "text": "24 Months" - }, - "currencyLabel": { - "viewType": "Text", - "text": "INR " - }, - "start_date_amount": { - "viewType": "Text", - "text": "24 Mar 2023" - }, - "emi_text": { - "viewType": "Text", - "text": "EMI" - }, - "effective_icon": { - "viewType": "Image", - "ctaData": { - "type": "INFO_ICON_CLICK", - "parameters": [ - { - "value": "130000", - "key": "loanAmount" - }, - { - "value": "24", - "key": "loanTenure" - }, - { - "value": "26", - "key": "annualInterestRate" - }, - { - "value": "37437", - "key": "interestAmount" - }, - { - "value": "14.39", - "key": "effectiveInterestCost" - } - ], - "url": "LOAN_APPLICATION_V2/EFFECTIVE_INTEREST_COST_V2" - }, - "iconUrl": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/ic_info_gray_circle.png" - }, - "emiTenureLabel": { - "viewType": "Text", - "text": "TENURE" - }, - "emiLabel": { - "viewType": "Text", - "text": "EMI" - }, - "emi_amount": { - "viewType": "Text", - "text": "7004" - }, - "start_date_icon": { - "viewType": "Image", - "iconUrl": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/ic_emi_start_date_17.png" - }, - "emiStartDateLabel": { - "viewType": "Text", - "text": "START ON" - }, - "summary_footer_text": { - "viewType": "Text", - "text": " interest rate" - }, - "tenure_icon": { - "viewType": "Image", - "iconUrl": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/ic_emi_tenure_calendar.png" - }, - "effective_rate": { - "viewType": "Text", - "ctaData": { - "type": "INFO_ICON_CLICK", - "parameters": [ - { - "value": "130000", - "key": "loanAmount" - }, - { - "value": "24", - "key": "loanTenure" - }, - { - "value": "26", - "key": "annualInterestRate" - }, - { - "value": "37437", - "key": "interestAmount" - }, - { - "value": "14.39", - "key": "effectiveInterestCost" - } - ], - "url": "LOAN_APPLICATION_V2/EFFECTIVE_INTEREST_COST_V2" - }, - "text": " 14.39% effective cost" - }, - "start_date_text": { - "viewType": "Text", - "text": "START ON" - }, - "tenure_text": { - "viewType": "Text", - "text": "TENURE" - } - }, - "parentComposeView": [ - { - "childrenViews": [ - { - "childrenViews": [ - { - "childrenViews": [ - { - "property": { - "padding": { - "top": 24, - "bottom": 24, - "start": 16, - "end": 0 - }, - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 28, - "layoutId": "currencyLabel", - "fontWeight": "BOLD" - } - }, - { - "property": { - "padding": { - "top": 24, - "bottom": 24, - "start": 0, - "end": 16 - }, - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 28, - "layoutId": "currencyAmount", - "fontWeight": "ROBOTO_BOLD", - "isStateFul": "true" - } - } - ], - "property": { - "backgroundColor": "#1F5FE8AD", - "viewType": "Row", - "width": "MATCH_PARENT", - "arrangementData": { - "arrangementType": "Center" - }, - "layoutId": "rowOne", - "height": "WRAP_CONTENT" - } - }, - { - "childrenViews": [ - { - "childrenViews": [ - { - "childrenViews": [ - { - "property": { - "viewType": "Spacer", - "layoutId": "spacer_emi_icon_top", - "height": "16" - } - }, - { - "property": { - "viewType": "Image", - "width": "24", - "layoutId": "emi_icon", - "height": "24" - } - }, - { - "property": { - "viewType": "Spacer", - "layoutId": "spacer_emi_icon_bottom", - "height": "12" - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 10, - "layoutId": "emi_text", - "textColor": "#6B6B6B", - "fontWeight": "TT_REGULAR" - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 12, - "layoutId": "emi_amount", - "textColor": "#191919", - "fontWeight": "TT_REGULAR" - } - }, - { - "property": { - "viewType": "Spacer", - "layoutId": "spacer_emi_value_bottom", - "height": "16" - } - } - ], - "property": { - "constraintLinks": { - "top": { - "viewId": "parent", - "constraint": "TOP" - }, - "bottom": { - "viewId": "parent", - "constraint": "BOTTOM" - }, - "start": { - "viewId": "parent", - "constraint": "START" - }, - "end": { - "viewId": "emiTenureDivider", - "constraint": "START" - } - }, - "horizontalAlignment": "CenterHorizontally", - "viewType": "Column", - "arrangementData": { - "arrangementType": "Center" - }, - "layoutId": "columnFour" - } - }, - { - "childrenViews": [ - { - "property": { - "viewType": "Spacer", - "layoutId": "spacer_tenure_icon_top", - "height": "16" - } - }, - { - "property": { - "viewType": "Image", - "width": "24", - "layoutId": "tenure_icon", - "height": "24" - } - }, - { - "property": { - "viewType": "Spacer", - "layoutId": "spacer_tenure_icon_bottom", - "height": "12" - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 10, - "layoutId": "tenure_text", - "textColor": "#6B6B6B", - "fontWeight": "TT_REGULAR" - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 12, - "layoutId": "tenure_amount", - "textColor": "#191919", - "fontWeight": "TT_REGULAR" - } - }, - { - "property": { - "viewType": "Spacer", - "layoutId": "spacer_tenure_value_bottom", - "height": "16" - } - } - ], - "property": { - "constraintLinks": { - "top": { - "viewId": "parent", - "constraint": "TOP" - }, - "bottom": { - "viewId": "parent", - "constraint": "BOTTOM" - }, - "start": { - "viewId": "parent", - "constraint": "START" - }, - "end": { - "viewId": "parent", - "constraint": "END" - } - }, - "viewType": "Column", - "arrangementData": { - "arrangementType": "Center" - }, - "layoutId": "columnFive" - } - }, - { - "childrenViews": [ - { - "property": { - "viewType": "Spacer", - "layoutId": "spacer_start_date_icon_top", - "height": "16" - } - }, - { - "property": { - "viewType": "Image", - "width": "24", - "layoutId": "start_date_icon", - "height": "24" - } - }, - { - "property": { - "viewType": "Spacer", - "layoutId": "spacer_start_date_icon_bottom", - "height": "12" - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 10, - "layoutId": "start_date_text", - "textColor": "#6B6B6B", - "fontWeight": "TT_REGULAR" - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 12, - "layoutId": "start_date_amount", - "textColor": "#191919", - "fontWeight": "TT_REGULAR" - } - }, - { - "property": { - "viewType": "Spacer", - "layoutId": "spacer_start_date_value_bottom", - "height": "16" - } - } - ], - "property": { - "constraintLinks": { - "top": { - "viewId": "parent", - "constraint": "TOP" - }, - "bottom": { - "viewId": "parent", - "constraint": "BOTTOM" - }, - "start": { - "viewId": "tenureDateDivider", - "constraint": "END" - }, - "end": { - "viewId": "parent", - "constraint": "END" - } - }, - "viewType": "Column", - "arrangementData": { - "arrangementType": "Center" - }, - "layoutId": "columnSix" - } - }, - { - "property": { - "constraintLinks": { - "top": { - "viewId": "parent", - "constraint": "TOP" - }, - "bottom": { - "viewId": "parent", - "constraint": "BOTTOM" - }, - "end": { - "margin": "30", - "viewId": "columnFive", - "constraint": "START" - } - }, - "color": "#E3E5E5", - "separation": 5, - "thickness": 1, - "viewType": "Divider", - "width": 1, - "layoutId": "emiTenureDivider", - "height": "FILL_TO_CONSTRAINTS" - } - }, - { - "property": { - "constraintLinks": { - "top": { - "viewId": "parent", - "constraint": "TOP" - }, - "bottom": { - "viewId": "parent", - "constraint": "BOTTOM" - }, - "start": { - "margin": "30", - "viewId": "columnFive", - "constraint": "END" - } - }, - "color": "#E3E5E5", - "separation": 5, - "thickness": 1, - "viewType": "Divider", - "width": 1, - "layoutId": "tenureDateDivider", - "height": "FILL_TO_CONSTRAINTS" - } - } - ], - "property": { - "viewType": "ConstraintLayout", - "width": "MATCH_PARENT", - "layoutId": "constraint_info_items", - "height": "WRAP_CONTENT" - } - } - ], - "property": { - "viewType": "Row", - "width": "MATCH_PARENT", - "layoutId": "rowTwo" - } - }, - { - "childrenViews": [ - { - "property": { - "viewType": "Image", - "width": "14", - "layoutId": "effective_icon", - "height": "14" - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "width": "WRAP_CONTENT", - "fontSize": 12, - "layoutId": "effective_rate", - "textColor": "#6B6B6B", - "fontWeight": "TT_REGULAR", - "height": "WRAP_CONTENT" - } - } - ], - "property": { - "padding": { - "top": 12, - "bottom": 0, - "start": 0, - "end": 0 - }, - "backgroundColor": "#F5F5F5", - "viewType": "Row", - "width": "MATCH_PARENT", - "arrangementData": { - "arrangementType": "Center" - }, - "layoutId": "rowFooterTwo" - } - }, - { - "childrenViews": [ - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 12, - "layoutId": "summary_footer_percent", - "textColor": "#6B6B6B", - "fontWeight": "TT_REGULAR" - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 12, - "layoutId": "summary_footer_text", - "textColor": "#6B6B6B", - "fontWeight": "TT_REGULAR" - } - } - ], - "property": { - "padding": { - "top": 8, - "bottom": 12, - "start": 0, - "end": 0 - }, - "backgroundColor": "#F5F5F5", - "viewType": "Row", - "width": "MATCH_PARENT", - "arrangementData": { - "arrangementType": "Center" - }, - "layoutId": "rowFooter" - } - } - ], - "property": { - "viewType": "Column", - "width": "MATCH_PARENT", - "layoutId": "columnCardOne", - "height": "WRAP_CONTENT" - } - } - ], - "property": { - "elevation": 0, - "backgroundColor": "#FFFFFF", - "borderStrokeData": { - "color": "#7BD99D", - "width": 1 - }, - "shape": { - "shapeType": "RoundedCornerShape", - "size": 8 - }, - "viewType": "Card", - "width": "MATCH_PARENT", - "layoutId": "cardOne", - "height": "WRAP_CONTENT" - } - } - ] - } - }, - { - "widgetLayoutParams": { - "margin": { - "startDp": 16, - "endDp": 16, - "topDp": 16 - } - }, - "type": "SINGLE_IMAGE_WIDGET", - "body": { - "imageUrl": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/ZeroProcessingFeeZeroForeclosureChargesPayBackAnytime.png", - "aspectRatio": 3.3131, - "cornerRadius": 8 - } - }, - { - "widgetLayoutParams": { - "margin": { - "startDp": 16, - "endDp": 16, - "topDp": 32 - } - }, - "type": "UI_TRON_WIDGET", - "uiTronResponse": { - "parentComposeView": [ - { - "property": { - "horizontalAlignment": "Start", - "viewType": "Column", - "width": "MATCH_PARENT", - "layoutId": "column_emi_slider", - "height": "WRAP_CONTENT" - }, - "childrenViews": [ - { - "childrenViews": [ - { - "childrenViews": [ - { - "property": { - "padding": { - "top": 16, - "bottom": 8, - "start": 16, - "end": 0 - }, - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 16, - "layoutId": "radio_title", - "textColor": "#3C0050" - } - }, - { - "childrenViews": [ - { - "property": { - "statesMap": { - "select": { - "viewType": "RadioButton", - "isSelected": true - }, - "unselect": { - "viewType": "RadioButton", - "isSelected": false - } - }, - "unselectedColor": "#E3E5E5", - "viewType": "RadioButton", - "isSelected": false, - "selectedColor": "#14BC51", - "layoutId": "radio_1", - "isStateFul": true - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "statesMap": { - "select": { - "viewType": "Text", - "textColor": "#22A940" - }, - "unselect": { - "viewType": "Text", - "textColor": "#6B6B6B" - } - }, - "viewType": "Text", - "fontSize": 14, - "layoutId": "radio_text_1", - "textColor": "#6B6B6B", - "isStateFul": true - } - } - ], - "property": { - "statesMap": { - "select": { - "backgroundColor": "#E4FFED", - "viewType": "Row" - }, - "unselect": { - "backgroundColor": "#FFFFFF", - "viewType": "Row" - } - }, - "shape": { - "shapeType": "RoundedCornerShape", - "size": 8 - }, - "viewType": "Row", - "width": "MATCH_PARENT", - "arrangementData": { - "arrangementType": "Start" - }, - "layoutId": "row_1", - "isStateFul": true - } - }, - { - "childrenViews": [ - { - "property": { - "statesMap": { - "select": { - "viewType": "RadioButton", - "isSelected": true - }, - "unselect": { - "viewType": "RadioButton", - "isSelected": false - } - }, - "unselectedColor": "#E3E5E5", - "viewType": "RadioButton", - "isSelected": false, - "selectedColor": "#14BC51", - "layoutId": "radio_2", - "isStateFul": true - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "statesMap": { - "select": { - "viewType": "Text", - "textColor": "#22A940" - }, - "unselect": { - "viewType": "Text", - "textColor": "#6B6B6B" - } - }, - "viewType": "Text", - "fontSize": 14, - "layoutId": "radio_text_2", - "textColor": "#6B6B6B", - "isStateFul": true - } - } - ], - "property": { - "statesMap": { - "select": { - "backgroundColor": "#E4FFED", - "viewType": "Row" - }, - "unselect": { - "backgroundColor": "#FFFFFF", - "viewType": "Row" - } - }, - "shape": { - "shapeType": "RoundedCornerShape", - "size": 8 - }, - "viewType": "Row", - "width": "MATCH_PARENT", - "arrangementData": { - "arrangementType": "Start" - }, - "layoutId": "row_2", - "isStateFul": true - } - }, - { - "childrenViews": [ - { - "property": { - "statesMap": { - "select": { - "viewType": "RadioButton", - "isSelected": true - }, - "unselect": { - "viewType": "RadioButton", - "isSelected": false - } - }, - "unselectedColor": "#E3E5E5", - "viewType": "RadioButton", - "isSelected": false, - "selectedColor": "#14BC51", - "layoutId": "radio_3", - "isStateFul": true - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "statesMap": { - "select": { - "viewType": "Text", - "textColor": "#22A940" - }, - "unselect": { - "viewType": "Text", - "textColor": "#6B6B6B" - } - }, - "viewType": "Text", - "fontSize": 14, - "layoutId": "radio_text_3", - "textColor": "#6B6B6B", - "isStateFul": true - } - } - ], - "property": { - "statesMap": { - "select": { - "backgroundColor": "#E4FFED", - "viewType": "Row" - }, - "unselect": { - "backgroundColor": "#FFFFFF", - "viewType": "Row" - } - }, - "shape": { - "shapeType": "RoundedCornerShape", - "size": 8 - }, - "viewType": "Row", - "width": "MATCH_PARENT", - "arrangementData": { - "arrangementType": "Start" - }, - "layoutId": "row_3", - "isStateFul": true - } - } - ], - "property": { - "horizontalAlignment": "Start", - "viewType": "Column", - "width": "MATCH_PARENT", - "layoutId": "columnCardOne" - } - } - ], - "property": { - "elevation": 0, - "padding": { - "top": 2, - "bottom": 2, - "start": 2, - "end": 2 - }, - "backgroundColor": "#FFFFFF", - "shape": { - "shapeType": "RoundedCornerShape", - "size": 8 - }, - "viewType": "Card", - "width": "MATCH_PARENT", - "layoutId": "card_emi" - } - }, - { - "childrenViews": [ - { - "childrenViews": [ - { - "childrenViews": [ - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 14, - "layoutId": "text_emi_amount", - "textColor": "#191919", - "fontWeight": "BOLD", - "isStateFul": true - } - }, - { - "childrenViews": [ - { - "property": { - "padding": { - "top": 4, - "bottom": 4, - "start": 8, - "end": 8 - }, - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 10, - "layoutId": "text_emi_tenure", - "textColor": "#F0F5FC", - "fontWeight": "BOLD", - "isStateFul": true - } - } - ], - "property": { - "backgroundColor": "#011A48", - "shape": { - "shapeType": "RoundedCornerShape", - "size": 8 - }, - "viewType": "Row", - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT" - } - } - ], - "property": { - "padding": { - "top": 16, - "start": 16, - "end": 16 - }, - "viewType": "Row", - "width": "MATCH_PARENT", - "arrangementData": { - "arrangementType": "SpaceBetween" - }, - "height": "WRAP_CONTENT" - } - }, - { - "property": { - "padding": { - "top": 8, - "start": 16, - "end": 16 - }, - "uiTronRawValueIds": [ - "text_emi_tenure" - ], - "uiTronIds": [ - "text_emi_amount" - ], - "sliderValueRange": { - "start": 3, - "end": 24 - }, - "sliderColors": { - "inactiveTrackColor": "#EBEBEB", - "thumbColor": "#22CD80", - "activeTickColor": "#22CD80", - "activeTrackColor": "#22CD80", - "inactiveTickColor": "#EBEBEB" - }, - "viewType": "Slider", - "width": "MATCH_PARENT", - "layoutId": "tenureSlider", - "steps": 7, - "height": "WRAP_CONTENT" - } - }, - { - "childrenViews": [ - { - "childrenViews": [ - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 10, - "layoutId": "slider_start_lable", - "textColor": "#6B6B6B", - "fontWeight": "REGULAR" - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 12, - "layoutId": "slider_start_text", - "textColor": "#6B6B6B" - } - } - ], - "property": { - "horizontalAlignment": "Start", - "viewType": "Column", - "width": "WRAP_CONTENT", - "layoutId": "column_slider_start", - "height": "WRAP_CONTENT" - } - }, - { - "childrenViews": [ - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 10, - "layoutId": "slider_end_lable", - "textColor": "#6B6B6B" - } - }, - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 12, - "layoutId": "slider_end_text", - "textColor": "#6B6B6B" - } - } - ], - "property": { - "horizontalAlignment": "End", - "viewType": "Column", - "width": "WRAP_CONTENT", - "layoutId": "column_slider_end", - "height": "WRAP_CONTENT" - } - } - ], - "property": { - "padding": { - "bottom": 16, - "start": 16, - "end": 16 - }, - "viewType": "Row", - "width": "MATCH_PARENT", - "arrangementData": { - "arrangementType": "SpaceBetween" - }, - "layoutId": "row_emi_slider_1", - "height": "WRAP_CONTENT" - } - } - ], - "property": { - "horizontalAlignment": "Start", - "viewType": "Column", - "width": "MATCH_PARENT", - "layoutId": "column_emi_slider", - "height": "WRAP_CONTENT" - } - } - ], - "property": { - "elevation": 0, - "padding": { - "top": 2, - "bottom": 2, - "start": 2, - "end": 2 - }, - "backgroundColor": "#FFFFFF", - "borderStrokeData": { - "color": "#F5F5F5", - "width": 1 - }, - "visible": false, - "statesMap": { - "select": { - "visible": true, - "viewType": "Card" - }, - "unselect": { - "visible": false, - "viewType": "Card" - } - }, - "shape": { - "shapeType": "RoundedCornerShape", - "size": 8 - }, - "viewType": "Card", - "width": "MATCH_PARENT", - "layoutId": "card_customise_emi", - "height": "WRAP_CONTENT", - "isStateFul": true - } - } - ] - } - ], - "data": { - "radio_title": { - "viewType": "Text", - "text": "Choose EMI plan" - }, - "radio_text_1": { - "viewType": "Text", - "text": "INR 8420 x 19 months" - }, - "radio_text_2": { - "viewType": "Text", - "text": "INR 7004 x 24 months" - }, - "radio_text_3": { - "viewType": "Text", - "text": "Customise your EMI" - }, - "row_3": { - "onClick": { - "actions": [ - { - "type": "UpdateViewState", - "viewStates": { - "radio_3": "select", - "radio_2": "unselect", - "radio_1": "unselect", - "radio_text_1": "unselect", - "row_3": "select", - "radio_text_3": "select", - "radio_text_2": "unselect", - "row_1": "unselect", - "row_2": "unselect", - "card_customise_emi": "select" - } - } - ] - }, - "viewType": "Row" - }, - "row_1": { - "onClick": { - "actions": [ - { - "type": "UpdateViewState", - "viewStates": { - "radio_3": "unselect", - "radio_2": "unselect", - "radio_1": "select", - "radio_text_1": "select", - "row_3": "unselect", - "radio_text_3": "unselect", - "radio_text_2": "unselect", - "row_1": "select", - "row_2": "unselect", - "card_customise_emi": "unselect" - } - }, - { - "ctaData": { - "parameters": [ - { - "key": "TENURE_SELECTED_VALUE", - "value": "19" - }, - { - "key": "MONTHLY_EMI_VALUE", - "value": "8420" - }, - { - "key": "CUSTOMISE_TENURE", - "value": "false" - } - ], - "type": "TENURE_SELECTED_TYPE" - }, - "type": "CtaAction" - }, - { - "ctaData": { - "parameters": [ - { - "key": "TENURE_SELECTED_VALUE", - "value": "19" - }, - { - "key": "MONTHLY_EMI_VALUE", - "value": "8420" - }, - { - "key": "CUSTOMISE_TENURE", - "value": "false" - } - ], - "type": "TENURE_CLICKED_TYPE" - }, - "type": "CtaAction" - } - ] - }, - "viewType": "Row" - }, - "row_2": { - "onClick": { - "actions": [ - { - "type": "UpdateViewState", - "viewStates": { - "radio_3": "unselect", - "radio_2": "select", - "radio_1": "unselect", - "radio_text_1": "unselect", - "row_3": "unselect", - "radio_text_3": "unselect", - "radio_text_2": "select", - "row_1": "unselect", - "row_2": "select", - "card_customise_emi": "unselect" - } - }, - { - "ctaData": { - "type": "TENURE_CLICKED_TYPE", - "parameters": [ - { - "value": "24", - "key": "TENURE_SELECTED_VALUE" - }, - { - "value": "7004", - "key": "MONTHLY_EMI_VALUE" - }, - { - "value": "false", - "key": "CUSTOMISE_TENURE" - } - ] - }, - "type": "CtaAction" - }, - { - "ctaData": { - "type": "TENURE_CLICKED_TYPE", - "parameters": [ - { - "value": "24", - "key": "TENURE_SELECTED_VALUE" - }, - { - "value": "7004", - "key": "MONTHLY_EMI_VALUE" - }, - { - "value": "false", - "key": "CUSTOMISE_TENURE" - } - ] - }, - "type": "CtaAction" - } - ] - }, - "viewType": "Row" - }, - "tenureSlider": { - "stepValues": [ - { - "rawValue": 3, - "formattedValue": "45,255" - }, - { - "rawValue": 6, - "formattedValue": "23,339" - }, - { - "rawValue": 9, - "formattedValue": "16,054" - }, - { - "rawValue": 12, - "formattedValue": "12,419" - }, - { - "rawValue": 15, - "formattedValue": "10,244" - }, - { - "rawValue": 18, - "formattedValue": "8,799" - }, - { - "rawValue": 21, - "formattedValue": "7,771" - }, - { - "rawValue": 24, - "formattedValue": "7,004" - } - ], - "viewType": "Slider", - "selectedRawValue": "24" - }, - "slider_start_text": { - "viewType": "Text", - "text": "3" - }, - "text_emi_tenure": { - "viewType": "Text", - "text": "24", - "textFormatter": { - "textFormat": "{month_count} months", - "placeholder": "{month_count}" - } - }, - "slider_start_lable": { - "viewType": "Text", - "text": "min" - }, - "slider_end_lable": { - "viewType": "Text", - "text": "max" - }, - "slider_end_text": { - "viewType": "Text", - "text": "24" - }, - "text_emi_amount": { - "viewType": "Text", - "text": "7,004" - } - } - } - }, - { - "widgetLayoutParams": { - "margin": { - "startDp": 16, - "endDp": 16, - "topDp": 32 - } - }, - "type": "UI_TRON_WIDGET", - "uiTronResponse": { - "data": { - "amountLabel": { - "viewType": "Text", - "text": "Change amount" - } - }, - "parentComposeView": [ - { - "property": { - "constraintLinks": { - "top": { - "viewId": "parent", - "constraint": "TOP" - }, - "start": { - "viewId": "parent", - "constraint": "START" - } - }, - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "width": "MATCH_PARENT", - "fontSize": 14, - "layoutId": "amountLabel", - "textColor": "#6B6B6B", - "fontWeight": "TT_REGULAR", - "height": "WRAP_CONTENT" - } - } - ] - } - }, - { - "tag": "this is layout which encapsulates slider and amount", - "data": { - "currencyAmount": { - "viewType": "Text", - "text": "1,30,000.00" - }, - "currencyLabel": { - "viewType": "Text", - "text": "INR " - }, - "summary_footer_text": { - "viewType": "Text", - "text": "20.25% Interest Rate" - }, - "loanAmountSlider": { - "stepValues": [ - { - "rawValue": 10000, - "formattedValue": "10,000.00" - }, - { - "rawValue": 24500, - "formattedValue": "24,500.00" - }, - { - "rawValue": 37000, - "formattedValue": "37,000.00" - }, - { - "rawValue": 47000, - "formattedValue": "47,000.00" - }, - { - "rawValue": 55000, - "formattedValue": "55,000.00" - }, - { - "rawValue": 62000, - "formattedValue": "62,000.00" - }, - { - "rawValue": 68500, - "formattedValue": "68,500.00" - }, - { - "rawValue": 74000, - "formattedValue": "74,000.00" - }, - { - "rawValue": 79000, - "formattedValue": "79,000.00" - }, - { - "rawValue": 83500, - "formattedValue": "83,500.00" - }, - { - "rawValue": 87500, - "formattedValue": "87,500.00" - }, - { - "rawValue": 91500, - "formattedValue": "91,500.00" - }, - { - "rawValue": 95500, - "formattedValue": "95,500.00" - }, - { - "rawValue": 99000, - "formattedValue": "99,000.00" - }, - { - "rawValue": 102000, - "formattedValue": "1,02,000.00" - }, - { - "rawValue": 105000, - "formattedValue": "1,05,000.00" - }, - { - "rawValue": 108000, - "formattedValue": "1,08,000.00" - }, - { - "rawValue": 111000, - "formattedValue": "1,11,000.00" - }, - { - "rawValue": 113500, - "formattedValue": "1,13,500.00" - }, - { - "rawValue": 116500, - "formattedValue": "1,16,500.00" - }, - { - "rawValue": 119000, - "formattedValue": "1,19,000.00" - }, - { - "rawValue": 121000, - "formattedValue": "1,21,000.00" - }, - { - "rawValue": 123500, - "formattedValue": "1,23,500.00" - }, - { - "rawValue": 125500, - "formattedValue": "1,25,500.00" - }, - { - "rawValue": 128000, - "formattedValue": "1,28,000.00" - }, - { - "rawValue": 130000, - "formattedValue": "1,30,000.00" - } - ], - "viewType": "Slider", - "selectedRawValue": "130000" - } - }, - "parentComposeView": [ - { - "childrenViews": [ - { - "childrenViews": [ - { - "childrenViews": [ - { - "property": { - "padding": { - "top": 18, - "bottom": 12, - "start": 30, - "end": 0 - }, - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 28, - "layoutId": "currencyLabel", - "fontWeight": "ROBOTO_BOLD" - } - }, - { - "property": { - "padding": { - "top": 18, - "bottom": 12, - "start": 0, - "end": 30 - }, - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 28, - "layoutId": "currencyAmount", - "fontWeight": "ROBOTO_BOLD", - "isStateFul": "true" - } - } - ], - "property": { - "backgroundColor": "#FFFFFF", - "viewType": "Row", - "width": "MATCH_PARENT", - "arrangementData": { - "arrangementType": "Center" - }, - "layoutId": "rowOne", - "height": "WRAP_CONTENT" - } - }, - { - "childrenViews": [ - { - "property": { - "padding": { - "start": 16, - "end": 16 - }, - "constraintLinks": { - "top": { - "margin": 0, - "viewId": "parent", - "constraint": "TOP" - }, - "start": { - "margin": 0, - "viewId": "parent", - "constraint": "START" - }, - "end": { - "margin": 0, - "viewId": "parent", - "constraint": "END" - } - }, - "uiTronIds": [ - "currencyAmount" - ], - "sliderValueRange": { - "start": 0, - "end": 100 - }, - "sliderColors": { - "inactiveTrackColor": "#EBEBEB", - "thumbColor": "#22CD80", - "activeTickColor": "#22CD80", - "activeTrackColor": "#22CD80", - "inactiveTickColor": "#EBEBEB" - }, - "viewType": "Slider", - "layoutId": "loanAmountSlider", - "steps": 25 - } - } - ], - "property": { - "backgroundColor": "#FFFFFF", - "viewType": "ConstraintLayout", - "width": "MATCH_PARENT", - "layoutId": "rowOne", - "height": "WRAP_CONTENT" - } - }, - { - "childrenViews": [ - { - "property": { - "padding": { - "top": 10, - "bottom": 10, - "start": 0, - "end": 0 - }, - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "fontSize": 12, - "layoutId": "summary_footer_text", - "textColor": "#444444", - "fontWeight": "TT_REGULAR" - } - } - ], - "property": { - "backgroundColor": "#F5F5F5", - "viewType": "Row", - "width": "MATCH_PARENT", - "arrangementData": { - "arrangementType": "Center" - }, - "layoutId": "rowFooter" - } - } - ], - "property": { - "viewType": "Column", - "width": "MATCH_PARENT", - "layoutId": "columnCardOne", - "height": "WRAP_CONTENT" - } - } - ], - "property": { - "elevation": 0, - "backgroundColor": "#FFFFFF", - "borderStrokeData": { - "color": "#F5F5F5", - "width": 4 - }, - "shape": { - "shapeType": "RoundedCornerShape", - "size": 18 - }, - "padding": { - "top": 20, - "bottom": 20, - "start": 20, - "end": 20 - }, - "viewType": "Card", - "width": "MATCH_PARENT", - "layoutId": "cardOne", - "height": "WRAP_CONTENT" - } - } - ] - } - ], - "footer": { - "data": { - "btn_text": { - "viewType": "Text", - "text": "Get Cash" - }, - "btn_lottie": { - "viewType": "Lottie", - "lottieUrl": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/lottie/navi_coin_rotation.json", - "iterations": "500" - }, - "btn_card": { - "viewType": "Row", - "ctaData": { - "type": "FOOTER_NEXT_PRESS", - "url": "BANK_DETAILS_V2" - } - } - }, - "parentComposeView": [ - { - "childrenViews": [ - { - "childrenViews": [ - { - "property": { - "fontFamily": "ttComposeFontFamily", - "viewType": "Text", - "width": "WRAP_CONTENT", - "fontSize": 14, - "layoutId": "btn_text", - "textColor": "#FFFFFF", - "fontWeight": "TT_REGULAR", - "height": "WRAP_CONTENT", - "padding": { - "top": 15, - "bottom": 15 - }, - "constraintLinks": { - "top": { - "viewId": "parent", - "constraint": "TOP" - }, - "start": { - "viewId": "parent", - "constraint": "START" - }, - "bottom": { - "viewId": "parent", - "constraint": "BOTTOM" - }, - "end": { - "viewId": "parent", - "constraint": "END" - } - } - } - } - ], - "property": { - "backgroundColor": "#FF5732", - "viewType": "ConstraintLayout", - "width": "MATCH_PARENT", - "layoutId": "btn_card", - "height": "WRAP_CONTENT", - "shape": { - "shapeType": "RoundedCornerShape", - "size": 8 - } - } - } - ], - "property": { - "backgroundColor": "#FFFFFF", - "viewType": "Row", - "width": "MATCH_PARENT", - "layoutId": "rowOne", - "height": "WRAP_CONTENT", - "padding": { - "start": 16, - "end": 16, - "top": 24, - "bottom": 24 - } - } - } - ] - } - } - } -} - diff --git a/android/app/src/dev/res/values/strings.xml b/android/app/src/dev/res/values/strings.xml deleted file mode 100644 index 5bc55d1c1a..0000000000 --- a/android/app/src/dev/res/values/strings.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Navi DEV - diff --git a/android/app/src/dev/res/xml/network_security_config.xml b/android/app/src/dev/res/xml/network_security_config.xml deleted file mode 100644 index 167b7dd686..0000000000 --- a/android/app/src/dev/res/xml/network_security_config.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - diff --git a/android/app/src/main/java/com/naviapp/app/NaviApplication.kt b/android/app/src/main/java/com/naviapp/app/NaviApplication.kt index 0cc1effeb0..3fef5c261a 100644 --- a/android/app/src/main/java/com/naviapp/app/NaviApplication.kt +++ b/android/app/src/main/java/com/naviapp/app/NaviApplication.kt @@ -11,8 +11,6 @@ import android.app.Activity import android.app.Application import android.content.Context import android.os.Bundle -import android.os.StrictMode -import android.text.TextUtils import android.view.WindowManager import androidx.multidex.MultiDexApplication import coil.ImageLoader @@ -72,7 +70,6 @@ import com.naviapp.home.compose.activity.HomePageActivity import com.naviapp.react_native.native_bridge.NativePackage import com.naviapp.releaselog.utils.NetWatchUtil import com.naviapp.utils.Constants -import com.naviapp.utils.DEV import com.naviapp.utils.QA import com.naviapp.utils.isDifferentPackage import dagger.Lazy @@ -125,23 +122,6 @@ open class NaviApplication : override fun onCreate() { System.setProperty("gson.allowCapturingTypeVariables", "true") AppLoadTimerMapper.onAppLoadingStart() - if (TextUtils.equals(BuildConfig.FLAVOR, DEV) && BuildConfig.DEBUG) { - StrictMode.setThreadPolicy( - StrictMode.ThreadPolicy.Builder() - .detectDiskReads() - .detectDiskWrites() - .detectNetwork() // or .detectAll() for all detectable problems - .penaltyLog() - .build() - ) - StrictMode.setVmPolicy( - StrictMode.VmPolicy.Builder() - .detectLeakedSqlLiteObjects() - .detectLeakedClosableObjects() - .penaltyLog() - .build() - ) - } super.onCreate() instance = this isDifferentPackage = isDifferentPackage(this) diff --git a/android/app/src/main/java/com/naviapp/configuration/NaviConfigurationActivity.kt b/android/app/src/main/java/com/naviapp/configuration/NaviConfigurationActivity.kt index c65ecabf69..dba5c789c1 100644 --- a/android/app/src/main/java/com/naviapp/configuration/NaviConfigurationActivity.kt +++ b/android/app/src/main/java/com/naviapp/configuration/NaviConfigurationActivity.kt @@ -16,12 +16,8 @@ import com.navi.base.deeplink.DeepLinkManager import com.navi.base.model.CtaData import com.navi.base.model.LineItem import com.navi.base.utils.BaseUtils -import com.navi.base.utils.DEV -import com.navi.base.utils.QA -import com.navi.base.utils.isNull import com.navi.base.utils.orFalse import com.navi.common.utils.log -import com.naviapp.BuildConfig import com.naviapp.configuration.composable.NaviConfigurationScreen import dagger.hilt.android.AndroidEntryPoint @@ -31,12 +27,7 @@ class NaviConfigurationActivity : ComponentActivity() { super.onCreate(savedInstanceState) setContent { NaviConfigurationScreen( - onDevClick = { setUrlOnClick(DEV) }, - isDevEnabled = isButtonEnabled(DEV), - onQaClick = { setUrlOnClick(QA) }, - isQaEnabled = isButtonEnabled(QA), onVersionCodeChange = { BaseUtils.saveUpdatedVersionCodeAndRestart(it, this) }, - onBaseUrlChanged = { BaseUtils.saveUpdatedBaseUrlAndRestart(it, this) }, onBackButtonClick = { finish() }, onEnterApJourneyClicked = ::onEnterApJourneyClicked, onRoutingKeyChange = { BaseUtils.saveRoutingKeyAndRestart(it, this) }, @@ -45,24 +36,6 @@ class NaviConfigurationActivity : ComponentActivity() { } } - private fun isButtonEnabled(id: String): Boolean { - if (BaseUtils.getUpdatedBaseUrl().isNull()) - return (getBaseUrlFromId(id) == BuildConfig.BASE_URL).not() - return (BaseUtils.getUpdatedBaseUrl() == getBaseUrlFromId(id)).not() - } - - private fun getBaseUrlFromId(id: String): String { - return when (id) { - DEV -> "https://dev-sa.navi.com/" - QA -> "https://qa-sa.navi.com/" - else -> BuildConfig.BASE_URL - } - } - - private fun setUrlOnClick(text: CharSequence?) { - BaseUtils.saveUpdatedBaseUrlAndRestart(getBaseUrlFromId(text.toString()), this) - } - private fun onCtaTestingClicked(ctaData: String?) { val ctaData = getJsonObject(ctaData) if (ctaData != null) { diff --git a/android/app/src/main/java/com/naviapp/configuration/composable/NaviConfigurationScreen.kt b/android/app/src/main/java/com/naviapp/configuration/composable/NaviConfigurationScreen.kt index 313898526f..6f8b5afe4e 100644 --- a/android/app/src/main/java/com/naviapp/configuration/composable/NaviConfigurationScreen.kt +++ b/android/app/src/main/java/com/naviapp/configuration/composable/NaviConfigurationScreen.kt @@ -26,12 +26,7 @@ import com.navi.base.utils.EMPTY @Composable fun NaviConfigurationScreen( - onDevClick: () -> Unit, - isDevEnabled: Boolean, - onQaClick: () -> Unit, - isQaEnabled: Boolean, onVersionCodeChange: (versionCode: String) -> Unit, - onBaseUrlChanged: (baseUrl: String) -> Unit, onBackButtonClick: () -> Unit, onEnterApJourneyClicked: (applicationType: String?) -> Unit, onRoutingKeyChange: (routingKey: String) -> Unit, @@ -39,7 +34,6 @@ fun NaviConfigurationScreen( ) { var versionCode by remember { mutableStateOf(TextFieldValue(EMPTY)) } var ctaData by remember { mutableStateOf(TextFieldValue(EMPTY)) } - var baseUrl by remember { mutableStateOf(TextFieldValue(EMPTY)) } var applicationType by remember { mutableStateOf(TextFieldValue(EMPTY)) } var routingKey by remember { mutableStateOf(TextFieldValue(EMPTY)) } @@ -49,21 +43,11 @@ fun NaviConfigurationScreen( Column(modifier = Modifier.verticalScroll(state = rememberScrollState())) { NaviHeaderView( titleText = "Navi Configuration", - subtitleText = "Change Environment, Version Code, & Base URL on the fly", + subtitleText = "Change App Version Code on the fly", ) Spacer(modifier = Modifier.height(6.dp)) - NaviToggleButtonsWithTitle( - titleText = "Environment", - firstButtonTitleText = "DEV", - onFirstButtonClick = onDevClick, - isFirstButtonSelected = isDevEnabled, - secondButtonTitleText = "QA", - onSecondButtonClick = onQaClick, - isSecondButtonSelected = isQaEnabled, - ) - NaviTextFieldWithTitleAndButton( titleText = "Version Code", placeholderText = "Enter version code here", @@ -75,39 +59,30 @@ fun NaviConfigurationScreen( ) NaviTextFieldWithTitleAndButton( - titleText = "Base URL", - placeholderText = "Enter base url here", - keyboardType = KeyboardType.Uri, - inputText = baseUrl, - onTextValueChanged = { baseUrl = it }, - buttonText = "Update", - onButtonClick = { onBaseUrlChanged(baseUrl.text) }, - ) - - NaviTextFieldWithTitleAndButton( - titleText = "Test CTA", + titleText = "CTA Launcher", placeholderText = - "Enter CTA json here . For eg:" + - "\n\n" + - " {\n" + - " \"url\": \"gi/fresh_policy_form/form\",\n" + - " \"type\": \"REDIRECTION_CTA\",\n" + - " \"parameters\": [\n" + - " {\n" + - " \"key\": \"type\",\n" + - " \"value\": \"FRESH_POLICY\"\n" + - " }\n" + - " ]\n" + - " } ", + """ + { + "url": "gi/fresh_policy_form/form", + "type": "REDIRECTION_CTA", + "parameters": [ + { + "key": "type", + "value": "FRESH_POLICY" + } + ] + } + """ + .trimIndent(), keyboardType = KeyboardType.Text, inputText = ctaData, onTextValueChanged = { ctaData = it }, - buttonText = "Test CTA", + buttonText = "Launch", onButtonClick = { onCtaTestingClicked(ctaData.text) }, ) NaviTextFieldWithTitleAndButton( - titleText = "AP Journey", + titleText = "AP Journey Launcher", placeholderText = "Enter application type", keyboardType = KeyboardType.Uri, inputText = applicationType, @@ -135,12 +110,7 @@ fun NaviConfigurationScreen( @Composable fun NaviConfigurationScreenPreview() { NaviConfigurationScreen( - onDevClick = {}, - isDevEnabled = true, - onQaClick = {}, - isQaEnabled = false, onVersionCodeChange = {}, - onBaseUrlChanged = {}, onBackButtonClick = {}, onEnterApJourneyClicked = {}, onRoutingKeyChange = {}, diff --git a/android/app/src/main/java/com/naviapp/configuration/composable/NaviToggleButtonsWithTitle.kt b/android/app/src/main/java/com/naviapp/configuration/composable/NaviToggleButtonsWithTitle.kt deleted file mode 100644 index 44272e615a..0000000000 --- a/android/app/src/main/java/com/naviapp/configuration/composable/NaviToggleButtonsWithTitle.kt +++ /dev/null @@ -1,86 +0,0 @@ -/* - * - * * Copyright © 2023 by Navi Technologies Limited - * * All rights reserved. Strictly confidential - * - */ - -package com.naviapp.configuration.composable - -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width -import androidx.compose.material.Text -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.compose.ui.unit.sp -import com.navi.design.font.FontWeightEnum -import com.navi.design.theme.Black1A1A1A -import com.navi.design.theme.composeFontFamily -import com.navi.design.theme.getFontWeight - -@Composable -fun NaviToggleButtonsWithTitle( - titleText: String, - firstButtonTitleText: String, - onFirstButtonClick: () -> Unit, - isFirstButtonSelected: Boolean, - secondButtonTitleText: String, - onSecondButtonClick: () -> Unit, - isSecondButtonSelected: Boolean, -) { - Column( - modifier = - Modifier.fillMaxWidth() - .padding( - start = 16.dp, - end = 16.dp, - top = 24.dp, - ) - ) { - Text( - modifier = Modifier.fillMaxWidth(), - text = titleText, - fontSize = 16.sp, - color = Black1A1A1A, - fontFamily = composeFontFamily, - fontWeight = getFontWeight(FontWeightEnum.TT_MEDIUM), - ) - Spacer(modifier = Modifier.height(6.dp)) - Row { - NaviButton( - title = firstButtonTitleText, - onButtonClick = onFirstButtonClick, - isSelected = isFirstButtonSelected, - ) - - Spacer(modifier = Modifier.width(10.dp)) - - NaviButton( - title = secondButtonTitleText, - onButtonClick = onSecondButtonClick, - isSelected = isSecondButtonSelected, - ) - } - } -} - -@Preview(showBackground = true) -@Composable -fun NaviToggleButtonsWithTitlePreview() { - NaviToggleButtonsWithTitle( - titleText = "Label", - firstButtonTitleText = "Button One", - onFirstButtonClick = {}, - isFirstButtonSelected = true, - secondButtonTitleText = "Button Two", - onSecondButtonClick = {}, - isSecondButtonSelected = false, - ) -} diff --git a/android/app/src/main/java/com/naviapp/utils/Keys.kt b/android/app/src/main/java/com/naviapp/utils/Keys.kt index d0e8f4c1b7..ea675ffd4b 100644 --- a/android/app/src/main/java/com/naviapp/utils/Keys.kt +++ b/android/app/src/main/java/com/naviapp/utils/Keys.kt @@ -32,8 +32,5 @@ const val ICON_UPI_ID = "UPI_ID" const val ICON_UPI_DETAILS = "UPI_DETAILS" const val PROD = "prod" const val QA = "qa" -const val DEV = "dev" -const val COUNTRY_ISO = "IN" const val EMPTY_DATE_STRING = "--" const val COMMA_SPACE = ", " -const val COMMA_WITHOUT_SPACE = "," diff --git a/android/app/src/qa/res/xml/network_security_config.xml b/android/app/src/qa/res/xml/network_security_config.xml index 7f8bcff7af..ad427445dc 100644 --- a/android/app/src/qa/res/xml/network_security_config.xml +++ b/android/app/src/qa/res/xml/network_security_config.xml @@ -2,7 +2,7 @@ @@ -14,7 +14,4 @@ - - localhost - - \ No newline at end of file + diff --git a/android/app/src/uitest/AndroidManifest.xml b/android/app/src/uitest/AndroidManifest.xml deleted file mode 100644 index a549ead0a4..0000000000 --- a/android/app/src/uitest/AndroidManifest.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - diff --git a/android/app/src/uitest/google-services.json b/android/app/src/uitest/google-services.json deleted file mode 100644 index b4d59eed19..0000000000 --- a/android/app/src/uitest/google-services.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "project_info": { - "project_number": "679085041776", - "firebase_url": "https://navi-qa-default-rtdb.asia-southeast1.firebasedatabase.app", - "project_id": "navi-qa", - "storage_bucket": "navi-qa.appspot.com" - }, - "client": [ - { - "client_info": { - "mobilesdk_app_id": "1:679085041776:android:a1be795c0b472af6546cb5", - "android_client_info": { - "package_name": "com.naviapp.dev" - } - }, - "oauth_client": [ - { - "client_id": "679085041776-433aj023nobf5g9u08ggpqfhg4q9flm1.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyDNSiKfkive7IietLqcsnoNLVER3OvHwrc" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [ - { - "client_id": "679085041776-433aj023nobf5g9u08ggpqfhg4q9flm1.apps.googleusercontent.com", - "client_type": 3 - }, - { - "client_id": "679085041776-5e456o4prchtmblcl6r2vs7nrtuo5tvc.apps.googleusercontent.com", - "client_type": 2, - "ios_info": { - "bundle_id": "com.gonavi.app.debug" - } - } - ] - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:679085041776:android:e2fdb172f0bd6df6546cb5", - "android_client_info": { - "package_name": "com.naviapp.fps.dev" - } - }, - "oauth_client": [ - { - "client_id": "679085041776-433aj023nobf5g9u08ggpqfhg4q9flm1.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyDNSiKfkive7IietLqcsnoNLVER3OvHwrc" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [ - { - "client_id": "679085041776-433aj023nobf5g9u08ggpqfhg4q9flm1.apps.googleusercontent.com", - "client_type": 3 - }, - { - "client_id": "679085041776-5e456o4prchtmblcl6r2vs7nrtuo5tvc.apps.googleusercontent.com", - "client_type": 2, - "ios_info": { - "bundle_id": "com.gonavi.app.debug" - } - } - ] - } - } - } - ], - "configuration_version": "1" -} \ No newline at end of file diff --git a/android/app/src/uitest/res/values/strings.xml b/android/app/src/uitest/res/values/strings.xml deleted file mode 100644 index af7cbaefd1..0000000000 --- a/android/app/src/uitest/res/values/strings.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - Navi Ui Test - diff --git a/android/app/src/uitest/res/xml/network_security_config.xml b/android/app/src/uitest/res/xml/network_security_config.xml deleted file mode 100644 index 7f8bcff7af..0000000000 --- a/android/app/src/uitest/res/xml/network_security_config.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - localhost - - \ No newline at end of file diff --git a/android/application-platform/navi-ap/build.gradle b/android/application-platform/navi-ap/build.gradle index a08c520e1b..37369e2d6a 100644 --- a/android/application-platform/navi-ap/build.gradle +++ b/android/application-platform/navi-ap/build.gradle @@ -47,16 +47,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/application-platform/navi-ap/src/dev/res/raw/ap_mock.json b/android/application-platform/navi-ap/src/dev/res/raw/ap_mock.json deleted file mode 100644 index f1bcfc88b4..0000000000 --- a/android/application-platform/navi-ap/src/dev/res/raw/ap_mock.json +++ /dev/null @@ -1,4252 +0,0 @@ -{ - "getApplicationId": { - "applicationResponse": { - "applicationType": "PL", - "applicationId": "21a23d52-79ec-4466-bd52-b98eeb523ff0", - "applicantType": "CUSTOMER", - "applicationStatus": "OPEN", - "configVersion": "78" - }, - "currentScreenCta": { - "cta": { - "url": "applicationPlatform/GENERIC_SCREEN", - "parameters": [ - { - "key": "applicationType", - "value": "PL" - }, - { - "key": "applicationId", - "value": "21a23d52-79ec-4466-bd52-b98eeb523ff0" - }, - { - "key": "screenId", - "value": "PL_OFFER_GENERATION_LOADER_SCREEN" - }, - { - "key": "action", - "value": "RESUME" - }, - { - "key": "configVersion", - "value": "78" - } - ] - }, - "shouldPoll": false, - "shouldRender": true, - "screenMetaData": { - "screenName": "PL_OFFER_GENERATION_LOADER_SCREEN", - "screenType": "LOADER_SCREEN" - }, - "screenPollingConfigs": { - "initialDelay": 5, - "interval": 5, - "numOfRetries": 24 - } - }, - "currentScreenDefinition": { - "screenData": { - "metaData": { - "screenName": "PL_OFFER_GENERATION_LOADER_SCREEN", - "screenType": "LOADER_SCREEN" - }, - "screenStructure": {} - } - } - }, - "getNextCta": { - "currentScreenCta": { - "cta": { - "url": "BOTTOMSHEET", - "parameters": [ - { - "key": "applicationType", - "value": "PL" - }, - { - "key": "applicationId", - "value": "21a23d52-79ec-4466-bd52-b98eeb523ff0" - }, - { - "key": "screenId", - "value": "PAN_ASYNC_ERROR_PAN_VERIFICATION_FAILED_BOTTOM_SHEET" - }, - { - "key": "action", - "value": "NEXT" - }, - { - "key": "configVersion", - "value": "78" - } - ] - }, - "shouldPoll": false, - "shouldRender": true, - "screenMetaData": { - "screenName": "PAN_ASYNC_ERROR_PAN_VERIFICATION_FAILED_BOTTOM_SHEET", - "screenType": "OVERLAY_SCREEN" - }, - "screenPollingConfigs": { - "initialDelay": 5, - "interval": 5, - "numOfRetries": 24 - } - }, - "currentScreenDefinition": { - "screenData": { - "metaData": { - "screenName": "PAN_ASYNC_ERROR_PAN_VERIFICATION_FAILED_BOTTOM_SHEET", - "screenType": "OVERLAY_SCREEN" - }, - "screenStructure": {} - } - } - }, - "basicDetailsScreenDefinition": { - "screenData": { - "metaData": { - "screenName": "PL_BASIC_DETAILS_SCREEN", - "screenType": "DEFAULT" - }, - "screenStructure": { - "drawer": {}, - "footer": { - "widgetId": "yDiYN", - "widgetData": { - "data": { - "data_safe_text_yDiYN": { - "text": "Your data is safe.", - "viewType": "Text" - }, - "back_cta_button_yDiYN": { - "onClick": { - "actions": [] - }, - "viewType": "Button" - }, - "next_cta_button_yDiYN": { - "onClick": { - "actions": [ - { - "type": "ValidateMultipleWidgetsAction", - "states": [ - { - "stateId": "validate_text_input_rs1G2", - "widgetId": "rs1G2" - }, - { - "stateId": "validate_date_input_w9VJ3", - "widgetId": "w9VJ3" - } - ], - "onSuccess": { - "actions": [ - { - "type": "TriggerApiAction", - "fields": [ - { - "name": "applicant.name", - "source": "WIDGET_OUTPUT" - }, - { - "name": "applicant.dob", - "source": "WIDGET_OUTPUT" - }, - { - "name": "applicant.finoramic.userId", - "source": "SDK_OUTPUT", - "sourceProperty": "finoramicUserId" - }, - { - "name": "applicant.finoramic.loginStatus", - "source": "SDK_OUTPUT", - "sourceProperty": "finoramicLoginStatus" - }, - { - "name": "applicant.finoramic.email", - "source": "SDK_OUTPUT", - "sourceProperty": "finoramicEmail" - } - ], - "apiType": "FillApi" - } - ] - } - }, - { - "type": "AnalyticsActionV2", - "eventName": "PL_Basic_Next_Clicked", - "outputFields": [ - { - "source": "WIDGET_OUTPUT", - "fieldName": "applicant.name", - "propertyName": "firstname_attribute" - }, - { - "source": "WIDGET_OUTPUT", - "fieldName": "applicant.dob", - "propertyName": "dob_attribute" - } - ], - "isNeededForFirebase": false, - "isNeededForAppsflyer": true, - "predefinedEventProperties": [ - { - "propertyName": "journey_platform", - "propertyValue": "application_platform" - } - ] - } - ] - }, - "viewType": "Button" - }, - "progress_indicator_yDiYN": { - "progress": "0.1", - "viewType": "LinearProgressIndicator" - }, - "data_safe_info_text_yDiYN": { - "text": "Know more", - "onClick": { - "actions": [ - { - "type": "CtaAction", - "ctaData": { - "url": "PL_BASIC_DETAILS_DATA_SAFETY_BOTTOM_SHEET", - "type": "BOTTOMSHEET" - } - } - ] - }, - "viewType": "Text" - }, - "back_cta_button_text_yDiYN": { - "text": "", - "viewType": "Text" - }, - "data_safe_start_icon_yDiYN": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_white_tick_with_safety_green_bg_10x12.png", - "viewType": "Image" - }, - "next_cta_button_text_yDiYN": { - "text": "Next", - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "layoutId": "footer_with_progress_and_data_safe_info_container_yDiYN", - "viewType": "Column", - "arrangementData": { - "arrangementType": "Center" - }, - "horizontalAlignment": "CenterHorizontally" - }, - "childrenViews": [ - { - "property": { - "width": "FILL_TO_CONSTRAINTS", - "height": "WRAP_CONTENT", - "padding": { - "top": 16, - "bottom": 4 - }, - "layoutId": "data_safe_container_yDiYN", - "viewType": "ConstraintLayout", - "isVisible": "true" - }, - "childrenViews": [ - { - "property": { - "width": "10", - "height": "12", - "layoutId": "data_safe_start_icon_yDiYN", - "viewType": "Image", - "constraintLinks": { - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "parent", - "constraint": "START" - }, - "bottom": { - "layoutId": "parent", - "constraint": "BOTTOM" - } - } - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 4, - "start": 4 - }, - "fontSize": 12, - "layoutId": "data_safe_text_yDiYN", - "viewType": "Text", - "textColor": "#6B6B6B", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM", - "constraintLinks": { - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "data_safe_start_icon_yDiYN", - "constraint": "END" - } - } - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "fontSize": 12, - "layoutId": "data_safe_info_text_yDiYN", - "viewType": "Text", - "textColor": "#FF5732", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM", - "textDecoration": "Underline", - "constraintLinks": { - "END": { - "layoutId": "parent", - "constraint": "END" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "data_safe_text_yDiYN", - "constraint": "END" - } - } - } - } - ] - }, - { - "property": { - "color": "#14BC51", - "width": "MATCH_PARENT", - "height": "18", - "padding": { - "top": 16 - }, - "layoutId": "progress_indicator_yDiYN", - "viewType": "LinearProgressIndicator", - "isVisible": "true", - "backgroundColor": "#F5F5F5" - } - }, - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 16, - "top": 16, - "start": 16, - "bottom": 32 - }, - "layoutId": "footer_buttons_yDiYN", - "viewType": "ConstraintLayout" - }, - "childrenViews": [ - { - "property": { - "shape": { - "size": 100, - "shapeType": "RoundedCornerShape" - }, - "width": "FILL_TO_CONSTRAINTS", - "colors": { - "backgroundColor": "#F5F5F5" - }, - "height": "48", - "layoutId": "back_cta_button_yDiYN", - "viewType": "Button", - "elevation": { - "defaultElevation": 0 - }, - "isVisible": "false", - "isStateFul": true, - "constraintLinks": { - "end": { - "layoutId": "next_cta_button_yDiYN", - "constraint": "START" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "parent", - "constraint": "START" - } - } - }, - "childrenViews": [ - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "fontSize": 14, - "layoutId": "back_cta_button_text_yDiYN", - "viewType": "Text", - "textColor": "#FF5732", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM" - } - } - ] - }, - { - "property": { - "shape": { - "size": 100, - "shapeType": "RoundedCornerShape" - }, - "width": "FILL_TO_CONSTRAINTS", - "colors": { - "backgroundColor": "#FF5732" - }, - "height": "48", - "padding": { - "start": "16" - }, - "layoutId": "next_cta_button_yDiYN", - "viewType": "Button", - "elevation": { - "defaultElevation": 0 - }, - "isVisible": "true", - "isStateFul": true, - "constraintLinks": { - "end": { - "layoutId": "parent", - "constraint": "END" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "back_cta_button_yDiYN", - "constraint": "END" - } - } - }, - "childrenViews": [ - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "fontSize": 14, - "layoutId": "next_cta_button_text_yDiYN", - "viewType": "Text", - "textColor": "#FFFFFF", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM" - } - } - ] - } - ] - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [] - }, - "header": { - "widgetId": "Mz9pM", - "widgetData": { - "data": { - "left_icon_Mz9pM": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_left_black_arrow_24x24.png", - "onClick": { - "actions": [ - { - "type": "CtaAction", - "ctaData": { - "url": "applicationPlatform/GENERIC_SCREEN", - "parameters": [ - { - "key": "applicationId", - "value": "21a23d52-79ec-4466-bd52-b98eeb523ff0" - }, - { - "key": "applicationType", - "value": "PL" - }, - { - "key": "screenId", - "value": "PL_INTRO_SCREEN" - }, - { - "key": "configVersion", - "value": "78" - }, - { - "key": "action", - "value": "BACK" - } - ] - } - } - ] - }, - "viewType": "Image" - }, - "right_text_Mz9pM": { - "text": "HELP", - "onClick": { - "actions": [ - { - "type": "CtaAction", - "ctaData": { - "url": "PL_BASIC_DETAILS_HELP_BOTTOM_SHEET", - "type": "BOTTOMSHEET" - } - } - ] - }, - "viewType": "Text" - }, - "center_text_Mz9pM": { - "text": "Cash Loan", - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "64", - "padding": { - "end": 16, - "start": 16 - }, - "layoutId": "widget_container_Mz9pM", - "viewType": "ConstraintLayout", - "backgroundColor": "" - }, - "childrenViews": [ - { - "property": { - "width": "24", - "height": "24", - "layoutId": "left_icon_Mz9pM", - "viewType": "Image", - "constraintLinks": { - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "parent", - "constraint": "START" - }, - "bottom": { - "layoutId": "parent", - "constraint": "BOTTOM" - } - } - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "top": 24 - }, - "fontSize": 14, - "layoutId": "center_text_Mz9pM", - "viewType": "Text", - "textColor": "#6B6B6B", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR", - "constraintLinks": { - "end": { - "layoutId": "parent", - "constraint": "END" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "parent", - "constraint": "START" - } - } - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "fontSize": 14, - "layoutId": "right_text_Mz9pM", - "viewType": "Text", - "textColor": "#FF5732", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_SEMI_BOLD", - "constraintLinks": { - "end": { - "layoutId": "parent", - "constraint": "END" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "bottom": { - "layoutId": "parent", - "constraint": "BOTTOM" - } - } - } - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [] - }, - "toasts": [], - "content": { - "widgets": [ - { - "widgetId": "wyIEf", - "widgetData": { - "data": { - "title_wyIEf": { - "text": "Basic Details", - "viewType": "Text" - }, - "sub_title_wyIEf": { - "text": "We need these details to check your eligibility", - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 16, - "start": 16 - }, - "viewType": "Column", - "backgroundColor": "#FFFFFF", - "horizontalAlignment": "Start" - }, - "childrenViews": [ - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "top": "8" - }, - "fontSize": "24", - "layoutId": "title_wyIEf", - "viewType": "Text", - "textAlign": "Start", - "textColor": "#1A1A1A", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM" - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "top": "4", - "bottom": "8" - }, - "fontSize": "12", - "layoutId": "sub_title_wyIEf", - "viewType": "Text", - "textAlign": "Start", - "textColor": "#6B6B6B", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR" - } - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [] - }, - { - "widgetId": "rs1G2", - "widgetData": { - "data": { - "label_text_rs1G2": { - "text": "Full name", - "viewType": "Text" - }, - "text_input_rs1G2": { - "hint": "Enter your full name here", - "onClick": { - "actions": [] - }, - "viewType": "CustomTextField", - "inputText": "Hitesh", - "onFocusAction": { - "actions": [ - { - "type": "AnalyticsActionV2", - "eventName": "PL_Basic_Name_Entered", - "eventProperties": [ - { - "key": "text_input_rs1G2", - "keySuffix": "_input", - "propertyName": "firstname_attribute" - } - ], - "isNeededForFirebase": false, - "isNeededForAppsflyer": true, - "predefinedEventProperties": [ - { - "propertyName": "journey_platform", - "propertyValue": "application_platform" - } - ] - } - ] - }, - "onValueChangeAction": { - "actions": [ - { - "type": "ValidateDataAction", - "validations": [ - { - "key": "text_input_rs1G2", - "uiTronValidations": [ - { - "onFailure": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": true, - "viewType": "CustomTextField", - "errorMessage": "Please enter your full name" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "onSuccess": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": false, - "viewType": "CustomTextField" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "validationType": "NOT_BLANK" - }, - { - "maxLength": "60", - "minLength": "3", - "onFailure": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": true, - "viewType": "CustomTextField", - "errorMessage": "Please enter a valid name" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "onSuccess": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": false, - "viewType": "CustomTextField" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "validationType": "LENGTH_RANGE" - }, - { - "regex": "([a-zA-Z\\s]{1,})", - "onFailure": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": true, - "viewType": "CustomTextField", - "errorMessage": "Please enter a valid name" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "onSuccess": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": false, - "viewType": "CustomTextField" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "validationType": "REGEX" - } - ] - } - ] - } - ] - }, - "onInputValueChangeAction": { - "actions": [] - } - }, - "label_text_info_rs1G2": { - "text": " (As per PAN card) ", - "viewType": "Text" - }, - "label_right_drawable_rs1G2": { - "iconUrl": "", - "onClick": { - "actions": [] - }, - "viewType": "Image" - }, - "textfield_leading_icon_rs1G2": { - "iconUrl": "", - "viewType": "Image" - }, - "textfield_trailing_icon_rs1G2": { - "iconUrl": "", - "viewType": "Image" - }, - "text_input_default_bottom_success_icon_rs1G2": { - "iconUrl": "", - "viewType": "Image" - }, - "text_input_default_bottom_success_text_rs1G2": { - "text": "", - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "top": "24" - }, - "layoutId": "label_with_text_input_rs1G2", - "viewType": "Column", - "horizontalAlignment": "Start" - }, - "childrenViews": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "start": 16 - }, - "viewType": "Row", - "arrangementData": { - "arrangementType": "Start" - }, - "verticalAlignment": "CenterVertically" - }, - "childrenViews": [ - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 4 - }, - "fontSize": 16, - "layoutId": "label_text_rs1G2", - "viewType": "Text", - "textColor": "#191919", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM" - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 4 - }, - "fontSize": 14, - "layoutId": "label_text_info_rs1G2", - "viewType": "Text", - "textColor": "#6B6B6B", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR" - } - }, - { - "property": { - "width": "12", - "height": "14", - "margin": { - "top": 2 - }, - "layoutId": "label_right_drawable_rs1G2", - "viewType": "Image" - } - } - ] - }, - { - "property": { - "shape": { - "size": 8, - "shapeType": "RoundedCornerShape" - }, - "width": "MATCH_PARENT", - "colors": { - "errorBorderColor": "#EF0000", - "focusedBorderColor": "#E3E5E5", - "unfocusedBorderColor": "#E3E5E5" - }, - "height": "WRAP_CONTENT", - "maxChar": "60", - "padding": { - "end": 16, - "top": 8, - "start": 16 - }, - "layoutId": "text_input_rs1G2", - "viewType": "CustomTextField", - "errorView": { - "data": { - "text_input_failure_icon_rs1G2": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_red_exclamation_info_16x16.png", - "viewType": "Image" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "layoutId": "text_input_failure_view_rs1G2", - "viewType": "Row", - "arrangementData": { - "arrangementType": "Start" - } - }, - "childrenViews": [ - { - "property": { - "width": "16", - "height": "16", - "layoutId": "text_input_failure_icon_rs1G2", - "viewType": "Image" - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 0, - "top": 0, - "start": 4, - "bottom": 0 - }, - "fontSize": 12, - "layoutId": "text_input_failure_message_rs1G2", - "viewType": "Text", - "textColor": "#FF0000", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR", - "isStateFul": true, - "isDataMutable": true - } - } - ] - } - ] - }, - "hintStyle": { - "width": "MATCH_PARENT", - "padding": { - "end": 4, - "start": 4 - }, - "fontSize": 14, - "textAlign": "CenterStart", - "textColor": "#6B6B6B" - }, - "isEnabled": "true", - "singleLine": "true", - "rowProperty": { - "padding": { - "end": 12, - "top": 14, - "start": 12, - "bottom": 14 - }, - "borderStrokeData": { - "shape": { - "size": 8, - "shapeType": "RoundedCornerShape" - }, - "width": 1 - } - }, - "successView": { - "data": { - "text_input_success_icon_rs1G2": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_green_exclamation_info_16x16.png", - "viewType": "Image" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "layoutId": "text_input_success_view_rs1G2", - "viewType": "Row", - "arrangementData": { - "arrangementType": "Start" - } - }, - "childrenViews": [ - { - "property": { - "width": "16", - "height": "16", - "layoutId": "text_input_success_icon_rs1G2", - "viewType": "Image" - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 0, - "top": 0, - "start": 4, - "bottom": 0 - }, - "fontSize": 12, - "layoutId": "text_input_success_message_rs1G2", - "viewType": "Text", - "textColor": "#00A300", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR", - "isStateFul": true, - "isDataMutable": true - } - } - ] - } - ] - }, - "isDataMutable": true, - "keyboardOptions": { - "imeAction": "Next", - "keyboardType": "Text", - "capitalization": "Words" - }, - "inputTextProperty": { - "padding": { - "end": 4, - "start": 4 - }, - "alignment": "CenterStart", - "textStyle": { - "fontSize": 14, - "textColor": "#191919" - } - }, - "textFieldIconData": { - "leadingIcon": { - "property": { - "width": "12", - "height": "12", - "layoutId": "textfield_leading_icon_rs1G2", - "viewType": "Image", - "isVisible": "false" - } - }, - "trailingIcon": { - "property": { - "width": "12", - "height": "12", - "layoutId": "textfield_trailing_icon_rs1G2", - "viewType": "Image", - "isVisible": "false" - } - } - }, - "errorMessageLayoutId": "text_input_failure_message_rs1G2", - "visualTransformation": { - "type": "" - }, - "successMessageLayoutId": "text_input_success_message_rs1G2", - "successTextTransformation": { - "type": "" - }, - "applyValidationOnValueChange": "false" - } - }, - { - "property": { - "width": "MATCH_PARENT", - "padding": { - "end": 16, - "top": 8, - "start": 16 - }, - "layoutId": "text_input_default_bottom_success_view_rs1G2", - "viewType": "Row", - "isVisible": "false", - "statesMap": { - "hide": { - "viewType": "Row", - "isVisible": false - }, - "show": { - "viewType": "Row", - "isVisible": true - } - }, - "isStateFul": "true", - "arrangementData": { - "arrangementType": "Start" - } - }, - "childrenViews": [ - { - "property": { - "width": "16", - "height": "16", - "layoutId": "text_input_default_bottom_success_icon_rs1G2", - "viewType": "Image" - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 0, - "top": 0, - "start": 4, - "bottom": 0 - }, - "fontSize": 12, - "layoutId": "text_input_default_bottom_success_text_rs1G2", - "viewType": "Text", - "textColor": "#00A300", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR", - "isStateFul": true, - "isDataMutable": true - } - } - ] - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetOutput": [ - { - "layoutId": "text_input_rs1G2", - "fieldName": "applicant.name" - } - ], - "widgetStates": [ - { - "stateId": "validate_text_input_rs1G2", - "actionData": { - "actions": [ - { - "type": "ValidateDataAction", - "validations": [ - { - "key": "text_input_rs1G2", - "uiTronValidations": [ - { - "onFailure": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": true, - "viewType": "CustomTextField", - "errorMessage": "Please enter your full name" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "onSuccess": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": false, - "viewType": "CustomTextField" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "validationType": "NOT_BLANK" - }, - { - "maxLength": "60", - "minLength": "3", - "onFailure": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": true, - "viewType": "CustomTextField", - "errorMessage": "Please enter a valid name" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "onSuccess": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": false, - "viewType": "CustomTextField" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "validationType": "LENGTH_RANGE" - }, - { - "regex": "([a-zA-Z\\s]{1,})", - "onFailure": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": true, - "viewType": "CustomTextField", - "errorMessage": "Please enter a valid name" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "onSuccess": { - "actions": [ - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": false, - "viewType": "CustomTextField" - }, - "layoutId": "text_input_rs1G2" - } - ] - } - ] - }, - "validationType": "REGEX" - } - ] - } - ] - } - ] - } - } - ], - "widgetEventListeners": [] - }, - { - "widgetId": "w9VJ3", - "widgetData": { - "data": { - "date_input_w9VJ3": { - "hint": [ - "DD", - "MM", - "YYYY" - ], - "viewType": "DateTextField", - "inputText": "1992-07-13", - "dateFormat": "yyyy-MM-dd", - "dateSeparator": " - ", - "onFocusAction": { - "actions": [ - { - "type": "TriggerApiAction", - "fields": [ - { - "name": "applicant.name", - "source": "WIDGET_OUTPUT" - } - ], - "apiType": "PartialFillCallAction" - }, - { - "type": "AnalyticsActionV2", - "eventName": "PL_Basic_DOB_Entered", - "eventProperties": [ - { - "key": "date_input_w9VJ3", - "keySuffix": "_input", - "propertyName": "dob_attribute" - } - ], - "isNeededForFirebase": false, - "isNeededForAppsflyer": true, - "predefinedEventProperties": [ - { - "propertyName": "journey_source", - "propertyValue": "AP" - } - ] - } - ] - }, - "onValueChangeAction": { - "actions": [ - { - "type": "ValidateDataAction", - "validations": [ - { - "key": "date_input_w9VJ3", - "uiTronValidations": [ - { - "onFailure": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "stateId": "failure", - "layoutId": "date_input_w9VJ3" - } - ] - }, - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": true, - "viewType": "DateTextField", - "errorMessage": "Enter valid date" - }, - "layoutId": "date_input_w9VJ3" - } - ] - } - ] - }, - "onSuccess": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "stateId": "success", - "layoutId": "date_input_w9VJ3" - } - ] - }, - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": false, - "viewType": "DateTextField" - }, - "layoutId": "date_input_w9VJ3" - } - ] - } - ] - }, - "formatPattern": "yyyy-MM-dd", - "validationType": "DATE_FORMAT" - }, - { - "maxYears": "65", - "minYears": "18", - "onFailure": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "stateId": "failure", - "layoutId": "date_input_w9VJ3" - } - ] - }, - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": true, - "viewType": "DateTextField", - "errorMessage": "Valid Age Range is from 18 to 65 years" - }, - "layoutId": "date_input_w9VJ3" - } - ] - } - ] - }, - "onSuccess": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "stateId": "success", - "layoutId": "date_input_w9VJ3" - } - ] - }, - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": false, - "viewType": "DateTextField" - }, - "layoutId": "date_input_w9VJ3" - } - ] - } - ] - }, - "formatPattern": "yyyy-MM-dd", - "validationType": "DATE_RANGE" - } - ] - } - ] - } - ] - } - }, - "label_text_w9VJ3": { - "text": "Date of birth", - "viewType": "Text" - }, - "label_right_drawable_w9VJ3": { - "iconUrl": "", - "viewType": "Image" - }, - "textfield_leading_icon_w9VJ3": { - "iconUrl": "", - "viewType": "Image" - }, - "textfield_trailing_icon_w9VJ3": { - "viewType": "Image" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "top": 24 - }, - "layoutId": "label_with_date_input_w9VJ3", - "viewType": "Column", - "horizontalAlignment": "Start" - }, - "childrenViews": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "start": 16 - }, - "viewType": "Row", - "arrangementData": { - "arrangementType": "Start" - }, - "verticalAlignment": "CenterVertically" - }, - "childrenViews": [ - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "fontSize": 16, - "layoutId": "label_text_w9VJ3", - "viewType": "Text", - "textColor": "#22223D", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM" - } - }, - { - "property": { - "width": "18", - "height": "12", - "padding": { - "start": 6 - }, - "layoutId": "label_right_drawable_w9VJ3", - "viewType": "Image" - } - } - ] - }, - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "layoutId": "date_input_w9VJ3", - "viewType": "DateTextField", - "errorView": { - "data": { - "dob_failure_icon_w9VJ3": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_red_exclamation_info_16x16.png", - "viewType": "Image" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "padding": { - "end": 0, - "top": 0, - "start": 16, - "bottom": 0 - }, - "layoutId": "dob_error_view_w9VJ3", - "viewType": "Row", - "arrangementData": { - "arrangementType": "Start" - } - }, - "childrenViews": [ - { - "property": { - "width": "16", - "height": "16", - "layoutId": "dob_failure_icon_w9VJ3", - "viewType": "Image" - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 0, - "top": 0, - "start": 6, - "bottom": 0 - }, - "fontSize": 12, - "layoutId": "dob_failure_message_w9VJ3", - "viewType": "Text", - "textColor": "#EF0000", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR", - "isStateFul": true, - "isDataMutable": true - } - } - ] - } - ] - }, - "statesMap": { - "failure": { - "viewType": "DateTextField", - "borderStroke": { - "color": "#EF0000", - "width": 1 - } - }, - "success": { - "viewType": "DateTextField", - "borderStroke": { - "color": "#E3E5E5", - "width": 1 - } - } - }, - "isStateFul": true, - "rowProperty": { - "shape": { - "radius": { - "topEnd": 8, - "topStart": 8, - "bottomEnd": 8, - "bottomStart": 8 - }, - "shapeType": "RoundedCornerShape" - }, - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 16, - "top": 8, - "start": 16 - }, - "arrangementData": { - "arrangementType": "Start" - }, - "verticalAlignment": "CenterVertically" - }, - "successView": { - "data": { - "dob_success_icon_w9VJ3": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_green_exclamation_info_16x16.png", - "viewType": "Image" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "padding": { - "end": 0, - "top": 0, - "start": 16, - "bottom": 0 - }, - "layoutId": "dob_success_view_w9VJ3", - "viewType": "Row", - "arrangementData": { - "arrangementType": "Start" - } - }, - "childrenViews": [ - { - "property": { - "width": "16", - "height": "16", - "layoutId": "dob_success_icon_w9VJ3", - "viewType": "Image" - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 0, - "top": 0, - "start": 6, - "bottom": 0 - }, - "fontSize": 12, - "layoutId": "dob_success_message_w9VJ3", - "viewType": "Text", - "textColor": "#22A940", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR", - "isStateFul": true, - "isDataMutable": true - } - } - ] - } - ] - }, - "borderStroke": { - "color": "#E3E5E5", - "width": 1 - }, - "textProperty": { - "padding": { - "top": 13, - "bottom": 13 - }, - "fontSize": 14, - "layoutId": "hint_w9VJ3", - "textColor": "#A8A8A8" - }, - "isDataMutable": true, - "enableDatePicker": "false", - "textFieldIconData": { - "leadingIcon": { - "property": { - "width": "40", - "height": "24", - "margin": { - "start": "16" - }, - "layoutId": "textfield_leading_icon_w9VJ3_w9VJ3", - "viewType": "Image", - "isVisible": "false" - } - }, - "trailingIcon": { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "margin": { - "end": "16" - }, - "viewType": "Box", - "isVisible": "false", - "contentAlignment": "CenterEnd" - }, - "childrenViews": [ - { - "property": { - "width": "24", - "height": "24", - "layoutId": "textfield_trailing_icon_w9VJ3_w9VJ3", - "viewType": "Image" - } - } - ] - } - }, - "valueTransformation": { - "type": "DOB", - "targetDateFormat": "yyyy-MM-dd", - "currentDateFormat": "ddMMyyyy" - }, - "errorMessageLayoutId": "dob_failure_message_w9VJ3", - "textFieldPropertyList": [ - { - "width": "37", - "maxChar": 2, - "padChar": "0", - "padding": { - "top": 13, - "start": 16, - "bottom": 13 - }, - "layoutId": "date_w9VJ3", - "hintStyle": { - "fontSize": 14, - "textColor": "#A8A8A8" - }, - "textStyle": { - "fontSize": 14, - "textAlign": "Center", - "textColor": "#191919" - }, - "keyboardOptions": { - "imeAction": "Next", - "keyboardType": "NumberPassword" - }, - "applyValidationOnValueChange": false - }, - { - "width": "28", - "maxChar": 2, - "padChar": "0", - "padding": { - "top": 13, - "bottom": 13 - }, - "layoutId": "month_w9VJ3", - "hintStyle": { - "fontSize": 14, - "textColor": "#A8A8A8" - }, - "textStyle": { - "fontSize": 14, - "textAlign": "Center", - "textColor": "#191919" - }, - "keyboardOptions": { - "imeAction": "Next", - "keyboardType": "NumberPassword" - }, - "applyValidationOnValueChange": false - }, - { - "width": "57", - "maxChar": 4, - "padding": { - "end": 16, - "top": 13, - "bottom": 13 - }, - "layoutId": "year_w9VJ3", - "hintStyle": { - "fontSize": 14, - "textColor": "#A8A8A8" - }, - "textStyle": { - "fontSize": 14, - "textAlign": "Center", - "textColor": "#191919" - }, - "keyboardOptions": { - "imeAction": "Done", - "keyboardType": "NumberPassword" - }, - "applyValidationOnValueChange": false - } - ], - "successMessageLayoutId": "dob_success_message_w9VJ3", - "successTextTransformation": { - "type": "DOB_TO_READABLE_STRING", - "formatPattern": "ddMMyyyy" - } - } - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetOutput": [ - { - "layoutId": "date_input_w9VJ3", - "fieldName": "applicant.dob" - } - ], - "widgetStates": [ - { - "stateId": "validate_date_input_w9VJ3", - "actionData": { - "actions": [ - { - "type": "ValidateDataAction", - "validations": [ - { - "key": "date_input_w9VJ3", - "uiTronValidations": [ - { - "onFailure": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "stateId": "failure", - "layoutId": "date_input_w9VJ3" - } - ] - }, - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": true, - "viewType": "DateTextField", - "errorMessage": "Please enter your date of birth" - }, - "layoutId": "date_input_w9VJ3" - } - ] - } - ] - }, - "onSuccess": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "stateId": "success", - "layoutId": "date_input_w9VJ3" - } - ] - }, - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": false, - "viewType": "DateTextField" - }, - "layoutId": "date_input_w9VJ3" - } - ] - } - ] - }, - "validationType": "NOT_BLANK" - }, - { - "onFailure": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "stateId": "failure", - "layoutId": "date_input_w9VJ3" - } - ] - }, - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": true, - "viewType": "DateTextField", - "errorMessage": "Enter valid date" - }, - "layoutId": "date_input_w9VJ3" - } - ] - } - ] - }, - "onSuccess": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "stateId": "success", - "layoutId": "date_input_w9VJ3" - } - ] - }, - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": false, - "viewType": "DateTextField" - }, - "layoutId": "date_input_w9VJ3" - } - ] - } - ] - }, - "formatPattern": "yyyy-MM-dd", - "validationType": "DATE_FORMAT" - }, - { - "maxYears": "65", - "minYears": "18", - "onFailure": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "stateId": "failure", - "layoutId": "date_input_w9VJ3" - } - ] - }, - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": true, - "viewType": "DateTextField", - "errorMessage": "Valid Age Range is from 18 to 65 years" - }, - "layoutId": "date_input_w9VJ3" - } - ] - } - ] - }, - "onSuccess": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "stateId": "success", - "layoutId": "date_input_w9VJ3" - } - ] - }, - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "hasError": false, - "viewType": "DateTextField" - }, - "layoutId": "date_input_w9VJ3" - } - ] - } - ] - }, - "formatPattern": "yyyy-MM-dd", - "validationType": "DATE_RANGE" - } - ] - } - ] - } - ] - } - } - ], - "widgetEventListeners": [] - }, - { - "widgetId": "xmawu", - "widgetData": { - "data": {}, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "32", - "viewType": "Spacer", - "backgroundColor": "#FFFFFF" - } - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [] - }, - { - "widgetId": "uKNTK", - "widgetData": { - "data": { - "end_icon_uKNTK": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_right_blue_chevron_14x7.png", - "viewType": "Image" - }, - "start_icon_uKNTK": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_colorful_google_symbol_24x24.png", - "viewType": "Image" - }, - "middle_text_uKNTK": { - "text": "Sync your gmail account to get higher loan amount", - "viewType": "Text" - }, - "card_container_uKNTK": { - "onClick": { - "actions": [ - { - "type": "ThirdPartySdkAction", - "sdkName": "FINORAMIC", - "onSuccess": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "stateId": "success", - "layoutId": "end_icon_uKNTK" - } - ] - }, - { - "type": "UpdateDataAction", - "viewDataList": [ - { - "data": { - "onClick": { - "actions": [] - }, - "viewType": "Card" - }, - "layoutId": "card_container_uKNTK" - }, - { - "data": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_white_tick_with_circular_green_bg_24x24.png", - "viewType": "Image" - }, - "layoutId": "end_icon_uKNTK" - }, - { - "data": { - "text": "Gmail Account Synced", - "viewType": "Text" - }, - "layoutId": "middle_text_uKNTK" - } - ] - }, - { - "type": "TriggerApiAction", - "fields": [ - { - "name": "applicant.finoramic.userId", - "source": "SDK_OUTPUT", - "sourceProperty": "finoramicUserId" - }, - { - "name": "applicant.finoramic.loginStatus", - "source": "SDK_OUTPUT", - "sourceProperty": "finoramicLoginStatus" - }, - { - "name": "applicant.finoramic.email", - "source": "SDK_OUTPUT", - "sourceProperty": "finoramicEmail" - } - ], - "apiType": "FillApi", - "isPartialFillCall": true - } - ] - } - }, - { - "type": "AnalyticsActionV2", - "eventName": "PL_Basic_GmailSync_Clicked", - "isNeededForFirebase": false, - "isNeededForAppsflyer": true - } - ] - }, - "viewType": "Card" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": "16", - "start": "16" - }, - "viewType": "Column" - }, - "childrenViews": [ - { - "property": { - "shape": { - "size": 12, - "shapeType": "RoundedCornerShape" - }, - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "layoutId": "card_container_uKNTK", - "viewType": "Card", - "elevation": 0, - "isDataMutable": true, - "backgroundColor": "#FFFFFF", - "borderStrokeData": { - "color": "#14BC51", - "width": "1" - } - }, - "childrenViews": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": "16", - "start": "16" - }, - "layoutId": "data_container_uKNTK", - "viewType": "ConstraintLayout" - }, - "childrenViews": [ - { - "property": { - "width": "24", - "height": "24", - "layoutId": "start_icon_uKNTK", - "viewType": "Image", - "isVisible": "true", - "constraintLinks": { - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "parent", - "constraint": "START" - }, - "bottom": { - "layoutId": "parent", - "constraint": "BOTTOM" - } - } - } - }, - { - "property": { - "width": "FILL_TO_CONSTRAINTS", - "height": "WRAP_CONTENT", - "padding": { - "end": 32, - "top": 16, - "start": "8", - "bottom": 16 - }, - "fontSize": "12", - "layoutId": "middle_text_uKNTK", - "viewType": "Text", - "textColor": "#4D4D4D", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR", - "isStateFul": true, - "isDataMutable": true, - "constraintLinks": { - "end": { - "layoutId": "end_icon_uKNTK", - "constraint": "START" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "start_icon_uKNTK", - "constraint": "END" - }, - "bottom": { - "layoutId": "middle_text_uKNTK", - "constraint": "BOTTOM" - } - } - } - }, - { - "property": { - "width": "7", - "height": "14", - "layoutId": "end_icon_uKNTK", - "viewType": "Image", - "isVisible": "true", - "statesMap": { - "success": { - "width": "18", - "height": "18", - "viewType": "Image" - } - }, - "isStateFul": true, - "isDataMutable": true, - "constraintLinks": { - "end": { - "layoutId": "parent", - "constraint": "END" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "bottom": { - "layoutId": "parent", - "constraint": "BOTTOM" - } - } - } - } - ] - } - ] - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [] - } - ], - "backgroundColor": "#FFFFFF" - }, - "screenId": "PL_BASIC_DETAILS_SCREEN", - "bottomSheets": [ - { - "content": { - "widgets": [ - { - "widgetId": "PNeC_", - "widgetData": { - "data": { - "title_PNeC_": { - "text": "Need Help?", - "onClick": { - "actions": [] - }, - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "start": 16 - }, - "viewType": "Row", - "arrangementData": { - "arrangementType": "Start" - }, - "backgroundColor": "#FFFFFF" - }, - "childrenViews": [ - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "fontSize": "18", - "layoutId": "title_PNeC_", - "viewType": "Text", - "textColor": "#1A1A1A", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM", - "textDecoration": "" - } - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [] - }, - { - "widgetId": "FvrI6", - "widgetData": { - "data": { - "title_FvrI6": { - "text": "FAQs", - "viewType": "Text" - }, - "start_icon_FvrI6": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_bordered_purple_question_mark_symbol_16x16.png", - "viewType": "Image" - }, - "widget_container_FvrI6": { - "onClick": { - "actions": [ - { - "type": "CtaAction", - "ctaData": { - "url": "menu/faq", - "type": "DEEP_LINK" - } - } - ] - }, - "viewType": "ConstraintLayout" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": "16", - "top": "24", - "start": 16, - "bottom": "0" - }, - "layoutId": "widget_container_FvrI6", - "viewType": "ConstraintLayout", - "backgroundColor": "#FFFFFF" - }, - "childrenViews": [ - { - "property": { - "width": "16", - "height": "16", - "layoutId": "start_icon_FvrI6", - "viewType": "Image", - "isVisible": true - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "start": "16" - }, - "fontSize": "14", - "layoutId": "title_FvrI6", - "viewType": "Text", - "textColor": "#000000", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR", - "constraintLinks": { - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "start_icon_FvrI6", - "constraint": "END" - } - } - } - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [], - "widgetEventListeners": [] - }, - { - "widgetId": "cAH13", - "widgetData": { - "data": {}, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "16", - "viewType": "Spacer", - "backgroundColor": "#FFFFFF" - } - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [] - } - ], - "backgroundColor": "#FFFFFF" - }, - "screenId": "PL_BASIC_DETAILS_HELP_BOTTOM_SHEET", - "isCancellable": "true", - "renderActions": { - "preRenderAction": {}, - "postRenderAction": {} - }, - "systemBackCta": { - "actions": [] - } - }, - { - "content": { - "widgets": [ - { - "widgetId": "9hkAP", - "widgetData": { - "data": { - "icon_9hkAP": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_bordered_circular_blue_exclamation_32x32.png", - "viewType": "Image" - }, - "title_9hkAP": { - "text": "Know more", - "viewType": "Text" - }, - "description_9hkAP": { - "text": "Navi takes Data Security and Privacy seriously. Our information Security Program is based on a holistic approach involving People, Process and Technology. \n\nWe follow industry best practices to scale, protect and secure data from the ever-growing threats.", - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 16, - "top": "4", - "start": 16 - }, - "viewType": "Column", - "backgroundColor": "#FFFFFF", - "horizontalAlignment": "Start" - }, - "childrenViews": [ - { - "property": { - "width": "32", - "height": "32", - "layoutId": "icon_9hkAP", - "viewType": "Image", - "isVisible": true - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "top": "8" - }, - "fontSize": "18", - "layoutId": "title_9hkAP", - "viewType": "Text", - "textAlign": "Start", - "textColor": "#1A1A1A", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM" - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "top": "8" - }, - "fontSize": "14", - "layoutId": "description_9hkAP", - "viewType": "Text", - "isVisible": "true", - "textAlign": "Start", - "textColor": "#4D4D4D", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR" - } - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [] - }, - { - "widgetId": "zeY2B", - "widgetData": { - "data": { - "spannable_id_zeY2B": { - "textMap": { - "key_text": "Full name and date of birth: ", - "value_text": "We require these details to check your eligibility." - }, - "viewType": "SpannableText" - } - }, - "view": [ - { - "property": { - "padding": { - "end": 16, - "top": 16, - "start": 16 - }, - "layoutId": "spannable_id_zeY2B", - "viewType": "SpannableText", - "spanProperty": [ - { - "property": { - "fontSize": 14, - "textColor": "#4D4D4D", - "fontFamily": "naviSansFamily", - "fontWeight": "TT_MEDIUM" - }, - "stringId": "key_text" - }, - { - "property": { - "fontSize": 14, - "textColor": "#4D4D4D", - "fontFamily": "naviSansFamily", - "fontWeight": "TT_REGULAR" - }, - "stringId": "value_text" - } - ] - } - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [] - }, - { - "widgetId": "5sF3n", - "widgetData": { - "data": {}, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "8", - "viewType": "Spacer", - "backgroundColor": "#FFFFFF" - } - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [] - }, - { - "widgetId": "YpmgU", - "widgetData": { - "data": { - "data_safe_text_YpmgU": { - "text": "", - "viewType": "Text" - }, - "next_cta_button_YpmgU": { - "onClick": { - "actions": [ - { - "type": "UpdateStateHandleActionV2", - "handleData": [ - { - "key": "bottomSheetVisibility", - "value": "hide" - } - ] - } - ] - }, - "viewType": "Button" - }, - "progress_indicator_YpmgU": { - "progress": "0.0", - "viewType": "LinearProgressIndicator" - }, - "data_safe_info_text_YpmgU": { - "text": "", - "onClick": { - "actions": [] - }, - "viewType": "Text" - }, - "data_safe_start_icon_YpmgU": { - "iconUrl": "", - "viewType": "Image" - }, - "next_cta_button_text_YpmgU": { - "text": "Okay, got it!", - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "layoutId": "footer_container_YpmgU", - "viewType": "Column", - "arrangementData": { - "arrangementType": "Center" - }, - "backgroundColor": "", - "horizontalAlignment": "CenterHorizontally" - }, - "childrenViews": [ - { - "property": { - "width": "FILL_TO_CONSTRAINTS", - "height": "WRAP_CONTENT", - "padding": { - "top": 16, - "bottom": 4 - }, - "layoutId": "data_safe_container_YpmgU", - "viewType": "ConstraintLayout", - "isVisible": "false" - }, - "childrenViews": [ - { - "property": { - "width": "10", - "height": "12", - "layoutId": "data_safe_start_icon_YpmgU", - "viewType": "Image", - "constraintLinks": { - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "parent", - "constraint": "START" - }, - "bottom": { - "layoutId": "parent", - "constraint": "BOTTOM" - } - } - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 4, - "start": 4 - }, - "fontSize": 12, - "layoutId": "data_safe_text_YpmgU", - "viewType": "Text", - "textColor": "#6B6B6B", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM", - "constraintLinks": { - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "data_safe_start_icon_YpmgU", - "constraint": "END" - } - } - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "fontSize": 12, - "layoutId": "data_safe_info_text_YpmgU", - "viewType": "Text", - "textColor": "#FF5732", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM", - "textDecoration": "Underline", - "constraintLinks": { - "END": { - "layoutId": "parent", - "constraint": "END" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "data_safe_text_YpmgU", - "constraint": "END" - } - } - } - } - ] - }, - { - "property": { - "color": "#14BC51", - "width": "MATCH_PARENT", - "height": "2", - "layoutId": "progress_indicator_YpmgU", - "viewType": "LinearProgressIndicator", - "isVisible": "false", - "backgroundColor": "#F5F5F5" - } - }, - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 16, - "top": 16, - "start": 16, - "bottom": 32 - }, - "layoutId": "footer_buttons_YpmgU", - "viewType": "ConstraintLayout" - }, - "childrenViews": [ - { - "property": { - "shape": { - "size": 100, - "shapeType": "RoundedCornerShape" - }, - "width": "FILL_TO_CONSTRAINTS", - "colors": { - "backgroundColor": "#FF5732" - }, - "height": "48", - "layoutId": "next_cta_button_YpmgU", - "viewType": "Button", - "elevation": { - "defaultElevation": 0 - }, - "isStateFul": true, - "constraintLinks": { - "end": { - "layoutId": "parent", - "constraint": "END" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "parent", - "constraint": "START" - } - } - }, - "childrenViews": [ - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "fontSize": 14, - "layoutId": "next_cta_button_text_YpmgU", - "viewType": "Text", - "textColor": "#FFFFFF", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM" - } - } - ] - } - ] - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [], - "widgetEventListeners": [] - } - ], - "backgroundColor": "#FFFFFF" - }, - "screenId": "PL_BASIC_DETAILS_DATA_SAFETY_BOTTOM_SHEET", - "isCancellable": "true", - "renderActions": { - "preRenderAction": {}, - "postRenderAction": {} - }, - "systemBackCta": { - "actions": [] - } - } - ], - "renderActions": { - "preRenderAction": {}, - "postRenderAction": { - "actions": [ - { - "type": "AnalyticsActionV2", - "eventName": "PL_Basic_Page_Lands", - "isNeededForFirebase": true, - "isNeededForAppsflyer": true, - "predefinedEventProperties": [ - { - "propertyName": "journey_platform", - "propertyValue": "application_platform" - } - ] - }, - { - "type": "CtaAction", - "ctaData": { - "url": "KhYgp", - "type": "TOAST" - } - } - ] - } - }, - "systemBackCta": { - "actions": [ - { - "type": "CtaAction", - "ctaData": { - "url": "applicationPlatform/GENERIC_SCREEN", - "parameters": [ - { - "key": "applicationId", - "value": "21a23d52-79ec-4466-bd52-b98eeb523ff0" - }, - { - "key": "applicationType", - "value": "PL" - }, - { - "key": "configVersion", - "value": "78" - }, - { - "key": "screenId", - "value": "PL_INTRO_SCREEN" - }, - { - "key": "action", - "value": "BACK" - } - ] - } - } - ] - }, - "floatingActionButton": {} - } - } - }, - "cameraScreen": { - "screenData": { - "metaData": { - "screenName": "TEST_SCREEN", - "screenType": "DEFAULT" - }, - "screenStructure": { - "drawer": {}, - "footer": {}, - "header": { - "widgetId": 1, - "widgetData": { - "data": { - "left_icon_1": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_left_black_arrow_24x24.png", - "onClick": { - "actions": [ - { - "type": "CtaAction", - "ctaData": { - "parameters": [ - { - "key": "applicationId" - }, - { - "key": "applicationType" - }, - { - "key": "screenId" - }, - { - "key": "configVersion" - }, - { - "key": "action", - "value": "BACK" - } - ] - } - } - ] - }, - "viewType": "Image" - }, - "right_text_1": { - "text": "HELP", - "onClick": { - "actions": [ - { - "type": "CtaAction", - "ctaData": { - "type": "BOTTOMSHEET" - } - } - ] - }, - "viewType": "Text" - }, - "center_text_1": { - "text": "", - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "56", - "padding": { - "end": 16, - "start": 16 - }, - "layoutId": "widget_container_1", - "viewType": "ConstraintLayout", - "backgroundColor": "#FFFFFF" - }, - "childrenViews": [ - { - "property": { - "width": "24", - "height": "24", - "layoutId": "left_icon_1", - "viewType": "Image", - "isVisible": "true", - "constraintLinks": { - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "parent", - "constraint": "START" - }, - "bottom": { - "layoutId": "parent", - "constraint": "BOTTOM" - } - } - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "top": 24 - }, - "fontSize": 0, - "layoutId": "center_text_1", - "viewType": "Text", - "isVisible": "false", - "textColor": "", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "", - "constraintLinks": { - "end": { - "layoutId": "parent", - "constraint": "END" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "parent", - "constraint": "START" - } - } - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "fontSize": "14", - "layoutId": "right_text_1", - "viewType": "Text", - "isVisible": "false", - "textColor": "#1F002A", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_SEMI_BOLD", - "constraintLinks": { - "end": { - "layoutId": "parent", - "constraint": "END" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "bottom": { - "layoutId": "parent", - "constraint": "BOTTOM" - } - } - } - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [], - "widgetEventListeners": [] - }, - "content": { - "widgets": [ - { - "widgetId": 1, - "widgetData": { - "data": { - "widget_data_1": { - "windowPadding": { - "start": 16 - }, - "textProperty": { - "padding": { - "top": 0, - "bottom": "16" - }, - "width": "MATCH_PARENT", - "fontWeight": "TT_SEMI_BOLD", - "fontSize": "16", - "textColor": "#191919", - "textAlign": "Center", - "fontFamily": "ttComposeFontFamily" - }, - "textData": { - "text": "Place your document inside the box" - }, - "captureButton": { - "outerCircleSize": 65, - "innerCircleSize": 55, - "circleColor": "#191919" - }, - "viewType": "CAMERA" - } - }, - "view": [] - }, - "widgetName": "CAMERA", - "widgetType": "CUSTOM_WIDGET", - "widgetStates": [], - "widgetRenderActions": {}, - "widgetEventListeners": [] - } - ] - }, - "renderActions": {}, - "systemBackCta": { - "url": "HOME" - }, - "floatingActionButton": {} - } - } - }, - "hyperverge_pan_setting_data": { - "captureTitle": "PAN_CAPTURE" - }, - "address_screen": { - "screenData": { - "metaData": { - "screenName": "TEST_SCREEN", - "screenType": "DEFAULT" - }, - "screenStructure": { - "drawer": {}, - "footer": { - "widgetId": 1, - "widgetData": { - "data": { - "footer_button_1": { - "onClick": { - "actions": [] - }, - "viewType": "Column" - }, - "data_safe_text_1": { - "text": "Your data is safe", - "viewType": "Text" - }, - "progress_indicator_1": { - "progress": "0.8", - "viewType": "LinearProgressIndicator" - }, - "data_safe_info_text_1": { - "text": "Know More", - "onClick": { - "actions": [ - { - "type": "CtaAction", - "ctaData": { - "type": "BOTTOMSHEET" - } - } - ] - }, - "viewType": "Text" - }, - "data_safe_start_icon_1": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_white_tick_with_safety_green_bg_10x12.png", - "viewType": "Image" - }, - "next_cta_button_text_1": { - "text": "Upload proof", - "viewType": "Text" - }, - "important_note_card_title_1": { - "text": "Important Note:", - "viewType": "Text" - }, - "important_note_card_sub_title_1": { - "text": "You will not be able to change this address once added.", - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "layoutId": "footer_container_1", - "viewType": "Column", - "arrangementData": { - "arrangementType": "Center" - }, - "backgroundColor": "#FFFFFF", - "horizontalAlignment": "CenterHorizontally" - }, - "childrenViews": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": "16", - "top": "24", - "start": "16", - "bottom": "29" - }, - "visible": "false", - "layoutId": "important_note_container_row_1", - "viewType": "Row", - "arrangementData": { - "arrangementType": "Center" - }, - "verticalAlignment": "CenterVertically" - }, - "childrenViews": [ - { - "property": { - "shape": { - "size": "4", - "shapeType": "RoundedCornerShape" - }, - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": "16", - "top": "16", - "start": "16", - "bottom": "16" - }, - "layoutId": "important_note_card_1", - "viewType": "Column", - "arrangementData": { - "arrangementType": "Center" - }, - "backgroundColor": "#F5F5F5", - "horizontalAlignment": "CenterHorizontally" - }, - "childrenViews": [ - { - "property": { - "padding": { - "bottom": "4" - }, - "fontSize": "12", - "layoutId": "important_note_card_title_1", - "viewType": "Text", - "textColor": "#1F002A", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_MEDIUM" - } - }, - { - "property": { - "fontSize": "12", - "layoutId": "important_note_card_sub_title_1", - "viewType": "Text", - "textAlign": "Center", - "textColor": "#6B6B6B", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR" - } - } - ] - } - ] - }, - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": "0", - "top": "0", - "start": "0", - "bottom": "24" - }, - "visible": "false", - "layoutId": "data_safe_container_1", - "viewType": "Row", - "arrangementData": { - "arrangementType": "Center" - }, - "verticalAlignment": "CenterVertically" - }, - "childrenViews": [ - { - "property": { - "width": "16", - "height": "16", - "layoutId": "data_safe_start_icon_1", - "viewType": "Image" - } - }, - { - "property": { - "padding": { - "end": "4", - "top": "0", - "start": "6", - "bottom": "0" - }, - "fontSize": "10", - "layoutId": "data_safe_text_1", - "viewType": "Text", - "textColor": "#6B6B6B", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR" - } - }, - { - "property": { - "fontSize": "10", - "layoutId": "data_safe_info_text_1", - "viewType": "Text", - "textColor": "#1F002A", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR", - "textDecoration": "Underline" - } - } - ] - }, - { - "property": { - "color": "#14BC51", - "width": "MATCH_PARENT", - "height": "2", - "layoutId": "progress_indicator_1", - "viewType": "LinearProgressIndicator", - "isVisible": "true", - "backgroundColor": "#F5F5F5" - } - }, - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": "16", - "top": "16", - "start": "16", - "bottom": "32" - }, - "layoutId": "footer_button_container_1", - "viewType": "Row" - }, - "childrenViews": [ - { - "property": { - "shape": { - "size": "4", - "shapeType": "RoundedCornerShape" - }, - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": "16", - "top": "16", - "start": "16", - "bottom": "16" - }, - "layoutId": "footer_button_1", - "viewType": "Column", - "isDataMutable": true, - "arrangementData": { - "arrangementType": "Center" - }, - "backgroundColor": "#1F002A", - "horizontalAlignment": "CenterHorizontally" - }, - "childrenViews": [ - { - "property": { - "fontSize": "14", - "layoutId": "next_cta_button_text_1", - "viewType": "Text", - "textColor": "#FFFFFF", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_SEMI_BOLD" - } - } - ] - } - ] - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [], - "widgetRenderActions": { - "postRenderAction": { - "actions": [] - } - }, - "widgetEventListeners": [] - }, - "header": { - "widgetId": 1, - "widgetData": { - "data": { - "left_icon_1": { - "iconUrl": "https://public-assets.np.navi-tech.in/sa/application-platform/ic_left_black_arrow_24x24.png", - "onClick": { - "actions": [ - { - "type": "AnalyticsActionV2", - "eventProperties": [], - "isNeededForFirebase": false, - "isNeededForAppsflyer": true, - "predefinedEventProperties": [ - { - "propertyName": "journey_source", - "propertyValue": "AP" - } - ] - }, - { - "type": "CtaAction", - "ctaData": { - "parameters": [ - { - "key": "applicationId" - }, - { - "key": "applicationType" - }, - { - "key": "screenId" - }, - { - "key": "configVersion" - }, - { - "key": "action", - "value": "BACK" - } - ] - } - } - ] - }, - "viewType": "Image" - }, - "right_text_1": { - "text": "HELP", - "onClick": { - "actions": [ - { - "type": "CtaAction", - "ctaData": { - "type": "BOTTOMSHEET" - } - } - ] - }, - "viewType": "Text" - }, - "center_text_1": { - "text": "", - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "64", - "padding": { - "end": 16, - "start": 16 - }, - "layoutId": "widget_container_1", - "viewType": "ConstraintLayout", - "backgroundColor": "" - }, - "childrenViews": [ - { - "property": { - "width": "24", - "height": "24", - "layoutId": "left_icon_1", - "viewType": "Image", - "constraintLinks": { - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "parent", - "constraint": "START" - }, - "bottom": { - "layoutId": "parent", - "constraint": "BOTTOM" - } - } - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "top": 24 - }, - "fontSize": 14, - "layoutId": "center_text_1", - "viewType": "Text", - "textColor": "#6B6B6B", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR", - "constraintLinks": { - "end": { - "layoutId": "parent", - "constraint": "END" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "start": { - "layoutId": "parent", - "constraint": "START" - } - } - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "fontSize": 14, - "layoutId": "right_text_1", - "viewType": "Text", - "textColor": "#1F002A", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_SEMI_BOLD", - "constraintLinks": { - "end": { - "layoutId": "parent", - "constraint": "END" - }, - "top": { - "layoutId": "parent", - "constraint": "TOP" - }, - "bottom": { - "layoutId": "parent", - "constraint": "BOTTOM" - } - } - } - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [], - "widgetEventListeners": [] - }, - "content": { - "widgets": [ - { - "widgetId": 1, - "widgetData": { - "data": { - "title_1": { - "text": "Select current address", - "viewType": "Text" - }, - "sub_title_1": { - "text": "Important documents will be sent to this address", - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "padding": { - "end": 16, - "start": 16 - }, - "viewType": "Column", - "backgroundColor": "#FFFFFF", - "horizontalAlignment": "Start" - }, - "childrenViews": [ - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "top": "16" - }, - "fontSize": "24", - "layoutId": "title_1", - "viewType": "Text", - "textAlign": "Start", - "textColor": "#191919", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_SEMI_BOLD" - } - }, - { - "property": { - "width": "WRAP_CONTENT", - "height": "WRAP_CONTENT", - "padding": { - "top": "2", - "bottom": "0" - }, - "fontSize": "12", - "layoutId": "sub_title_1", - "viewType": "Text", - "textAlign": "Start", - "textColor": "#6B6B6B", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR" - } - } - ] - } - ] - }, - "widgetName": "", - "widgetType": "UI_TRON_WIDGET", - "widgetStates": [] - }, - { - "widgetId": 1, - "widgetData": { - "data": { - "widget_data_1": { - "viewType": "DYNAMIC_RADIO_GROUP_WITH_SECTIONS_WIDGET", - "sectionDataList": { - "0": [ - { - "placeHolderKey": "$.enteredAddresses" - } - ], - "1": [ - { - "placeHolderKey": "$.fetchedAddresses" - } - ] - }, - "sectionViewList": { - "0": { - "title": { - "data": { - "title": { - "textMap": { - "text_1": "Address entered by you ", - "text_2": "(proof required)" - }, - "viewType": "SpannableText" - } - }, - "view": [ - { - "property": { - "layoutId": "title", - "viewType": "SpannableText", - "spanProperty": [ - { - "stringId": "text_1", - "property": { - "fontSize": 16, - "textColor": "#191919", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_SEMI_BOLD" - } - }, - { - "stringId": "text_2", - "property": { - "fontSize": 16, - "textColor": "#6B6B6B", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_REGULAR" - } - } - ], - "padding": { - "top": "32", - "start": "16", - "end": "16" - } - } - } - ] - }, - "radioItem": { - "item": { - "view": [ - { - "property": { - "viewType": "Row", - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "layoutId": "Main_container_Row", - "padding": { - "start": "16", - "top": "16", - "end": "16" - }, - "borderStrokeData": { - "color": "#E3E5E5", - "shape": { - "size": "4", - "shapeType": "RoundedCornerShape" - }, - "width": "1" - }, - "isStateFul": "true", - "statesMap": { - "selected": { - "viewType": "Row", - "borderStrokeData": { - "color": "#1F002A", - "shape": { - "size": "4", - "shapeType": "RoundedCornerShape" - }, - "width": "1" - } - }, - "unselected": { - "viewType": "Row", - "borderStrokeData": { - "color": "#E3E5E5", - "shape": { - "size": "4", - "shapeType": "RoundedCornerShape" - }, - "width": "1" - } - } - } - }, - "childrenViews": [ - { - "property": { - "viewType": "Row", - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "layoutId": "Main_container_row", - "padding": { - "start": "16", - "top": "12", - "end": "16", - "bottom": "12" - }, - "arrangementData": { - "arrangementType": "SpaceBetween" - } - }, - "childrenViews": [ - { - "property": { - "viewType": "Column", - "horizontalAlignment": "Start", - "padding": { - "end": "16" - }, - "parentConstraints": { - "rowConstraints": { - "rowWeight": { - "weight": 4 - } - } - } - }, - "childrenViews": [ - { - "property": { - "viewType": "Text", - "fontSize": "16", - "textColor": "#191919", - "layoutId": "Main_container_title", - "fontWeight": "TT_MEDIUM", - "textAlign": "Start" - } - }, - { - "property": { - "viewType": "Text", - "fontSize": "14", - "textColor": "#6B6B6B", - "layoutId": "Main_container_content", - "textAlign": "Start" - } - } - ] - }, - { - "property": { - "viewType": "Column", - "horizontalAlignment": "End" - }, - "childrenViews": [ - { - "property": { - "width": "24", - "height": "24", - "enabled": true, - "layoutId": "radio_button_1", - "viewType": "RadioButton", - "isSelected": "false", - "selectedColor": "#1F002A", - "unselectedColor": "#E3E5E5", - "isStateFul": "true", - "statesMap": { - "selected": { - "viewType": "RadioButton", - "isSelected": "true" - }, - "unselected": { - "viewType": "RadioButton", - "isSelected": "false" - } - } - } - } - ] - } - ] - } - ] - } - ], - "data": { - "Main_container_title": { - "text": "$.firstLine", - "viewType": "Text" - }, - "Main_container_content": { - "text": "$.secondLine", - "viewType": "Text" - } - } - }, - "isSelected": "$.isSelected", - "selectedAction": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "layoutId": "radio_button_1", - "stateId": "selected" - }, - { - "layoutId": "Main_container_Row", - "stateId": "selected" - } - ] - } - ] - }, - "unSelectedAction": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "layoutId": "radio_button_1", - "stateId": "unselected" - }, - { - "layoutId": "Main_container_Row", - "stateId": "unselected" - } - ] - } - ] - } - } - }, - "1": { - "title": { - "data": { - "title": { - "text": "Fetched from our records", - "viewType": "Text" - } - }, - "view": [ - { - "property": { - "fontSize": 16, - "layoutId": "title", - "viewType": "Text", - "textColor": "#191919", - "fontFamily": "ttComposeFontFamily", - "fontWeight": "TT_SEMI_BOLD", - "padding": { - "top": "24", - "start": "16", - "end": "16" - } - } - } - ] - }, - "radioItem": { - "item": { - "view": [ - { - "property": { - "viewType": "Row", - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "layoutId": "Main_container_Row", - "padding": { - "start": "16", - "top": "16", - "end": "16" - }, - "borderStrokeData": { - "width": "1", - "color": "#E3E5E5", - "shape": { - "size": "4", - "shapeType": "RoundedCornerShape" - } - }, - "isStateFul": "true", - "statesMap": { - "selected": { - "viewType": "Row", - "borderStrokeData": { - "width": "1", - "color": "#1F002A", - "shape": { - "size": "4", - "shapeType": "RoundedCornerShape" - } - } - }, - "unselected": { - "viewType": "Row", - "borderStrokeData": { - "width": "1", - "color": "#E3E5E5", - "shape": { - "size": "4", - "shapeType": "RoundedCornerShape" - } - } - } - } - }, - "childrenViews": [ - { - "property": { - "viewType": "Row", - "width": "MATCH_PARENT", - "height": "WRAP_CONTENT", - "layoutId": "Main_container_row", - "padding": { - "start": "16", - "top": "12", - "end": "16", - "bottom": "12" - }, - "arrangementData": { - "arrangementType": "SpaceBetween" - } - }, - "childrenViews": [ - { - "property": { - "viewType": "Column", - "horizontalAlignment": "Start", - "padding": { - "end": "16" - }, - "parentConstraints": { - "rowConstraints": { - "rowWeight": { - "weight": 4 - } - } - } - }, - "childrenViews": [ - { - "property": { - "viewType": "Text", - "fontSize": "16", - "textColor": "#191919", - "layoutId": "Main_container_title", - "fontWeight": "TT_MEDIUM", - "textAlign": "Start" - } - }, - { - "property": { - "viewType": "Text", - "fontSize": "14", - "textColor": "#6B6B6B", - "layoutId": "Main_container_content", - "textAlign": "Start" - } - } - ] - }, - { - "property": { - "viewType": "Column", - "horizontalAlignment": "End" - }, - "childrenViews": [ - { - "property": { - "width": "24", - "height": "24", - "enabled": true, - "layoutId": "radio_button_1", - "viewType": "RadioButton", - "isSelected": "false", - "selectedColor": "#1F002A", - "unselectedColor": "#E3E5E5", - "isStateFul": "true", - "statesMap": { - "selected": { - "viewType": "RadioButton", - "isSelected": "true" - }, - "unselected": { - "viewType": "RadioButton", - "isSelected": "false" - } - } - } - } - ] - } - ] - } - ] - } - ], - "data": { - "Main_container_title": { - "text": "$.firstLine", - "viewType": "Text" - }, - "Main_container_content": { - "text": "$.secondLine", - "viewType": "Text" - } - } - }, - "isSelected": "$.isSelected", - "selectedAction": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "layoutId": "radio_button_1", - "stateId": "selected" - }, - { - "layoutId": "Main_container_Row", - "stateId": "selected" - } - ] - } - ] - }, - "unSelectedAction": { - "actions": [ - { - "type": "UpdateViewStateActionV2", - "viewStates": [ - { - "layoutId": "radio_button_1", - "stateId": "unselected" - }, - { - "layoutId": "Main_container_Row", - "stateId": "unselected" - } - ] - } - ] - } - } - } - } - } - }, - "view": [] - }, - "widgetName": "DYNAMIC_RADIO_GROUP_WITH_SECTIONS_WIDGET", - "widgetType": "CUSTOM_WIDGET", - "widgetStates": [], - "widgetRenderActions": { - "preRenderAction": {}, - "postRenderAction": {} - }, - "widgetEventListeners": [] - } - ] - }, - "renderActions": { - "preRenderAction": { - "actions": [ - { - "type": "TriggerApiAction", - "apiType": "LambdaApiAction", - "lambdaType": "FETCH_ADDRESS_LIST" - } - ] - }, - "postRenderAction": {} - }, - "systemBackCta": {}, - "floatingActionButton": {} - } - } - }, - "address_list": { - "enteredAddresses": [ - { - "firstLine": "Prestige Lakeside habitat A- 501, Near Raheja Residency", - "secondLine": "560102, Bangalore, Karnataka", - "isSelected": "true" - } - ], - "fetchedAddresses": [ - { - "firstLine": "7B 108, Salapuriya Satva, 6th cross road, Bellandur", - "secondLine": "560087, Bangalore, Karnataka" - }, - { - "firstLine": "145, Block M, Sector 6, North salt lake city", - "secondLine": "700254, Delhi" - } - ] - } -} \ No newline at end of file diff --git a/android/benchmark/build.gradle b/android/benchmark/build.gradle index 8a2ed4abbd..d76793fe49 100644 --- a/android/benchmark/build.gradle +++ b/android/benchmark/build.gradle @@ -62,16 +62,10 @@ android { flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/gradle/libs.versions.toml b/android/gradle/libs.versions.toml index a0adf1e143..08b056fcf1 100644 --- a/android/gradle/libs.versions.toml +++ b/android/gradle/libs.versions.toml @@ -357,7 +357,6 @@ navi-uitron = { module = "com.navi.android:uitron", version.ref = "navi-uitron" okhttp-bom = { module = "com.squareup.okhttp3:okhttp-bom", version.ref = "okhttp-bom" } okhttp-brotli = { module = "com.squareup.okhttp3:okhttp-brotli" } okhttp-loggingIntercepter = { module = "com.squareup.okhttp3:logging-interceptor" } -okhttp-mockwebserver = { module = "com.squareup.okhttp3:mockwebserver" } otaliastudios-cameraview = { module = "com.otaliastudios:cameraview", version.ref = "otaliastudios-cameraview" } diff --git a/android/keystore/navi-debug-key.jks b/android/keystore/navi-debug-key.jks deleted file mode 100644 index 12143b3694..0000000000 Binary files a/android/keystore/navi-debug-key.jks and /dev/null differ diff --git a/android/keystore/navi-non-prod-release-key.jks b/android/keystore/navi-non-prod-release-key.jks index be23a34a27..ce45dbd2d3 100644 Binary files a/android/keystore/navi-non-prod-release-key.jks and b/android/keystore/navi-non-prod-release-key.jks differ diff --git a/android/navi-amc/build.gradle b/android/navi-amc/build.gradle index 003e50c215..64bad2ea3d 100644 --- a/android/navi-amc/build.gradle +++ b/android/navi-amc/build.gradle @@ -55,16 +55,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-amc/src/dev/google-services.json b/android/navi-amc/src/dev/google-services.json deleted file mode 100644 index 70d746d803..0000000000 --- a/android/navi-amc/src/dev/google-services.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "project_info": { - "project_number": "300703280413", - "project_id": "navi-amc-dev", - "storage_bucket": "navi-amc-dev.appspot.com" - }, - "client": [ - { - "client_info": { - "mobilesdk_app_id": "1:300703280413:android:17deaf30833edca42b45f4", - "android_client_info": { - "package_name": "com.navi.amc.dev" - } - }, - "oauth_client": [ - { - "client_id": "300703280413-71sairfmacs5hphfstkr4uehj4v4vvjn.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyDKPVPj-cR5wq8Uc0ZMylnwAFFYppEJqyo" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [ - { - "client_id": "300703280413-71sairfmacs5hphfstkr4uehj4v4vvjn.apps.googleusercontent.com", - "client_type": 3 - } - ] - } - } - } - ], - "configuration_version": "1" -} \ No newline at end of file diff --git a/android/navi-amc/src/dev/res/raw/amc_mock.json b/android/navi-amc/src/dev/res/raw/amc_mock.json deleted file mode 100644 index f1ee204c18..0000000000 --- a/android/navi-amc/src/dev/res/raw/amc_mock.json +++ /dev/null @@ -1,2392 +0,0 @@ -{ - "sip_details_page": { - "header": { - "title": { - "text": "SIP", - "span": [ - { - "fontColor": "#191919", - "fontName": "NAVI_REGULAR", - "fontSize": 14 - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontColor": "#FF5732", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 14 - } - ] - }, - "helpBottomSheet": { - "header": "Need help?", - "source": "amc", - "sourceId": "amc", - "helpOptions": [ - { - "title": "Chat with us", - "iconCode": "CHAT_NEW_ICON", - "itemType": "CHAT", - "enabled": false, - "cta": { - "url": "chatInHouse", - "parameters": [ - { - "key": "CHAT_BOT_SCREEN_NAME", - "value": "AMC" - }, - { - "key": "CHAT_BOT_SOURCE_ID", - "value": "AMC" - } - ] - } - } - ] - } - }, - "backCta": { - "url": "home" - }, - "backIconCode": "ICON_BACK_ARROW" - }, - "content": { - "subHeader": { - "title": { - "text": "Nifty 50 Index Fund", - "span": [ - { - "fontColor": "#191919", - "fontName": "NAVI_BOLD", - "fontSize": 20 - } - ] - }, - "icon": { - "iconCode": "CHEVRON", - "url": "url" - } - }, - "items": [ - { - "type": "AUTOPAY_CARD", - "margin": { - "topDp": 32, - "startDP": 16, - "endDp": 16 - }, - "title": { - "text": "Setup autopay for seamless\nSIP payments", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_BOLD", - "fontColor": "#011A48" - } - ] - }, - "iconCode": "xyz", - "action": { - "title": "Set autopay", - "url": "xyz", - "titleColor": "#FFFFFF" - }, - "bgColor": "#FFEAEA" - }, - { - "type": "SINGLE_PRODUCT_DATA", - "margin": { - "topDp": 14, - "startDP": 6, - "endDp": 6 - }, - "labelData1": { - "title": { - "text": "DUE IN 3 DAYS", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_BOLD", - "fontColor": "#FFFFFF" - } - ] - }, - "bgColor": "#22A940" - }, - "items": [ - { - "topLeft": { - "text": "Amount", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "topRight": { - "text": "Amount", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "bottomLeft": { - "text": "₹9,000", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "bottomRight": { - "text": "Active", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - }, - { - "topLeft": { - "text": "Frequency", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "topRight": { - "text": "SIP created on", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "bottomLeft": { - "text": "Monthly", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "bottomRight": { - "text": "11th Jul 2022", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - { - "topLeft": { - "text": "Last installment", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "topRight": { - "text": "Next installment", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "bottomLeft": { - "text": "11th Jul 2022", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "bottomRight": { - "text": "11th Aug 2022", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - ] - }, - { - "type": "NOTE_WIDGET", - "margin": { - "topDp": 14, - "startDP": 16, - "endDp": 16 - }, - "title": { - "text": "Important Note:", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "description": { - "text": "You can pay your installment from 3 days before to 3 days after the installment due date.", - "span": [ - { - "fontSize": "10", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - } - }, - { - "type": "INFORMATION_CARD", - "margin": { - "topDp": 16, - "startDP": 16, - "endDp": 16 - }, - "leftIcon": "GREY_DARK_INFO_ICON", - "rightIcon": "ICON_CROSS_ARROW", - "bgColor": "#FAF3EB", - "title": { - "text": "SIP details modified", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_BOLD", - "fontColor": "#F7B500" - } - ] - }, - "subtitle": { - "text": "This might take sometime to reflect in your portfolio.", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#4D4D4D" - } - ] - } - } - ], - "modifyBottomSheetData": { - "title": { - "text": "Modify SIP", - "span": [ - { - "fontSize": "18", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "SIP details", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "sip_details" - }, - { - "title": { - "text": "Skip installment", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "SKIP_SIP" - }, - { - "title": { - "text": "Pause SIP", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "PAUSE_SIP" - }, - { - "title": { - "text": "Delete SIP", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "DELETE_SIP" - } - ] - }, - "genericBottomSheets": { - "SKIP_SIP": { - "title": "Want to skip next SIP installment?", - "message": "You can skip the next SIP installment. However, subsequent installments will be due monthly (every 30 days) as per the existing cycle only.", - "code": "", - "assetDetails": { - "icon": "ICON_ERROR_SMALL" - }, - "actions": [ - { - "title": "Skip next installment", - "cta": { - "url": "SKIP_SIP_ACTION" - } - }, - { - "title": "Go back" - } - ] - }, - "PAUSE_SIP": { - "title": "Want to pause this SIP?", - "message": "You can pause this SIP. The SIP will remain paused until you make it active again.", - "code": "", - "assetDetails": { - "icon": "ICON_ERROR_SMALL" - }, - "actions": [ - { - "title": "Pause SIP", - "cta": { - "url": "PAUSE_SIP_ACTION" - } - }, - { - "title": "Go back" - } - ] - }, - "DELETE_SIP": { - "title": "Want to delete this SIP?", - "message": "Your SIP will be deleted. You can redeem funds from the portfolio section. SIP cannot be activated again if deleted once.", - "code": "", - "assetDetails": { - "icon": "ICON_ERROR_SMALL" - }, - "actions": [ - { - "title": "Delete SIP", - "cta": { - "url": "DELETE_SIP_ACTION" - } - }, - { - "title": "Go back" - } - ] - } - } - }, - "footer": { - "nextCta": { - "title": "Modify", - "url": "MODIFY_BOTTOM_SHEET", - "titleColor": "#F5F5F5", - "bgColor": "#FF5732" - } - } - }, - "otp_data": { - "header": { - "backIconCode": "ICON_BACK_ARROW_BLACK", - "title": { - "text": "Portfolio", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "subTitle": { - "text": "OTP verification", - "span": [ - { - "fontSize": "24", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "description": { - "text": "Enter OTP to proceed with redemption", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontColor": "#FF5732", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 14 - } - ] - }, - "helpBottomSheet": { - "header": "Need Help?", - "source": "amc", - "sourceId": "amc", - "helpOptions": [ - { - "title": "Chat with us", - "iconCode": "CHAT_ICON", - "enabled": true, - "itemType": "CHAT", - "cta": { - "url": "chatInHouse", - "parameters": [ - { - "key": "CHAT_BOT_SCREEN_NAME", - "value": "AMC" - } - ] - } - }, - { - "title": "Call us", - "iconCode": "CALL_ICON", - "enabled": true, - "cta": { - "url": "menu/call", - "parameters": [ - { - "key": "number", - "value": "tel:+918147544555" - } - ] - } - } - ] - } - } - }, - "content": { - "enterOtpText": { - "text": "Enter OTP", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "regenerateOtpText": { - "text": "Resend OTP in", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "sentText": { - "text": "Sent to", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "resendOtpText": { - "text": "Resend OTP", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "tnc": { - "text": "By continuing you agree to terms of use & privacy policy", - "span": [ - { - "startSpan": 0, - "endSpan": 27, - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "underline": false - }, - { - "startSpan": 27, - "endSpan": 32, - "fontSize": "12", - "fontName": "NAVI_BOLD", - "fontColor": "#6B6B6B", - "underline": true, - "cta": { - "url": "menu/terms", - "parameters": [ - { - "key": "content", - "value": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/tnc/Terms+of+Use.html" - } - ] - } - }, - { - "startSpan": 32, - "endSpan": 41, - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "underline": false - }, - { - "startSpan": 41, - "endSpan": 56, - "fontSize": "12", - "fontName": "NAVI_BOLD", - "fontColor": "#6B6B6B", - "underline": true, - "cta": { - "url": "menu/privacyPolicy", - "parameters": [ - { - "key": "content", - "value": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/privacy_policy/index.html" - } - ] - } - } - ] - } - }, - "footer": { - "nextCta": { - "title": "Verify" - } - } - }, - "statusData": { - "header": { - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontColor": "#FF5732", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 14 - } - ] - }, - "cta": { - "url": "xyz" - } - } - }, - "content": { - "title": { - "text": "Success", - "span": [ - { - "fontColor": "#191919", - "fontName": "NAVI_BOLD", - "fontSize": 16 - } - ] - }, - "description": { - "text": "We have successfully received your \ndocuments from DigiLocker.", - "span": [ - { - "fontColor": "#6B6B6B", - "fontName": "NAVI_REGULAR", - "fontSize": 14 - } - ] - }, - "iconCode": "TICK_MARK_GREEN", - "dataSafeWidget": { - "title": { - "text": "Your data is 100% safe. ", - "span": [ - { - "fontColor": "#6B6B6B", - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 10 - } - ] - }, - "link": { - "title": { - "text": "Know more", - "span": [ - { - "fontColor": "#FF5732", - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 10 - } - ] - }, - "cta": { - "url": "xyz" - } - }, - "iconCode": "ICON_SECURITY" - }, - "autoDismissTimeInSec": 3 - }, - "footer": { - "progress": 40, - "nextCta": { - "url": "bank_details" - } - } - }, - "kyc_start": { - "header": { - "backIconCode": "ICON_BACK_ARROW", - "backCta": { - "url": "xyz" - }, - "title": { - "text": "KYC", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "subTitle": { - "text": "KYC through DigiLocker", - "span": [ - { - "fontSize": "24", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "description": { - "text": "Aadhaar OTP verification to fetch address details", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "cta": { - "url": "xyz" - } - } - }, - "content": { - "title": { - "text": "You will be redirected to DigiLocker in the next step. If the PAN number \"AGTPX1234A\" does not belong to you, please restart KYC.", - "span": [ - { - "startSpan": 0, - "endSpan": 73, - "fontSize": "14", - "fontName": "NAVI_REGULAR", - "fontColor": "#191919", - "underline": false - }, - { - "startSpan": 74, - "endSpan": 84, - "fontSize": "14", - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "underline": false - }, - { - "startSpan": 85, - "endSpan": 116, - "fontSize": "14", - "fontName": "NAVI_REGULAR", - "fontColor": "#191919", - "underline": false - }, - { - "startSpan": 117, - "endSpan": 128, - "fontSize": "14", - "fontName": "NAVI_BOLD", - "fontColor": "#FF5732", - "underline": true - } - ] - }, - "description": { - "text": "Your data is 100% secured.", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "iconCode": "ICON_SECURITY_CHECH", - "note": { - "title": { - "text": "Important Note:", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "description": { - "text": "For DigiLocker verification, Aadhar card must be\nlinked to your phone number.", - "span": [ - { - "fontSize": "10", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - } - } - }, - "footer": { - "progress": 80, - "nextCta": { - "title": "Continue with DigiLocker", - "url": "amc/checker/signature" - } - } - }, - "kyc_esign": { - "header": { - "backIconCode": "ICON_BACK_ARROW", - "backCta": { - "url": "xyz" - }, - "title": { - "text": "KYC", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "subTitle": { - "text": "Aadhaar e-signature", - "span": [ - { - "fontSize": "24", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "description": { - "text": "Your Aadhar must be linked to a phone number", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "cta": { - "url": "xyz" - } - } - }, - "content": { - "title": { - "text": "Aadhaar e-sign digitally signs all your documents needed for KYC and account opening with Navi Mutual Funds.", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "iconCode": "xyz", - "dataSafeWidget": { - "title": { - "text": "Your data is 100% safe.", - "span": [ - { - "fontSize": "10", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "iconCode": "ICON_SECURITY" - } - }, - "footer": { - "progress": 80, - "nextCta": { - "title": "Proceed to Aadhaar e-signature", - "url": "amc/checker/signature" - } - } - }, - "signature_data": { - "header": { - "title": { - "text": "KYC", - "span": [ - { - "fontColor": "#191919", - "fontName": "NAVI_REGULAR", - "fontSize": 14.0 - } - ] - }, - "subTitle": { - "text": "Your signature", - "span": [ - { - "fontColor": "#191919", - "fontName": "NAVI_BOLD", - "fontSize": 24.0 - } - ] - }, - "description": { - "text": "Scribble your signature to complete your KYC", - "span": [ - { - "fontColor": "#6B6B6B", - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12.0 - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontColor": "#FF5732", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 14.0 - } - ] - }, - "cta": { - "url": "xyz" - } - }, - "backCta": { - "url": "home" - }, - "backIconCode": "ICON_BACK_ARROW" - }, - "content": { - "dataSafeWidget": { - "title": { - "text": "Your data is 100% safe. ", - "span": [ - { - "fontSize": "10", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "link": { - "title": { - "text": "Know more", - "span": [ - { - "fontSize": "10", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "cta": { - "url": "" - } - }, - "iconCode": "ICON_SECURITY" - } - }, - "footer": { - "progress": 80, - "backCta": { - "title": "Retry" - }, - "nextCta": { - "title": "Save", - "url": "amc/kyc/esign" - } - } - }, - "bank_details_data": { - "header": { - "title": { - "text": "KYC", - "span": [ - { - "fontColor": "#191919", - "fontName": "NAVI_REGULAR", - "fontSize": 14 - } - ] - }, - "subTitle": { - "text": "Bank details", - "span": [ - { - "fontColor": "#191919", - "fontName": "NAVI_BOLD", - "fontSize": 24 - } - ] - }, - "description": { - "text": "Provide details of your active bank account", - "span": [ - { - "fontColor": "#6B6B6B", - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12 - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontColor": "#FF5732", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 14 - } - ] - }, - "cta": { - "url": "xyz" - } - }, - "backCta": { - "url": "home" - }, - "backIconCode": "ICON_BACK_ARROW" - }, - "content": { - "isNonEditable": false, - "note": { - "bgColor": "#D9F4E3", - "iconCode": "TICK_MARK_GREEN", - "title": { - "text": "Your bank details are verified", - "span": [ - { - "fontColor": "#14BC51", - "fontName": "NAVI_BOLD", - "fontSize": 12 - } - ] - } - }, - "widgets": [ - { - "widgetId": "bankName", - "widgetName": "LABEL_WITH_INPUT_SEARCH_WIDGET", - "widgetData": { - "title": "Bank name", - "inputTextItemData": { - "hint": "Search your bank", - "inputType": "text", - "enableOnlyClick": true, - "actionData": { - "url": "bank_search" - } - }, - "isNewWidget": true, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Enter bank name" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "ifscCode", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "IFSC code", - "inputTextItemData": { - "hint": "Enter your IFSC code", - "savedText": "", - "inputType": "text", - "maxCharLength": 11, - "convertToCaps": true - }, - "isNewWidget": true, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Enter IFSC code" - }, - { - "name": "REGEX", - "regex": "^[A-Z]{4}0[A-Z0-9]{6}$", - "errorText": "Invalid IFSC code. Please re-enter.", - "errorIcon": "ICON_XYZ" - } - ], - "infoCta": { - "title": { - "text": "Find IFSC", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_BOLD", - "fontColor": "#FF5732", - "underline": true - } - ] - }, - "cta": { - "url": "ifsc_bottomsheet" - } - } - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "accountNumber", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "Account number", - "inputTextItemData": { - "hint": "Enter your account number", - "savedText": "", - "inputType": "number", - "maxCharLength": 50, - "convertToCaps": false - }, - "isNewWidget": true, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Enter account name" - }, - { - "name": "REGEX", - "regex": "[0-9]{9,18}", - "errorText": "Invalid account number. Please re-enter.", - "errorIcon": "ICON_XYZ" - } - ] - }, - "defaultVisibility": "SHOW" - } - ] - }, - "footer": { - "progress": 40, - "nextCta": { - "title": "Next", - "url": "amc/checker/PENNY_DROP" - } - } - }, - "bank_search_data": { - "header": { - "title": { - "text": "KYC", - "span": [ - { - "fontColor": "#191919", - "fontName": "NAVI_REGULAR", - "fontSize": 14 - } - ] - }, - "subTitle": { - "text": "Select your bank", - "span": [ - { - "fontColor": "#191919", - "fontName": "NAVI_BOLD", - "fontSize": 24 - } - ] - }, - "description": { - "text": "Provide details of your active bank account", - "span": [ - { - "fontColor": "#6B6B6B", - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12 - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontColor": "#FF5732", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 14 - } - ] - }, - "cta": { - "url": "xyz" - } - }, - "backCta": { - "url": "xyz" - }, - "backIconCode": "ICON_BACK_ARROW" - }, - "content": { - "searchTitle": { - "text": "Bank name", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "popularBankTitle": { - "text": "Popular banks", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "info": { - "iconCode": "ICON_INFO_SIMPLE", - "title": { - "text": "Please make sure that you have active net banking or debit card with your bank account.", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - "allBankTitle": { - "text": "All banks", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "searchHint": { - "text": "Search your bank" - } - } - }, - "kyc_onboard": { - "header": { - "backCta": { - "url": "home" - }, - "title": { - "text": "KYC Completion", - "span": [ - { - "fontSize": "10", - "fontName": "NAVI_BOLD", - "fontColor": "#011A48" - } - ] - }, - "subTitle": { - "text": "takes less than 10 minutes", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "help": { - "text": "HELP", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#FF5732" - } - ] - } - }, - "content": { - "stepTitle": { - "text": "NEXT STEPS", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_BOLD", - "fontColor": "#011A48" - } - ] - }, - "steps": [ - { - "title": { - "text": "Document Upload", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "subTitle": { - "text": "Upload required documents", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - }, - "iconCode": "ICON_DOCUMENT" - }, - { - "title": { - "text": "Bank Details", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "subTitle": { - "text": "Bank name, account number, IFSC", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - }, - "iconCode": "ICON_BANK_DETAILS" - }, - { - "title": { - "text": "Personal Details", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "subTitle": { - "text": "Name, email ID, maritial status, income", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - }, - "iconCode": "ICON_PERSONAL_DETAILS" - }, - { - "title": { - "text": "Aadhaar e-signature", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "subTitle": { - "text": "To digitally sign all uploaded documents", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - }, - "iconCode": "ICON_AADHAAR_ESIGN" - } - ], - "banner": { - "title": { - "text": "Start investing", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_BOLD", - "fontColor": "#011A48" - } - ] - }, - "leftIconCode": "ICON_SUCCESS_LEFT", - "rightIconCode": "ICON_SUCCESS_RIGHT" - } - }, - "footer": { - "nextCta": { - "title": "Get started", - "url": "amc/kyc/pan" - } - } - }, - "kyc_pan_data": { - "header": { - "backCta": { - "url": "xyz" - }, - "title": { - "text": "KYC details", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "subTitle": { - "text": "Enter your PAN details", - "span": [ - { - "fontSize": "24", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "description": { - "text": "We need these details to check your eligibility", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "cta": { - "url": "xyz" - } - } - }, - "content": { - "widgets": [ - { - "widgetId": "panNumber", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "PAN number", - "inputTextItemData": { - "hint": "Enter your 10-digit PAN number", - "savedText": "APWPY6745G", - "inputType": "textCapCharacters", - "maxCharLength": 10, - "actionAvailable": false, - "convertToCaps": true - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter your PAN number" - }, - { - "name": "REGEX", - "regex": "[A-Z]{5}[0-9]{4}[A-Z]{1}", - "errorText": "Invalid PAN number. Please check and re-enter.", - "errorIcon": "ICON_XYZ" - } - ], - "isNewWidget": true - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "dob", - "widgetName": "LABEL_WITH_DAY_MONTH_YEAR_WIDGET", - "widgetData": { - "title": "Date of birth", - "inputTextItemData": { - "savedDate": "1994-11-10", - "hint": "DD - MM - YYYY", - "maxCharLength": 0, - "actionAvailable": false, - "minDate": "1967-07-18", - "maxDate": "2004-07-18", - "convertToCaps": false, - "defaultSelectedDate": "1990-01-01" - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter a valid date of birth", - "errorIcon": "ICON_XYZ" - }, - { - "name": "IMPOSSIBLE_DATE_CHECK", - "errorText": "Enter a valid date", - "errorIcon": "ICON_XYZ" - }, - { - "name": "DATE_VALIDATION", - "errorText": "Valid Age Range is from 18 to 55 years", - "minDate": "1967-07-18", - "maxDate": "2004-07-18", - "errorIcon": "ICON_XYZ" - } - ], - "isNewWidget": true - }, - "defaultVisibility": "SHOW" - } - ], - "consent": { - "text": "I authorize NAVI to conduct / update / fetch my KYC details from CKYC as per required guidelines.", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - } - }, - "footer": { - "progress": 25, - "nextCta": { - "title": "Next", - "url": "xyz" - } - } - }, - "kyc_personal_details_data": { - "header": { - "backIconCode": "ICON_BACK_ARROW", - "backCta": { - "url": "xyz" - }, - "title": { - "text": "KYC details", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "subTitle": { - "text": "Personal details", - "span": [ - { - "fontSize": "24", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "description": { - "text": "These are required to complete the KYC process", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "cta": { - "url": "xyz" - } - } - }, - "content": { - "widgets": [ - { - "widgetId": "emailId", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "Email ID", - "inputTextItemData": { - "savedText": "shankar@gmail.com", - "hint": "Enter your email id", - "inputType": "emailAddress", - "maxCharLength": 100, - "actionAvailable": false, - "convertToCaps": false - }, - "validation": [ - { - "name": "REGEX", - "regex": "[a-zA-Z0-9\\+\\.\\_\\%\\-\\+]{1,256}\\@[a-zA-Z0-9][a-zA-Z0-9\\-]{0,64}(\\.[a-zA-Z0-9][a-zA-Z0-9\\-]{0,25})+", - "errorText": "Invalid email ID. Please re-enter.", - "errorIcon": "ICON_XYZ" - } - ], - "isNewWidget": true, - "infoText": "Please enter your active email id as it will be used for all the communication." - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "maritalStatus", - "widgetName": "LABEL_WITH_MULTI_OPTION_SINGLE_CHOICE_TILE_WIDGET", - "widgetData": { - "title": "Marital status", - "validation": [ - { - "name": "MULTI_OPTION_SELECTION_CONSTRAINT", - "errorText": "Please select atleast one item", - "parameters": [ - { - "minSelection": 1, - "maxSelection": 1 - } - ], - "errorIcon": "ICON_XYZ" - } - ], - "isNewWidget": true, - "tileSelectorData": { - "items": [ - { - "id": "SINGLE", - "iconCodeUnSelected": "ICON_SINGLE_UNSELECTED", - "iconCodeSelected": "ICON_SINGLE_SELECTED", - "title": "Single", - "isSelected": false - }, - { - "id": "MARRIED", - "iconCodeUnSelected": "ICON_MARRIED_UNSELECTED", - "iconCodeSelected": "ICON_MARRIED_SELECTED", - "title": "Married", - "isSelected": false - } - ], - "fitCount": 2, - "interItemSpaceDp": 20 - } - }, - "defaultVisibility": "SHOW" - } - ] - }, - "footer": { - "progress": 40, - "nextCta": { - "title": "Next", - "url": "employment_details" - } - } - }, - "checker_data": { - "content": { - "title": { - "text": "Hold on!", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "description": { - "text": "We are trying to fetch your details for faster KYC verification. This would not take long.", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_REGULAR", - "fontColor": "#6B6B6B" - } - ] - }, - "note": { - "title": { - "text": "Important Note:", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "description": { - "text": "Please don’t close the application or press back.", - "span": [ - { - "fontSize": "10", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - } - }, - "dataSafeWidget": { - "title": { - "text": "Your data is 100% safe. ", - "span": [ - { - "fontSize": "10", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "iconCode": "ICON_SECURITY" - }, - "asyncData": "{For polling}" - } - }, - "kyc_tracker_data": { - "header": { - "backIconCode": "ICON_CROSS_ARROW", - "backCta": { - "url": "home" - }, - "title": { - "text": "KYC", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "subTitle": { - "text": "Let’s set up your account", - "span": [ - { - "fontSize": "24", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "description": { - "text": "Below steps are required to complete the KYC process", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontSize": "14", - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "cta": { - "url": "xyz" - } - } - }, - "content": { - "widgets": [ - { - "leftIconCode": "", - "rightIconCode": "", - "isClickable": false, - "cta": { - "url": "start" - }, - "title": { - "text": "Document verification", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "description": { - "text": "PAN and Aadhaar verification", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - } - }, - { - "leftIconCode": "", - "rightIconCode": "", - "isClickable": true, - "bgColor": "#FF5732", - "cta": { - "url": "personal_details" - }, - "title": { - "text": "Personal details", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "description": { - "text": "Marital status, email, income, etc", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - } - }, - { - "leftIconCode": "", - "rightIconCode": "", - "cta": { - "url": "bank_details" - }, - "title": { - "text": "Bank details", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "description": { - "text": "Bank name, account no., IFSC", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - } - }, - { - "leftIconCode": "", - "rightIconCode": "", - "cta": { - "url": "esign" - }, - "title": { - "text": "E-signature", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "description": { - "text": "Digital sign of documents", - "span": [ - { - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - } - } - ], - "dataSafeWidget": { - "title": { - "text": "Your data is 100% safe. ", - "span": [ - { - "fontSize": "10", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "link": { - "title": { - "text": "Know more", - "span": [ - { - "fontSize": "10", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "cta": { - "url": "" - } - }, - "iconCode": "ICON_SECURITY" - } - } - }, - "kyc_employment_details_data": { - "header": { - "title": { - "text": "KYC", - "span": [ - { - "fontColor": "#191919", - "fontName": "NAVI_REGULAR", - "fontSize": 14 - } - ] - }, - "subTitle": { - "text": "Employment details", - "span": [ - { - "fontColor": "#191919", - "fontName": "NAVI_BOLD", - "fontSize": 24 - } - ] - }, - "description": { - "text": "Provide employment details to complete your KYC", - "span": [ - { - "fontColor": "#6B6B6B", - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12 - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontColor": "#FF5732", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 14 - } - ] - }, - "helpBottomSheet": { - "header": "Need Help?", - "source": "amc", - "sourceId": "amc", - "helpOptions": [ - { - "title": "Chat with us", - "iconCode": "CHAT_ICON", - "enabled": true, - "itemType": "CHAT", - "cta": { - "url": "chatInHouse", - "parameters": [ - { - "key": "CHAT_BOT_SCREEN_NAME", - "value": "AMC" - } - ] - } - }, - { - "title": "Call us", - "iconCode": "CALL_ICON", - "enabled": true, - "cta": { - "url": "menu/call", - "parameters": [ - { - "key": "number", - "value": "tel:+918147544555" - } - ] - } - } - ] - } - }, - "backCta": { - "url": "home" - }, - "backIconCode": "ICON_CROSS_ARROW", - "exitBottomSheetData": { - "title": "Are you sure you want to exit?", - "message": "Exiting in between won’t allow KYC verification. However, we will save your progress and you can continue later.", - "actions": [ - { - "title": "Exit", - "url": "home" - }, - { - "title": "Cancel" - } - ] - } - }, - "content": { - "bottomSheetData": { - "title": "Nomination", - "description": "Nominees can be added after the KYC approval process.", - "iconCode": "ICON_INFO_SIMPLE", - "cta": { - "title": "Okay, got it" - } - }, - "consent": { - "text": "By continuing, I agree that I am a resident Indian citizen paying taxes in India. I am not a politically exposed person and choose to add nominations later know more.", - "span": [ - { - "startSpan": 0, - "endSpan": 155, - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - }, - { - "startSpan": 156, - "endSpan": 165, - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#FF5732", - "underline": true, - "cta": { - "url": "CONSENT_BOTTOM_SHEET" - } - }, - { - "startSpan": 166, - "endSpan": 166, - "fontSize": "12", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "widgets": [ - { - "widgetId": "occupationType", - "widgetName": "TEXT_WITH_SEARCH_WIDGET", - "widgetData": { - "title": "Type of occupation", - "textItemData": { - "hint": "Choose options below", - "inputType": "SEARCH", - "iconCode": "ICON_DROP_ARROW", - "bottomSheetData": { - "title": { - "text": "Select type of occupation", - "span": [ - { - "fontSize": "18", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "Business/ Self employed", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "self_employed" - }, - { - "title": { - "text": "Government Service", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "government_service" - }, - { - "title": { - "text": "Private Sector", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "private_sector" - }, - { - "title": { - "text": "Student", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "student" - }, - { - "title": { - "text": "Others", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "others" - } - ] - } - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please select at least one", - "errorIcon": "ICON_xyz" - } - ], - "isNewWidget": true - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "incomeSource", - "widgetName": "LABEL_WITH_MULTI_OPTION_SINGLE_CHOICE_TILE_WIDGET", - "widgetData": { - "title": "Source of income", - "validation": [ - { - "name": "MULTI_OPTION_SELECTION_CONSTRAINT", - "errorText": "Please select atleast one item", - "parameters": [ - { - "minSelection": 1, - "maxSelection": 1 - } - ], - "errorIcon": "ICON_XYZ" - } - ], - "isNewWidget": true, - "tileSelectorData": { - "items": [ - { - "id": "Salary", - "iconCodeUnSelected": "ICON_SALARY_UNSELECTED", - "iconCodeSelected": "ICON_SALARY_SELECTED", - "title": "Salary", - "isSelected": false - }, - { - "id": "Self-employed", - "iconCodeUnSelected": "ICON_SELF_EMPLOYED_UNSELECTED", - "iconCodeSelected": "ICON_SELF_EMPLOYED_SELECTED", - "title": "Self-employed", - "isSelected": false - }, - { - "id": "Others", - "iconCodeUnSelected": "ICON_OTHERS_UNSELECTED", - "iconCodeSelected": "ICON_OTHERS_SELECTED", - "title": "Others", - "isSelected": false - } - ], - "fitCount": 3, - "interItemSpaceDp": 20 - } - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "annualIncome", - "widgetName": "TEXT_WITH_SEARCH_WIDGET", - "widgetData": { - "title": "Annual income", - "textItemData": { - "hint": "Choose options below", - "inputType": "SEARCH", - "iconCode": "ICON_DROP_ARROW", - "bottomSheetData": { - "title": { - "text": "Select range for your annual income", - "span": [ - { - "fontSize": "18", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "Below 1 LAKH", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "BELOW_ONE_LAKH" - }, - { - "title": { - "text": "1 - 5 LAKHS", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "ONE_TO_FIVE_LAKHS" - }, - { - "title": { - "text": "5 - 10 LAKHS", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "FIVE_TO_TEN_LAKHS" - }, - { - "title": { - "text": "10 -25 LAKHS", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "TEN_TO_TWENTY_FIVE_LAKHS" - }, - { - "title": { - "text": "More than 25 LAKHS", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "MORE_THAN_TWENTY_FIVE_LAKHS" - } - ] - } - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please select at least one", - "errorIcon": "ICON_xyz" - } - ], - "isNewWidget": true, - "widgetHint": { - "iconCode": "ICON_INFO_SIMPLE", - "title": "What is annual income?", - "description": "Annual income is the amount received in-hand per year after deduction and taxes.", - "cta": { - "title": "Okay, got it" - } - } - }, - "defaultVisibility": "SHOW" - } - ] - }, - "footer": { - "progress": 40, - "backCta": { - "title": "Back", - "url": "personal_details" - }, - "nextCta": { - "title": "Next", - "url": "signature" - } - } - } -} \ No newline at end of file diff --git a/android/navi-amc/src/dev/res/raw/amc_mock1.json b/android/navi-amc/src/dev/res/raw/amc_mock1.json deleted file mode 100644 index 4dd27edbc9..0000000000 --- a/android/navi-amc/src/dev/res/raw/amc_mock1.json +++ /dev/null @@ -1,5587 +0,0 @@ -{ - "fund_detail": { - "header": { - "title": { - "text": "Mutual fund", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#FF5732" - } - ] - } - } - }, - "content": { - "fundHeader": { - "title": { - "text": "Nifty 50 Index Fund", - "span": [ - { - "fontSize": 20, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "subtitle": { - "text": "Invest in top 50 companies such as Reliance,\nTATA, HDFC and many more.", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - "fundDetails": { - "items": [ - { - "leftTitle": { - "text": "NAV: 11th Jul 2022", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#6B6B6B" - } - ] - }, - "rightTitle": { - "text": "AUM", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#6B6B6B" - } - ] - }, - "leftSubTitle": { - "text": "₹1500 +10.50%", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 14, - "fontColor": "#191919" - }, - { - "startSpan": 6, - "endSpan": 13, - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 10, - "fontColor": "#22A940" - } - ] - }, - "rightSubTitle": { - "text": "₹15,00,00,000", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 14, - "fontColor": "#191919" - } - ] - } - }, - { - "leftTitle": { - "text": "Min. investment", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#6B6B6B" - } - ] - }, - "rightTitle": { - "text": "Lock-in period", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#6B6B6B" - } - ] - }, - "leftSubTitle": { - "text": "₹1000", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 14, - "fontColor": "#191919" - } - ] - }, - "rightSubTitle": { - "text": "10 months", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 14, - "fontColor": "#191919" - } - ] - } - }, - { - "leftTitle": { - "text": "Exit Load", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#6B6B6B" - } - ] - }, - "rightTitle": { - "text": "Expense ratio", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#6B6B6B" - } - ] - }, - "leftSubTitle": { - "text": "5%", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 14, - "fontColor": "#191919" - } - ] - }, - "rightSubTitle": { - "text": "0.50%", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 14, - "fontColor": "#191919" - } - ] - } - } - ] - }, - "fundManagerDetails": { - "title": { - "text": "Fund manager", - "span": [ - { - "fontSize": 16, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "name": { - "text": "Mr. Abc Xyz", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "experience": { - "text": "10 years of experience", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "profile": "ROUND_ICON" - }, - "fundHoldingDetails": { - "title": { - "text": "Fund Holdings - Sector", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 16, - "fontColor": "#191919" - } - ] - }, - "leftHeader": { - "text": "Sector", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#6B6B6B" - } - ] - }, - "rightHeader": { - "text": "Allocation", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#6B6B6B" - } - ] - }, - "listData": [ - { - "left": { - "item": { - "text": "Sector 1", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "right": { - "item": { - "text": "10.00%", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - }, - "progressData": { - "progress": 10, - "color": "#14BC51" - } - } - }, - { - "left": { - "item": { - "text": "Sector 1", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "right": { - "item": { - "text": "10.00%", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - }, - "progressData": { - "progress": 30, - "color": "#14BC51" - } - } - }, - { - "left": { - "item": { - "text": "Sector 1", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "right": { - "item": { - "text": "10.00%", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - }, - "progressData": { - "progress": 30, - "color": "#14BC51" - } - } - }, - { - "left": { - "item": { - "text": "Sector 1", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "right": { - "item": { - "text": "10.00%", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - }, - "progressData": { - "progress": 30, - "color": "#14BC51" - } - } - }, - { - "left": { - "item": { - "text": "Sector 1", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "right": { - "item": { - "text": "10.00%", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - }, - "progressData": { - "progress": 50, - "color": "#14BC51" - } - } - }, - { - "left": { - "item": { - "text": "Sector 1", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "right": { - "item": { - "text": "10.00%", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - }, - "progressData": { - "progress": 50, - "color": "#14BC51" - } - } - }, - { - "left": { - "item": { - "text": "Sector 1", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "right": { - "item": { - "text": "10.00%", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - }, - "progressData": { - "progress": 12, - "color": "#14BC51" - } - } - }, - { - "left": { - "item": { - "text": "Sector 1", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "right": { - "item": { - "text": "10.00%", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - }, - "progressData": { - "progress": 100, - "color": "#14BC51" - } - } - }, - { - "left": { - "item": { - "text": "Sector 1", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "right": { - "item": { - "text": "10.00%", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - }, - "progressData": { - "progress": 10, - "color": "#14BC51" - } - } - }, - { - "left": { - "item": { - "text": "Sector 1", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "right": { - "item": { - "text": "10.00%", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - }, - "progressData": { - "progress": 10, - "color": "#14BC51" - } - } - } - ], - "displayCount": 5, - "action": { - "titleColor": "#FF5732", - "bgColor": "#F5F5F5", - "title": "View all" - } - }, - "documentData": { - "title": { - "text": "Scheme Information and KIM", - "span": [ - { - "fontSize": 16, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "subtitle": { - "text": "Download documents", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#FF5732" - } - ] - }, - "icon": { - "iconCode": "DOWNLOAD_ICON" - } - }, - "fundGraphDetails": { - "fundDuration": [ - { - "title": { - "text": "3M", - "span": [ - { - "fontSize": 12, - "fontColor": "#22A940", - "fontName": "NAVI_BOLD" - } - ] - }, - "key": "3M", - "selected": false - }, - { - "title": { - "text": "6M", - "span": [ - { - "fontSize": 12, - "fontColor": "#22A940", - "fontName": "NAVI_BOLD" - } - ] - }, - "key": "6M", - "selected": true - }, - { - "title": { - "text": "1Y", - "span": [ - { - "fontSize": 12, - "fontColor": "#22A940", - "fontName": "NAVI_BOLD" - } - ] - }, - "key": "1Y", - "selected": false - }, - { - "title": { - "text": "2Y", - "span": [ - { - "fontSize": 12, - "fontColor": "#22A940", - "fontName": "NAVI_BOLD" - } - ] - }, - "key": "2Y", - "selected": false - }, - { - "title": { - "text": "3Y", - "span": [ - { - "fontSize": 12, - "fontColor": "#22A940", - "fontName": "NAVI_BOLD" - } - ] - }, - "key": "3Y", - "selected": false - }, - { - "title": { - "text": "Max", - "span": [ - { - "fontSize": 12, - "fontColor": "#22A940", - "fontName": "NAVI_BOLD" - } - ] - }, - "key": "Max", - "selected": false - } - ], - "items": [ - { - "title": { - "text": "CAGR", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 16 - } - ] - }, - "subtitle": { - "text": "+ 200.75%", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#22A940", - "fontSize": 18 - } - ] - }, - "duration": [ - { - "y": "10.0" - }, - { - "y": "10.001" - }, - { - "y": "10.0" - }, - { - "y": "9.939" - }, - { - "y": "9.768" - }, - { - "y": "9.923" - }, - { - "y": "9.865" - }, - { - "y": "9.969" - }, - { - "y": "9.984" - }, - { - "y": "9.911" - }, - { - "y": "9.893" - }, - { - "y": "9.797" - }, - { - "y": "9.892" - }, - { - "y": "10.014" - }, - { - "y": "9.966" - }, - { - "y": "10.105" - }, - { - "y": "10.267" - }, - { - "y": "10.279" - }, - { - "y": "10.348" - }, - { - "y": "10.254" - }, - { - "y": "10.383" - }, - { - "y": "10.447" - }, - { - "y": "10.35" - }, - { - "y": "10.298" - }, - { - "y": "10.246" - }, - { - "y": "9.886" - }, - { - "y": "9.781" - }, - { - "y": "9.467" - }, - { - "y": "9.419" - }, - { - "y": "9.567" - }, - { - "y": "9.52" - }, - { - "y": "9.571" - }, - { - "y": "9.781" - }, - { - "y": "9.809" - }, - { - "y": "9.907" - }, - { - "y": "9.84" - }, - { - "y": "9.984" - }, - { - "y": "9.804" - }, - { - "y": "9.911" - }, - { - "y": "10.074" - }, - { - "y": "9.953" - }, - { - "y": "10.065" - }, - { - "y": "10.024" - }, - { - "y": "10.1" - }, - { - "y": "10.124" - }, - { - "y": "10.105" - }, - { - "y": "9.945" - }, - { - "y": "10.081" - }, - { - "y": "10.159" - }, - { - "y": "10.004" - } - ], - "graphColor": { - "startGradientColor": "#8022A940", - "endGradientColor": "#0022A940" - }, - "graphHighlightColor": "#22A940", - "key": "3M" - }, - { - "title": { - "text": "CAGR", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 16 - } - ] - }, - "subtitle": { - "text": "+ 200.75%", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#22A940", - "fontSize": 18 - } - ] - }, - "duration": [ - { - "y": "10.0" - }, - { - "y": "10.001" - }, - { - "y": "10.0" - }, - { - "y": "9.939" - }, - { - "y": "9.768" - }, - { - "y": "9.923" - }, - { - "y": "9.865" - }, - { - "y": "9.969" - }, - { - "y": "9.984" - }, - { - "y": "9.911" - }, - { - "y": "9.893" - }, - { - "y": "9.797" - }, - { - "y": "9.892" - }, - { - "y": "10.014" - }, - { - "y": "9.966" - }, - { - "y": "10.105" - }, - { - "y": "10.267" - }, - { - "y": "10.279" - }, - { - "y": "10.348" - }, - { - "y": "10.254" - }, - { - "y": "10.383" - }, - { - "y": "10.447" - }, - { - "y": "10.35" - }, - { - "y": "10.298" - }, - { - "y": "10.246" - }, - { - "y": "9.886" - }, - { - "y": "9.781" - }, - { - "y": "9.467" - }, - { - "y": "9.419" - }, - { - "y": "9.567" - }, - { - "y": "9.52" - }, - { - "y": "9.571" - }, - { - "y": "9.781" - }, - { - "y": "9.809" - }, - { - "y": "9.907" - }, - { - "y": "9.84" - }, - { - "y": "9.984" - }, - { - "y": "9.804" - }, - { - "y": "9.911" - }, - { - "y": "10.074" - }, - { - "y": "9.953" - }, - { - "y": "10.065" - }, - { - "y": "10.024" - }, - { - "y": "10.1" - }, - { - "y": "10.124" - }, - { - "y": "10.105" - }, - { - "y": "9.945" - }, - { - "y": "10.081" - }, - { - "y": "10.159" - }, - { - "y": "10.004" - } - ], - "graphColor": { - "startGradientColor": "#8022A940", - "endGradientColor": "#0022A940" - }, - "graphHighlightColor": "#22A940", - "key": "6M" - }, - { - "title": { - "text": "CAGR", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 16 - } - ] - }, - "subtitle": { - "text": "+ 200.75%", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#22A940", - "fontSize": 18 - } - ] - }, - "duration": [ - { - "y": "10.0" - }, - { - "y": "10.001" - }, - { - "y": "10.0" - }, - { - "y": "9.939" - }, - { - "y": "9.768" - }, - { - "y": "9.923" - }, - { - "y": "9.865" - }, - { - "y": "9.969" - }, - { - "y": "9.984" - }, - { - "y": "9.911" - }, - { - "y": "9.893" - }, - { - "y": "9.797" - }, - { - "y": "9.892" - }, - { - "y": "10.014" - }, - { - "y": "9.966" - }, - { - "y": "10.105" - }, - { - "y": "10.267" - }, - { - "y": "10.279" - }, - { - "y": "10.348" - }, - { - "y": "10.254" - }, - { - "y": "10.383" - }, - { - "y": "10.447" - }, - { - "y": "10.35" - }, - { - "y": "10.298" - }, - { - "y": "10.246" - }, - { - "y": "9.886" - }, - { - "y": "9.781" - }, - { - "y": "9.467" - }, - { - "y": "9.419" - }, - { - "y": "9.567" - }, - { - "y": "9.52" - }, - { - "y": "9.571" - }, - { - "y": "9.781" - }, - { - "y": "9.809" - }, - { - "y": "9.907" - }, - { - "y": "9.84" - }, - { - "y": "9.984" - }, - { - "y": "9.804" - }, - { - "y": "9.911" - }, - { - "y": "10.074" - }, - { - "y": "9.953" - }, - { - "y": "10.065" - }, - { - "y": "10.024" - }, - { - "y": "10.1" - }, - { - "y": "10.124" - }, - { - "y": "10.105" - }, - { - "y": "9.945" - }, - { - "y": "10.081" - }, - { - "y": "10.159" - }, - { - "y": "10.004" - } - ], - "graphColor": { - "startGradientColor": "#8022A940", - "endGradientColor": "#0022A940" - }, - "graphHighlightColor": "#22A940", - "key": "1Y" - }, - { - "title": { - "text": "CAGR", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 16 - } - ] - }, - "subtitle": { - "text": "+ 200.75%", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#22A940", - "fontSize": 18 - } - ] - }, - "duration": [ - { - "y": "10.0" - }, - { - "y": "10.001" - }, - { - "y": "10.0" - }, - { - "y": "9.939" - }, - { - "y": "9.768" - }, - { - "y": "9.923" - }, - { - "y": "9.865" - }, - { - "y": "9.969" - }, - { - "y": "9.984" - }, - { - "y": "9.911" - }, - { - "y": "9.893" - }, - { - "y": "9.797" - }, - { - "y": "9.892" - }, - { - "y": "10.014" - }, - { - "y": "9.966" - }, - { - "y": "10.105" - }, - { - "y": "10.267" - }, - { - "y": "10.279" - }, - { - "y": "10.348" - }, - { - "y": "10.254" - }, - { - "y": "10.383" - }, - { - "y": "10.447" - }, - { - "y": "10.35" - }, - { - "y": "10.298" - }, - { - "y": "10.246" - }, - { - "y": "9.886" - }, - { - "y": "9.781" - }, - { - "y": "9.467" - }, - { - "y": "9.419" - }, - { - "y": "9.567" - }, - { - "y": "9.52" - }, - { - "y": "9.571" - }, - { - "y": "9.781" - }, - { - "y": "9.809" - }, - { - "y": "9.907" - }, - { - "y": "9.84" - }, - { - "y": "9.984" - }, - { - "y": "9.804" - }, - { - "y": "9.911" - }, - { - "y": "10.074" - }, - { - "y": "9.953" - }, - { - "y": "10.065" - }, - { - "y": "10.024" - }, - { - "y": "10.1" - }, - { - "y": "10.124" - }, - { - "y": "10.105" - }, - { - "y": "9.945" - }, - { - "y": "10.081" - }, - { - "y": "10.159" - }, - { - "y": "10.004" - } - ], - "graphColor": { - "startGradientColor": "#8022A940", - "endGradientColor": "#0022A940" - }, - "graphHighlightColor": "#22A940", - "key": "2Y" - }, - { - "title": { - "text": "CAGR", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 16 - } - ] - }, - "subtitle": { - "text": "+ 200.75%", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#22A940", - "fontSize": 18 - } - ] - }, - "duration": [ - { - "y": "10.0" - }, - { - "y": "10.001" - }, - { - "y": "10.0" - }, - { - "y": "9.939" - }, - { - "y": "9.768" - }, - { - "y": "9.923" - }, - { - "y": "9.865" - }, - { - "y": "9.969" - }, - { - "y": "9.984" - }, - { - "y": "9.911" - }, - { - "y": "9.893" - }, - { - "y": "9.797" - }, - { - "y": "9.892" - }, - { - "y": "10.014" - }, - { - "y": "9.966" - }, - { - "y": "10.105" - }, - { - "y": "10.267" - }, - { - "y": "10.279" - }, - { - "y": "10.348" - }, - { - "y": "10.254" - }, - { - "y": "10.383" - }, - { - "y": "10.447" - }, - { - "y": "10.35" - }, - { - "y": "10.298" - }, - { - "y": "10.246" - }, - { - "y": "9.886" - }, - { - "y": "9.781" - }, - { - "y": "9.467" - }, - { - "y": "9.419" - }, - { - "y": "9.567" - }, - { - "y": "9.52" - }, - { - "y": "9.571" - }, - { - "y": "9.781" - }, - { - "y": "9.809" - }, - { - "y": "9.907" - }, - { - "y": "9.84" - }, - { - "y": "9.984" - }, - { - "y": "9.804" - }, - { - "y": "9.911" - }, - { - "y": "10.074" - }, - { - "y": "9.953" - }, - { - "y": "10.065" - }, - { - "y": "10.024" - }, - { - "y": "10.1" - }, - { - "y": "10.124" - }, - { - "y": "10.105" - }, - { - "y": "9.945" - }, - { - "y": "10.081" - }, - { - "y": "10.159" - }, - { - "y": "10.004" - } - ], - "graphColor": { - "startGradientColor": "#8022A940", - "endGradientColor": "#0022A940" - }, - "graphHighlightColor": "#22A940", - "key": "3Y" - }, - { - "title": { - "text": "CAGR", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 16 - } - ] - }, - "subtitle": { - "text": "+ 200.75%", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#22A940", - "fontSize": 18 - } - ] - }, - "duration": [ - { - "y": "10.0" - }, - { - "y": "10.001" - }, - { - "y": "10.0" - }, - { - "y": "9.939" - }, - { - "y": "9.768" - }, - { - "y": "9.923" - }, - { - "y": "9.865" - }, - { - "y": "9.969" - }, - { - "y": "9.984" - }, - { - "y": "9.911" - }, - { - "y": "9.893" - }, - { - "y": "9.797" - }, - { - "y": "9.892" - }, - { - "y": "10.014" - }, - { - "y": "9.966" - }, - { - "y": "10.105" - }, - { - "y": "10.267" - }, - { - "y": "10.279" - }, - { - "y": "10.348" - }, - { - "y": "10.254" - }, - { - "y": "10.383" - }, - { - "y": "10.447" - }, - { - "y": "10.35" - }, - { - "y": "10.298" - }, - { - "y": "10.246" - }, - { - "y": "9.886" - }, - { - "y": "9.781" - }, - { - "y": "9.467" - }, - { - "y": "9.419" - }, - { - "y": "9.567" - }, - { - "y": "9.52" - }, - { - "y": "9.571" - }, - { - "y": "9.781" - }, - { - "y": "9.809" - }, - { - "y": "9.907" - }, - { - "y": "9.84" - }, - { - "y": "9.984" - }, - { - "y": "9.804" - }, - { - "y": "9.911" - }, - { - "y": "10.074" - }, - { - "y": "9.953" - }, - { - "y": "10.065" - }, - { - "y": "10.024" - }, - { - "y": "10.1" - }, - { - "y": "10.124" - }, - { - "y": "10.105" - }, - { - "y": "9.945" - }, - { - "y": "10.081" - }, - { - "y": "10.159" - }, - { - "y": "10.004" - } - ], - "graphColor": { - "startGradientColor": "#8022A940", - "endGradientColor": "#0022A940" - }, - "graphHighlightColor": "#22A940", - "key": "Max" - } - ] - } - }, - "footer": { - "titleColor": "#F5F5F5", - "title": "Invest now", - "bgColor": "#FF5732" - } - }, - "fund_buy": { - "footer": { - "title": "Create SIP", - "titleColor": "#F5F5F5", - "bgColor": "#FF5732" - }, - "content": { - "note": { - "title": { - "text": "Orders will be processed as per cut-off time.", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#4B4966", - "fontSize": 14 - } - ] - }, - "leftIcon": "ICON_INFO_DARK", - "actionText": { - "title": { - "text": "Details", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#4B4966", - "fontSize": 14, - "underline": true - } - ] - }, - "action": { - "parameters": [ - { - "key": "SHOW_BOTTOMSHEET/COMMON", - "value": "{\"title\":\"TextWithStyle\",\"icon\":\"String\",\"subtitle\":\"TextWithStyle\",\"action\":{\"title\":\"Okay,gotit\",\"titleColor\":\"String\",\"bgColor\":\"String\"}}" - } - ] - } - }, - "bgColor": "#EDECFF" - }, - "fundHeader": { - "title": { - "text": "Navi US Total Stock Market\nFund of Fund", - "span": [ - { - "fontSize": 20, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "subtitle": { - "text": "Subtitle text of this fund", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "label": { - "title": { - "text": "International", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 10, - "fontColor": "#444444" - } - ] - }, - "borderColor": "#FFA18C" - }, - "icon": { - "iconCode": "ARROW", - "url": "String" - } - }, - "fundInvestmentType": { - "defaultChecked": "SIP", - "SIP": [ - { - "widgetId": "sipFrequency", - "widgetName": "TEXT_WITH_SEARCH_WIDGET", - "widgetData": { - "title": "SIP frequency", - "textItemData": { - "hint": "Choose options below", - "inputType": "SEARCH", - "iconCode": "ICON_DROP_ARROW", - "bottomSheetData": { - "title": { - "text": "Select SIP frequency", - "span": [ - { - "fontSize": "18", - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "weekly(7 days)", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "id1", - "show": { - "amount": true, - "date": false - } - }, - { - "title": { - "text": "Fortnightly(15 days)", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "id2", - "show": { - "amount": true, - "date": false - } - }, - { - "title": { - "text": "Monthly(30 days)", - "span": [ - { - "fontSize": "16", - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "id": "MONTHLY", - "show": { - "amount": true, - "date": true - } - } - ] - } - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please select at least one", - "errorIcon": "ICON_xyz" - } - ], - "isNewWidget": true - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "investmentAmount", - "widgetName": "LABEL_WITH_FIXED_HINT_INPUT_WIDGET", - "widgetData": { - "title": "Investment amount", - "validation": [ - { - "name": "REGEX", - "regex": "^[+]?([0-9]+([.][0-9]*)?|[.][0-9]+)$", - "errorText": "Enter valid monthly income" - }, - { - "name": "VALUE_RANGE", - "errorText": "Minimum investment amount ₹ 1000 ", - "minValue": 5000, - "maxValue": 1200000 - } - ], - "isNewWidget": true, - "inputTextFixedHintItemData": { - "hint": "Enter amount in multiples of ₹ 1", - "inputType": "number", - "maxCharLength": 30, - "format": "MONEY", - "actionAvailable": false, - "fixedHint": "₹", - "convertToCaps": false - }, - "infoText": "Minimum investment amount ₹ 1000" - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "bankName", - "widgetName": "LABEL_WITH_INPUT_SEARCH_WIDGET", - "widgetData": { - "title": "Installment date", - "inputTextItemData": { - "hint": "Select date", - "inputType": "text", - "actionAvailable": false, - "enableOnlyClick": true, - "convertToCaps": false, - "actionData": { - "parameters": [ - { - "key": "startDate", - "value": "2022-06-01" - }, - { - "key": "endDate", - "value": "2022-08-01" - } - ] - } - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please select at least one", - "errorIcon": "ICON_xyz" - } - ], - "isNewWidget": true - } - } - ], - "LUMPSUM": [ - { - "widgetId": "investmentAmount", - "widgetName": "LABEL_WITH_FIXED_HINT_INPUT_WIDGET", - "widgetData": { - "title": "Investment amount", - "validation": [ - { - "name": "REGEX", - "regex": "^[+]?([0-9]+([.][0-9]*)?|[.][0-9]+)$", - "errorText": "Enter valid investement" - }, - { - "name": "VALUE_RANGE", - "errorText": "Minimum investment amount ₹ 1000 ", - "minValue": "0", - "maxValue": "1231221" - } - ], - "isNewWidget": true, - "inputTextFixedHintItemData": { - "hint": "Enter amount in multiples of ₹ 1", - "inputType": "number", - "maxCharLength": 30, - "format": "MONEY", - "actionAvailable": false, - "fixedHint": "₹", - "convertToCaps": false - }, - "infoText": "Minimum investment amount ₹ 1000" - }, - "defaultVisibility": "SHOW" - } - ] - } - } - }, - "order_status": { - "content": { - "orderDetails": { - "orderPlaced": { - "title": { - "text": "Placed on", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 10 - } - ] - }, - "subtitle": { - "text": "11th Jul 2022, 06:30pm", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - } - }, - "orderAmount": { - "title": { - "text": "Amount", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 10 - } - ] - }, - "subtitle": { - "text": "₹90,00,00,000", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 16 - } - ] - } - }, - "orderUnits": { - "title": { - "text": "Units", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 10 - } - ] - }, - "subtitle": { - "text": "180", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - } - }, - "orderPrice": { - "title": { - "text": "Average price(NAV)", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 10 - } - ] - }, - "subtitle": { - "text": "₹71.40", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - } - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#EF0000", - "fontSize": 10 - } - ] - }, - "bgColor": "#F9D1D2" - } - }, - "orderStatus": { - "leftTitle": { - "text": "Status", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 10 - } - ] - }, - "rightTitle": { - "text": "Unsuccessful", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#EF0000", - "fontSize": 12 - } - ] - }, - "items": [ - { - "title": { - "text": "Order creation", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "subtitle": { - "text": "11th Jul 2022, 06:30pm", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 12 - } - ] - }, - "icon": "ALERT_YELLOW_ICON" - }, - { - "title": { - "text": "Order creation", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "subtitle": { - "text": "11th Jul 2022, 06:30pm", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 12 - } - ] - }, - "icon": "ALERT_YELLOW_ICON" - }, - { - "title": { - "text": "Order creation", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "subtitle": { - "text": "11th Jul 2022, 06:30pm", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 12 - } - ] - }, - "icon": "ALERT_YELLOW_ICON" - }, - { - "title": { - "text": "Order creation", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "subtitle": { - "text": "11th Jul 2022, 06:30pm", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 12 - } - ] - }, - "icon": "ALERT_YELLOW_ICON" - } - ] - }, - "fundHeader": { - "title": { - "text": "Navi US Total Stock Market\nFund of Fund", - "span": [ - { - "fontSize": 20, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "subtitle": { - "text": "Subtitle text of this fund", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "label": { - "title": { - "text": "International", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 10, - "fontColor": "#444444" - } - ] - }, - "borderColor": "#FFA18C" - } - }, - "note": { - "title": { - "text": "Important Note:", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#FF5732", - "fontSize": 12 - } - ] - }, - "description": { - "text": "NAV allotment date is subject to realization of funds to the\n AMC bank account.", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 10 - } - ] - } - }, - "statusNote": { - "title": { - "text": "Payment failed", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#EF0000", - "fontSize": 14 - } - ] - }, - "subtitle": { - "text": "Please use the registered bank account only for making the payments.", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#4D4D4D", - "fontSize": 12 - } - ] - }, - "leftIcon": "ICON_INFO_DARK", - "rightIcon": "ICON_INFO_DARK", - "bgColor": "#FFEAEA" - } - }, - "footer": { - "nextCta": { - "title": "Retry", - "titleColor": "#F5F5F5", - "bgColor": "#FF5732" - } - } - }, - "transaction_details": { - "header": { - "title": { - "text": "Portfolio", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#FF5732" - } - ] - } - } - }, - "content": { - "fundHeader": { - "title": { - "text": "Navi US Total Stock Market\nFund of Fund", - "span": [ - { - "fontSize": 20, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "subtitle": { - "text": "Subtitle text of this fund", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "label": { - "title": { - "text": "International", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 10, - "fontColor": "#444444" - } - ] - }, - "borderColor": "#FFA18C" - } - }, - "transactions": [ - { - "date": { - "text": "20th Jul 2022", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_BOLD", - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount": { - "title": { - "text": "Amount", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹90,00,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "units": { - "title": { - "text": "Units", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "180", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "profitLoss": { - "title": { - "text": "P&L", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "+ ₹50,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - }, - "nav": { - "title": { - "text": "NAV", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹27.75", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "type": { - "title": { - "text": "Type", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "SIP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - }, - { - "date": { - "text": "20th Jul 2022", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_BOLD", - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount": { - "title": { - "text": "Amount", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹90,00,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "units": { - "title": { - "text": "Units", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "180", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "profitLoss": { - "title": { - "text": "P&L", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "+ ₹50,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - }, - "nav": { - "title": { - "text": "NAV", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹27.75", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "type": { - "title": { - "text": "Type", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "SIP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - }, - { - "date": { - "text": "20th Jul 2022", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_BOLD", - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount": { - "title": { - "text": "Amount", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹90,00,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "units": { - "title": { - "text": "Units", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "180", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "profitLoss": { - "title": { - "text": "P&L", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "+ ₹50,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - }, - "nav": { - "title": { - "text": "NAV", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹27.75", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "type": { - "title": { - "text": "Type", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "SIP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - }, - { - "date": { - "text": "20th Jul 2022", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_BOLD", - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount": { - "title": { - "text": "Amount", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹90,00,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "units": { - "title": { - "text": "Units", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "180", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "profitLoss": { - "title": { - "text": "P&L", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "+ ₹50,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - }, - "nav": { - "title": { - "text": "NAV", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹27.75", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "type": { - "title": { - "text": "Type", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "SIP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - }, - { - "date": { - "text": "20th Jul 2022", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_BOLD", - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount": { - "title": { - "text": "Amount", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹90,00,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "units": { - "title": { - "text": "Units", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "180", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "profitLoss": { - "title": { - "text": "P&L", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "+ ₹50,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - }, - "nav": { - "title": { - "text": "NAV", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹27.75", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "type": { - "title": { - "text": "Type", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "SIP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - }, - { - "date": { - "text": "20th Jul 2022", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_BOLD", - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount": { - "title": { - "text": "Amount", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹90,00,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "units": { - "title": { - "text": "Units", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "180", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "profitLoss": { - "title": { - "text": "P&L", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "+ ₹50,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - }, - "nav": { - "title": { - "text": "NAV", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹27.75", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "type": { - "title": { - "text": "Type", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "SIP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - }, - { - "date": { - "text": "20th Jul 2022", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_BOLD", - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount": { - "title": { - "text": "Amount", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹90,00,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "units": { - "title": { - "text": "Units", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "180", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "profitLoss": { - "title": { - "text": "P&L", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "+ ₹50,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - }, - "nav": { - "title": { - "text": "NAV", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹27.75", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "type": { - "title": { - "text": "Type", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "SIP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - }, - { - "date": { - "text": "20th Jul 2022", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_BOLD", - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount": { - "title": { - "text": "Amount", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹90,00,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "units": { - "title": { - "text": "Units", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "180", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "profitLoss": { - "title": { - "text": "P&L", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "+ ₹50,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - }, - "nav": { - "title": { - "text": "NAV", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹27.75", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "type": { - "title": { - "text": "Type", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "SIP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - }, - { - "date": { - "text": "20th Jul 2022", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_BOLD", - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount": { - "title": { - "text": "Amount", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹90,00,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "units": { - "title": { - "text": "Units", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "180", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "profitLoss": { - "title": { - "text": "P&L", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "+ ₹50,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - }, - "nav": { - "title": { - "text": "NAV", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹27.75", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "type": { - "title": { - "text": "Type", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "SIP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - } - ] - } - }, - "investment_details": { - "header": { - "title": { - "text": "Portfolio", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#FF5732" - } - ] - } - } - }, - "content": { - "folioNumber": { - "title": { - "text": "Folio number", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "1234567890", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "profitLoss": { - "title": { - "text": "P&L", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "+ ₹50,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#22A940" - } - ] - } - }, - "invested": { - "title": { - "text": "Invested", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹90,00,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "currentValue": { - "title": { - "text": "Current value", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹90,50,00,000", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "averageNav": { - "title": { - "text": "Average NAV", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "₹15.75", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "units": { - "title": { - "text": "Units", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "180", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "currentNav": { - "title": { - "text": "Current NAV (as of 14 July 2022)", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "+ ₹14.45", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - "transaction": { - "title": { - "text": "Transaction history", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - }, - "rightIcon": "RIGHT_ARROW_WITH_BACKGROUND", - "leftIcon": "SUB_HOUSE", - "action": { - "url": "xyz" - } - }, - "fundHeader": { - "title": { - "text": "Navi US Total Stock Market\nFund of Fund", - "span": [ - { - "fontSize": 20, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "subtitle": { - "text": "Subtitle text of this fund", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "label": { - "title": { - "text": "International", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 10, - "fontColor": "#444444" - } - ] - }, - "borderColor": "#FFA18C" - } - } - }, - "footer": { - "nextCta": { - "title": "Invest more", - "titleColor": "#FFFFFF", - "bgColor": "#FF5732" - }, - "backCta": { - "title": "Redeem", - "titleColor": "#FF5732", - "bgColor": "#F5F5F5" - } - } - }, - "orders_list": { - "orderSummary": { - "title": { - "item": { - "text": "ORDERS", - "span": [ - { - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 12, - "fontColor": "#011A48" - } - ] - }, - "bgColor": "#F1F2F4" - }, - "totalOrders": { - "title": { - "text": "Total Orders", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "06", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "buyOrders": { - "title": { - "text": "Buy Orders", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "03", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - }, - "sellOrders": { - "title": { - "text": "Sell Orders", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontSize": 12, - "fontColor": "#6B6B6B" - } - ] - }, - "subtitle": { - "text": "03", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 12, - "fontColor": "#191919" - } - ] - } - } - }, - "filters": [ - { - "borderColor": "#FF5732", - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 14, - "fontColor": "#FF5732", - "fontName": "NAVI_SEMI_BOLD" - } - ] - } - }, - { - "borderColor": "#FF5732", - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 14, - "fontColor": "#FF5732", - "fontName": "NAVI_SEMI_BOLD" - } - ] - } - }, - { - "borderColor": "#FF5732", - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 14, - "fontColor": "#FF5732", - "fontName": "NAVI_SEMI_BOLD" - } - ] - } - }, - { - "borderColor": "#FF5732", - "title": { - "text": "Buy", - "span": [ - { - "fontSize": 14, - "fontColor": "#FF5732", - "fontName": "NAVI_SEMI_BOLD" - } - ] - } - } - ], - "orders": [ - { - "title": { - "text": "Navi US Total Stock Market\nFund of Fund", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 10, - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount_key": { - "text": "Amount", - "span": [ - { - "fontName": "NAVI_REGULAR", - "fontColor": "#6B6B6B", - "fontSize": 14 - } - ] - }, - "amount_value": { - "text": "₹ 90,00,00,000", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "status_key": { - "text": "Status", - "span": [ - { - "fontName": "NAVI_REGULAR", - "fontColor": "#6B6B6B", - "fontSize": 14 - } - ] - }, - "status_value": { - "text": "In progress", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#F7B500", - "fontSize": 14 - } - ] - } - }, - { - "title": { - "text": "Navi US Total Stock Market\nFund of Fund", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 10, - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount_key": { - "text": "Amount", - "span": [ - { - "fontName": "NAVI_REGULAR", - "fontColor": "#6B6B6B", - "fontSize": 14 - } - ] - }, - "amount_value": { - "text": "₹ 90,00,00,000", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "status_key": { - "text": "Status", - "span": [ - { - "fontName": "NAVI_REGULAR", - "fontColor": "#6B6B6B", - "fontSize": 14 - } - ] - }, - "status_value": { - "text": "In progress", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#F7B500", - "fontSize": 14 - } - ] - } - }, - { - "title": { - "text": "Navi US Total Stock Market\nFund of Fund", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 10, - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount_key": { - "text": "Amount", - "span": [ - { - "fontName": "NAVI_REGULAR", - "fontColor": "#6B6B6B", - "fontSize": 14 - } - ] - }, - "amount_value": { - "text": "₹ 90,00,00,000", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "status_key": { - "text": "Status", - "span": [ - { - "fontName": "NAVI_REGULAR", - "fontColor": "#6B6B6B", - "fontSize": 14 - } - ] - }, - "status_value": { - "text": "In progress", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#F7B500", - "fontSize": 14 - } - ] - } - }, - { - "title": { - "text": "Navi US Total Stock Market\nFund of Fund", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "label": { - "title": { - "text": "Buy", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontSize": 10, - "fontColor": "#22A940" - } - ] - }, - "bgColor": "#EAF8EF" - }, - "amount_key": { - "text": "Amount", - "span": [ - { - "fontName": "NAVI_REGULAR", - "fontColor": "#6B6B6B", - "fontSize": 14 - } - ] - }, - "amount_value": { - "text": "₹ 90,00,00,000", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - }, - "status_key": { - "text": "Status", - "span": [ - { - "fontName": "NAVI_REGULAR", - "fontColor": "#6B6B6B", - "fontSize": 14 - } - ] - }, - "status_value": { - "text": "In progress", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#F7B500", - "fontSize": 14 - } - ] - } - } - ], - "icon": { - "iconCode": "RIGHT_ARROW_WITH_BACKGROUND", - "selectOptionsBottomSheetData": { - "title": { - "text": "Filter by", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": "18" - } - ] - }, - "subtitle": { - "text": "clear all", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#FF5732", - "fontSize": "14", - "underline": true - } - ] - }, - "data": [ - { - "title": { - "text": "Filter by", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": "18" - } - ] - }, - "type": "CHECK_BOX", - "options": [ - { - "isChecked": false, - "title": { - "text": "Debt", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": "16" - } - ] - }, - "key": "Debt" - }, - { - "isChecked": false, - "title": { - "text": "Debt", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": "16" - } - ] - }, - "key": "Buy" - }, - { - "isChecked": false, - "title": { - "text": "Debt", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": "16" - } - ] - } - } - ] - }, - { - "title": { - "text": "Filter by", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": "18" - } - ] - }, - "type": "RADIO", - "options": [ - { - "isChecked": false, - "title": { - "text": "Debt", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": "16" - } - ] - } - }, - { - "isChecked": false, - "title": { - "text": "Debt", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": "16" - } - ] - } - } - ] - }, - { - "title": { - "text": "Filter by", - "span": [ - { - "fontName": "NAVI_BOLD", - "fontColor": "#191919", - "fontSize": "18" - } - ] - }, - "type": "CHECK_BOX", - "options": [ - { - "isChecked": false, - "title": { - "text": "Debt", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": "16" - } - ] - } - }, - { - "isChecked": false, - "title": { - "text": "Debt", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": "16" - } - ] - } - }, - { - "isChecked": false, - "title": { - "text": "Debt", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": "16" - } - ] - } - } - ] - } - ], - "action": { - "primaryAction": { - "title": "Invest more", - "titleColor": "#FFFFFF", - "bgColor": "#FF5732" - }, - "secondaryAction": { - "title": "dismiss", - "titleColor": "#FF5732", - "bgColor": "#F5F5F5" - } - } - } - } - }, - "fund_sell": { - "footer": { - "title": "Sell", - "titleColor": "#F5F5F5", - "bgColor": "#FF5732" - }, - "content": { - "test": { - "bgColor": "#FFF8EC", - "title": { - "text": "Looking for specific funds?", - "span": [ - { - "fontSize": 16, - "fontName": "NAVI_BOLD", - "fontColor": "#444444" - } - ] - }, - "items": [ - { - "iconCode": "aa", - "title": { - "text": "Index", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - { - "iconCode": "aa", - "title": { - "text": "US", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - { - "iconCode": "aa", - "title": { - "text": "Debt", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - { - "iconCode": "aa", - "title": { - "text": "tax saver", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - { - "iconCode": "aa", - "title": { - "text": "Hybrid", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - { - "iconCode": "aa", - "title": { - "text": "Equity", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - ] - }, - "fundHeader": { - "title": { - "text": "Nifty 50 Index Fund", - "span": [ - { - "fontSize": 20, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "icon": { - "iconCode": "CHEVRON", - "url": "String" - } - }, - "redemptionType": { - "defaultChecked": "AMOUNT", - "AMOUNT": { - "amountInput": { - "widgetId": "investmentAmount", - "widgetName": "LABEL_WITH_FIXED_HINT_INPUT_WIDGET", - "widgetData": { - "title": "Amount to withdraw", - "validation": [ - { - "name": "REGEX", - "regex": "^[+]?([0-9]+([.][0-9]*)?|[.][0-9]+)$", - "errorText": "Enter valid monthly income" - }, - { - "name": "VALUE_RANGE", - "errorText": "Minimum investment amount ₹ 1000 ", - "minValue": 5000, - "maxValue": 1200000 - } - ], - "isNewWidget": true, - "inputTextFixedHintItemData": { - "hint": "Enter amount ", - "inputType": "numberDecimal", - "maxCharLength": 30, - "format": "MONEY_DECIMAL", - "actionAvailable": false, - "fixedHint": "₹", - "convertToCaps": false - }, - "infoText": "Approx units :" - } - }, - "bottomSheetData": { - "title": "Do you want to sell?", - "subtitle": "String", - "actions": [ - { - "title": "String" - } - ] - }, - "metaData": { - "amount": 23000.56, - "units": 10.00 - }, - "sell": { - "title": { - "text": "Withdraw total value", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 12 - } - ] - }, - "isChecked": false - } - }, - "UNITS": { - "unitInput": { - "widgetId": "units", - "widgetName": "LABEL_WITH_FIXED_HINT_INPUT_WIDGET", - "widgetData": { - "title": "Units to sell", - "validation": [ - { - "name": "REGEX", - "regex": "^[1-9]\\d*(\\.\\d+)?$\n", - "errorText": "Enter valid investment" - }, - { - "name": "VALUE_RANGE", - "errorText": "Minimum investment amount ₹ 1000 ", - "minValue": "0", - "maxValue": "1231221" - } - ], - "isNewWidget": true, - "inputTextFixedHintItemData": { - "hint": "Enter units", - "inputType": "numberDecimal", - "maxCharLength": 30, - "actionAvailable": false, - "fixedHint": "₹", - "format": "DEc", - "convertToCaps": false - }, - "infoText": "Approx value:" - } - }, - "bottomSheetData": { - "title": "Do you want to sell?", - "subtitle": "String", - "actions": [ - { - "title": "String" - } - ] - }, - "sell": { - "title": { - "text": "Sell all units", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 12 - } - ] - }, - "isChecked": false - }, - "metaData": { - "amount": 23000.00, - "units": 10.00 - } - } - }, - "terms": { - "text": "Order will be processed as per the specific cut-off time for each fund category.", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 12 - } - ] - }, - "units": { - "title": { - "text": "Total units", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 12 - } - ] - }, - "subTitle": { - "text": "735.89", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - } - }, - "value": { - "title": { - "text": "Total value", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 12 - } - ] - }, - "subTitle": { - "text": "₹8,000", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - } - }, - "time": { - "title": { - "text": "Settlement time", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": 12 - } - ] - }, - "subTitle": { - "text": "3 working days", - "span": [ - { - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919", - "fontSize": 14 - } - ] - } - } - }, - "header": null - }, - "fund_list": { - "content": { - "fundHeader": { - "title": { - "text": "Explore all our\nNavi mutual funds", - "span": [ - { - "fontSize": 18, - "fontName": "NAVI_BOLD", - "fontColor": "#444444" - } - ] - }, - "subTitle": { - "text": "We are top rated funds in industry\nInvest now to grow your money", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#CA6100" - } - ] - }, - "gradient": { - "startGradientColor": "#FFE6D8", - "endGradientColor": "#FFF8EC", - "orientation": "TOP_BOTTOM" - } - }, - "fundsList": [ - { - "title": { - "text": "Nifty 50 Index Fund", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "Min. Invest", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹500", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Fund size", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹700 Crores", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Returns (6M)", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "+5.27%", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - } - ], - "type": "FUND_CARD", - "iconCode": "CHEVRON" - }, - { - "title": { - "text": "Nifty 50 Index Fund", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "Min. Invest", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹500", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Fund size", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹700 Crores", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Returns (6M)", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "+5.27%", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - } - ], - "type": "FUND_CARD", - "iconCode": "CHEVRON" - }, - { - "title": { - "text": "Nifty 50 Index Fund", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "Min. Invest", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹500", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Fund size", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹700 Crores", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Returns (6M)", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "+5.27%", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - } - ], - "type": "FUND_CARD", - "iconCode": "CHEVRON" - }, - { - "title": { - "text": "Nifty 50 Index Fund", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "Min. Invest", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹500", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Fund size", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹700 Crores", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Returns (6M)", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "+5.27%", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - } - ], - "type": "FUND_CARD", - "iconCode": "CHEVRON" - }, - { - "bgColor": "#FFF8EC", - "title": { - "text": "Looking for specific funds?", - "span": [ - { - "fontSize": 16, - "fontName": "NAVI_BOLD", - "fontColor": "#444444" - } - ] - }, - "items": [ - { - "iconCode": "aa", - "title": { - "text": "Index", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - { - "iconCode": "aa", - "title": { - "text": "US", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - { - "iconCode": "aa", - "title": { - "text": "Debt", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - { - "iconCode": "aa", - "title": { - "text": "tax saver", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - { - "iconCode": "aa", - "title": { - "text": "Hybrid", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - }, - { - "iconCode": "aa", - "title": { - "text": "Equity", - "span": [ - { - "fontSize": 12, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#191919" - } - ] - } - } - ], - "type": "FUND_TYPE" - }, - { - "title": { - "text": "Nifty 50 Index Fund", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "Min. Invest", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹500", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Fund size", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹700 Crores", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Returns (6M)", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "+5.27%", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - } - ], - "type": "FUND_CARD", - "iconCode": "CHEVRON" - }, - { - "title": { - "text": "Nifty 50 Index Fund", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "Min. Invest", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹500", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Fund size", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹700 Crores", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Returns (6M)", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "+5.27%", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - } - ], - "type": "FUND_CARD", - "iconCode": "CHEVRON" - }, - { - "title": { - "text": "Nifty 50 Index Fund", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "Min. Invest", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹500", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Fund size", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹700 Crores", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Returns (6M)", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "+5.27%", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - } - ], - "type": "FUND_CARD", - "iconCode": "CHEVRON" - }, - { - "title": { - "text": "Nifty 50 Index Fund", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_BOLD", - "fontColor": "#191919" - } - ] - }, - "items": [ - { - "title": { - "text": "Min. Invest", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹500", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Fund size", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "₹700 Crores", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#444444" - } - ] - } - }, - { - "title": { - "text": "Returns (6M)", - "span": [ - { - "fontSize": 10, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B" - } - ] - }, - "subTitle": { - "text": "+5.27%", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#22A940" - } - ] - } - } - ], - "type": "FUND_CARD", - "iconCode": "CHEVRON" - } - ] - }, - "header": { - "title": { - "text": "Portfolio", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_REGULAR", - "fontColor": "#191919" - } - ] - }, - "help": { - "title": { - "text": "HELP", - "span": [ - { - "fontSize": 14, - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#FF5732" - } - ] - } - } - } - } -} \ No newline at end of file diff --git a/android/navi-amc/src/prod/google-services.json b/android/navi-amc/src/prod/google-services.json deleted file mode 100644 index fdacfd5f67..0000000000 --- a/android/navi-amc/src/prod/google-services.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "project_info": { - "project_number": "461076797864", - "project_id": "navi-mutual-funds", - "storage_bucket": "navi-mutual-funds.appspot.com" - }, - "client": [ - { - "client_info": { - "mobilesdk_app_id": "1:461076797864:android:1a9a3e5ebc66c0e1db259d", - "android_client_info": { - "package_name": "com.navi.amc" - } - }, - "oauth_client": [ - { - "client_id": "461076797864-rncnmeaauu5td6qij5m5c2moqtoqnavl.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyDZlPQkfevC05PwpaN1Rw0tfm1PRvHx-No" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [ - { - "client_id": "461076797864-rncnmeaauu5td6qij5m5c2moqtoqnavl.apps.googleusercontent.com", - "client_type": 3 - } - ] - } - } - } - ], - "configuration_version": "1" -} \ No newline at end of file diff --git a/android/navi-amc/src/qa/google-services.json b/android/navi-amc/src/qa/google-services.json deleted file mode 100644 index 70d746d803..0000000000 --- a/android/navi-amc/src/qa/google-services.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "project_info": { - "project_number": "300703280413", - "project_id": "navi-amc-dev", - "storage_bucket": "navi-amc-dev.appspot.com" - }, - "client": [ - { - "client_info": { - "mobilesdk_app_id": "1:300703280413:android:17deaf30833edca42b45f4", - "android_client_info": { - "package_name": "com.navi.amc.dev" - } - }, - "oauth_client": [ - { - "client_id": "300703280413-71sairfmacs5hphfstkr4uehj4v4vvjn.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyDKPVPj-cR5wq8Uc0ZMylnwAFFYppEJqyo" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [ - { - "client_id": "300703280413-71sairfmacs5hphfstkr4uehj4v4vvjn.apps.googleusercontent.com", - "client_type": 3 - } - ] - } - } - } - ], - "configuration_version": "1" -} \ No newline at end of file diff --git a/android/navi-amc/src/uitest/google-services.json b/android/navi-amc/src/uitest/google-services.json deleted file mode 100644 index 70d746d803..0000000000 --- a/android/navi-amc/src/uitest/google-services.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "project_info": { - "project_number": "300703280413", - "project_id": "navi-amc-dev", - "storage_bucket": "navi-amc-dev.appspot.com" - }, - "client": [ - { - "client_info": { - "mobilesdk_app_id": "1:300703280413:android:17deaf30833edca42b45f4", - "android_client_info": { - "package_name": "com.navi.amc.dev" - } - }, - "oauth_client": [ - { - "client_id": "300703280413-71sairfmacs5hphfstkr4uehj4v4vvjn.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyDKPVPj-cR5wq8Uc0ZMylnwAFFYppEJqyo" - } - ], - "services": { - "appinvite_service": { - "other_platform_oauth_client": [ - { - "client_id": "300703280413-71sairfmacs5hphfstkr4uehj4v4vvjn.apps.googleusercontent.com", - "client_type": 3 - } - ] - } - } - } - ], - "configuration_version": "1" -} \ No newline at end of file diff --git a/android/navi-analytics/build.gradle b/android/navi-analytics/build.gradle index 952e50694c..0551e3fe95 100644 --- a/android/navi-analytics/build.gradle +++ b/android/navi-analytics/build.gradle @@ -40,16 +40,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-base/build.gradle b/android/navi-base/build.gradle index a16dd0603e..3bb5c71b5e 100644 --- a/android/navi-base/build.gradle +++ b/android/navi-base/build.gradle @@ -53,16 +53,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-base/src/main/java/com/navi/base/sharedpref/CommonPrefConstants.kt b/android/navi-base/src/main/java/com/navi/base/sharedpref/CommonPrefConstants.kt index 7bf81853a9..d67196cf13 100644 --- a/android/navi-base/src/main/java/com/navi/base/sharedpref/CommonPrefConstants.kt +++ b/android/navi-base/src/main/java/com/navi/base/sharedpref/CommonPrefConstants.kt @@ -14,7 +14,6 @@ object CommonPrefConstants { const val REFRESH_TOKEN = "REFRESH_TOKEN" const val PHONE_NUMBER = "PHONE_NUMBER" const val EMAIL = "EMAIL" - const val GI_LOCATION_DATA = "GI_LOCATION_DATA" const val FIREBASE_APP_INSTANCE = "FIREBASE_APP_INSTANCE" const val USER_LOCATION_DATA = "USER_LOCATION_DATA" const val IS_FIREBASE_TOKEN_REFRESHED = "IS_FIREBASE_TOKEN_REFRESHED" diff --git a/android/navi-base/src/main/java/com/navi/base/utils/BaseUtils.kt b/android/navi-base/src/main/java/com/navi/base/utils/BaseUtils.kt index b99cd2c50a..ea8c7e9a2c 100644 --- a/android/navi-base/src/main/java/com/navi/base/utils/BaseUtils.kt +++ b/android/navi-base/src/main/java/com/navi/base/utils/BaseUtils.kt @@ -21,7 +21,6 @@ import android.os.Build import android.provider.Settings import androidx.core.app.NotificationManagerCompat import com.navi.base.sharedpref.CommonPrefConstants -import com.navi.base.sharedpref.CommonPrefConstants.ALFRED_DIALOG_SCREENSHOT import com.navi.base.sharedpref.CommonPrefConstants.ROUTING_KEY import com.navi.base.sharedpref.CommonPrefConstants.UPDATED_BASE_URL import com.navi.base.sharedpref.CommonPrefConstants.UPDATED_VERSION_CODE @@ -397,9 +396,6 @@ object BaseUtils { fun getUpdatedBaseUrl(): String? = PreferenceManager.getStringPreferenceApp(key = UPDATED_BASE_URL) - fun getAlfredDialogDisabledStatus(): String? = - PreferenceManager.getStringPreferenceApp(key = ALFRED_DIALOG_SCREENSHOT) - fun saveBaseUrlsAndRestart(updatedBaseUrl: String?, context: Context?) { val updateBaseUrl = checkDiffAndSaveDataInSharedPreference( @@ -483,17 +479,6 @@ object BaseUtils { return result + lastDigit } - fun saveUpdatedBaseUrlAndRestart(updatedBaseUrl: String?, context: Context?) { - val updateBaseUrl = - checkDiffAndSaveDataInSharedPreference( - sharedPrefKey = UPDATED_BASE_URL, - updatedValue = updatedBaseUrl - ) - if (updateBaseUrl) { - triggerAppRestart(context = context) - } - } - fun saveUpdatedVersionCodeAndRestart(updatedVersionCode: String?, context: Context?) { val updatedVersionCode = checkDiffAndSaveDataInSharedPreference( diff --git a/android/navi-base/src/main/java/com/navi/base/utils/Constants.kt b/android/navi-base/src/main/java/com/navi/base/utils/Constants.kt index fc86e93b6c..e48b6ad1c4 100644 --- a/android/navi-base/src/main/java/com/navi/base/utils/Constants.kt +++ b/android/navi-base/src/main/java/com/navi/base/utils/Constants.kt @@ -16,7 +16,6 @@ const val COMMA = "," const val COLON = ":" const val PROD = "prod" const val QA = "qa" -const val DEV = "dev" const val ZERO_STRING = "0" const val USER_DEVICE_DATA_LOCATION_API = "/user-device-data/location" const val USER_DEVICE_DATA_APP_API = "/user-device-data/apps" @@ -26,8 +25,6 @@ const val HEADER_SIGNATURE = "X-Signature" const val X_SOURCE_SIGNATURE = "X-Source-Signature" const val HEADER_EPOCH = "X-Epoch" const val PAN_VERIFY = "PAN_VERIFY" -const val UPI_VALIDATION = "UPI_VALIDATION" -const val THOUSAND = 1000L const val INT_ZERO = 0 const val PAN_VERIFY_POLLING = "PAN_VERIFY_POLLING" const val SKIP_LOADER = "skipLoader" @@ -35,8 +32,6 @@ const val PAN_VERIFY_POLLING_FAIL = "PAN_VERIFY_POLLING_FAIL" const val APPLICATION_JSON = "application/json" const val EXCLUDE_FROM_HASH_ENCRYPTION = "excludeFromHashEncryption" const val FLOAT_ZERO = 0.0f -const val QA_RELEASE_LOGS_FILE_NAME = "NAVI_QA_RELEASE_LOGS.txt" -const val QA_RELEASE_LOGS_FOLDER_NAME = "NAVI_QA_RELEASE_LOGS_FOLDER" const val CAMERA_FILE_DATE_FORMAT = "yyyyMMdd_HHmmss" const val AMPERSAND = "&" diff --git a/android/navi-bbps/build.gradle b/android/navi-bbps/build.gradle index 51ef4f017f..f2246c6bc8 100644 --- a/android/navi-bbps/build.gradle +++ b/android/navi-bbps/build.gradle @@ -51,16 +51,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-chat/build.gradle b/android/navi-chat/build.gradle index 0085dc9e79..4bda0ba68e 100644 --- a/android/navi-chat/build.gradle +++ b/android/navi-chat/build.gradle @@ -48,16 +48,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-coin/build.gradle b/android/navi-coin/build.gradle index 335749b328..4344afb476 100644 --- a/android/navi-coin/build.gradle +++ b/android/navi-coin/build.gradle @@ -50,16 +50,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-common/build.gradle b/android/navi-common/build.gradle index e3a7ac10f2..d2591a57ad 100644 --- a/android/navi-common/build.gradle +++ b/android/navi-common/build.gradle @@ -53,16 +53,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-cycs/build.gradle b/android/navi-cycs/build.gradle index f20a915e4e..45cf9c34fe 100644 --- a/android/navi-cycs/build.gradle +++ b/android/navi-cycs/build.gradle @@ -47,16 +47,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-design/build.gradle b/android/navi-design/build.gradle index 50406a2d9d..090364a632 100644 --- a/android/navi-design/build.gradle +++ b/android/navi-design/build.gradle @@ -46,16 +46,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-gold/build.gradle b/android/navi-gold/build.gradle index 1943c360ec..07f32bb6d4 100644 --- a/android/navi-gold/build.gradle +++ b/android/navi-gold/build.gradle @@ -55,16 +55,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-hl/build.gradle b/android/navi-hl/build.gradle index 0569e24073..d20ee152f9 100644 --- a/android/navi-hl/build.gradle +++ b/android/navi-hl/build.gradle @@ -54,16 +54,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-hl/src/dev/res/raw/mock_api_hl.json b/android/navi-hl/src/dev/res/raw/mock_api_hl.json deleted file mode 100644 index 414f08d19f..0000000000 --- a/android/navi-hl/src/dev/res/raw/mock_api_hl.json +++ /dev/null @@ -1,13174 +0,0 @@ -{ - "widgetizedInfoScreenResponseForCloseLoans": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - } - }, - "content": { - "screenTitle": { - "text": "Upgrade offer for your property", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "widgets": [ - { - "widgetId": "NikhilKumar1", - "widgetName": "TITLE_STATUS_WITH_FOOTER_CARD", - "widgetData": { - "title": { - "text": "Close your loans", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "This can increase your loan offer", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - }, - "footerContent": { - "startText": { - "text": "Max increase in loan offer :", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹0.5 Cr", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "bgColor": "#E6FFD8" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_RED_RIGHT_ARROW", - "iconHeight": "24", - "iconWidth": "24" - } - } - }, - { - "widgetId": "NikhilKumar2", - "widgetName": "TITLE_STATUS_WITH_FOOTER_CARD", - "widgetLayoutParams": { - "margin": "0,20,0,0" - }, - "widgetData": { - "title": { - "text": "Add co-applicant", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "This might improve your loan offer", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_RED_RIGHT_ARROW", - "iconHeight": "24", - "iconWidth": "24" - } - } - } - ] - } - }, - "closeLoansScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanSteps/HL_WIDGETIZED_INFO", - "parameters": [ - { - "key": "action", - "value": "GENERATE_SL" - }, - { - "key": "loanApplicationId", - "value": "0fa72b7b-408b-4451-8060-1aadbb6000a8" - }, - { - "key": "loanActionType", - "value": "HL_NEW" - }, - { - "key": "customerReferenceId", - "value": "f65479a5-858e-48fa-9b76-da71461c19c2" - } - ], - "analyticsEventProperties": { - "name": "New_HL_Top_Back_Button_Clicked", - "properties": { - "screenName": "Declare_Closed_Loan_Service" - } - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - "title": { - "text": "Need Help?", - "textColor": "#1A1A1A", - "size": 18, - "font": "NAVI_BOLD" - }, - "helpItems": [ - { - "startIcon": { - "iconCode": "ICON_HL_HELP_FAQ", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "FAQs", - "textColor": "#000000", - "size": 14, - "font": "NAVI_SEMI_BOLD" - }, - "ctaData": { - "url": "menu/faq", - "parameters": [ - { - "key": "product", - "value": "LE" - }, - { - "key": "subProduct", - "value": "HL" - } - ] - } - }, - { - "startIcon": { - "iconCode": "ICON_HL_HELP_CHAT", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Chat with us", - "textColor": "#000000", - "size": 14, - "font": "NAVI_SEMI_BOLD" - }, - "ctaData": { - "url": "chatInHouse", - "parameters": [ - { - "key": "CHAT_BOT_SCREEN_NAME", - "value": "HL_BANK_SELECTION_SCREEN" - }, - { - "key": "CHAT_BOT_SOURCE_ID", - "value": "DEFAULT_HL" - } - ], - "analyticsEventProperties": { - "name": "New_HL_Help_Option_Click", - "properties": { - "screenName": "Declare_Closed_Loans", - "option": "Chat" - } - } - } - }, - { - "startIcon": { - "iconCode": "ICON_HL_HELP_EMAIL", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Send E-mail", - "textColor": "#000000", - "size": 14, - "font": "NAVI_SEMI_BOLD" - }, - "ctaData": { - "url": "emailV2", - "parameters": [ - { - "key": "product", - "value": "home" - } - ], - "analyticsEventProperties": { - "name": "New_HL_Help_Option_Click", - "properties": { - "screenName": "Declare_Closed_Loans", - "option": "Email" - } - } - } - } - ] - } - } - }, - "content": { - "screenTitle": { - "text": "Improve your loan offer", - "textColor": "#191919", - "size": 18, - "font": "NAVI_BOLD" - }, - "graphData": { - "lockedOfferLabel": { - "text": "Select more loans to get an offer", - "textColor": "#6B6B6B", - "size": 12, - "font": "NAVI_SEMI_BOLD" - }, - "currentOfferLabel": { - "text": "Current offer", - "textColor": "#1A1A1A", - "size": 12, - "font": "NAVI_SEMI_BOLD" - }, - "maxOfferLabel": { - "text": "Loan offer you can avail", - "textColor": "#1A1A1A", - "size": 12, - "font": "NAVI_SEMI_BOLD" - }, - "currentOfferText": "₹AMOUNT_IN_TEXT", - "maxOfferText": "Upto ₹AMOUNT_IN_TEXT", - "maxOfferAvailedText": "Max loan offer availed", - "currentOffer": 4280000, - "maxOffer": 4490000, - "minEmiThresholdForApproval": -27775, - "endIcon": { - "iconCode": "ICON_HL_GREY_LOCK", - "iconHeight": "18", - "iconWidth": "18" - } - }, - "loanInfoHeader":{ - "headerTitle": "Open loans", - "headerSubtitle": "Select your closed loans or loans closing within next 12 months", - "headerIcon": { - "iconCode": "GREY_DARK_INFO_ICON", - "iconHeight": "12", - "iconWidth": "12" - } - }, - "applicants": [ - { - "applicantReferenceId": "1", - "applicantName": "Anubhav Bora", - "applicantType": "APPLICANT", - "bodyBGColor": "#FAFAFA", - "openLoans": [ - { - "loanId": "1", - "obligationId": "5:1:2018-07-13:1200000", - "incrementAmount": 50000, - "emiAmount": 1719, - "loanType": "Personal Loan", - "bodyBGColor": "#ffffff", - "isSelected": false, - "impactOfClosingLoan": { - "title": "Impact of closing this loan", - "incrementText": "₹0.5 Lakhs", - "bgColor": "#F4F4FF" - }, - "documentUploadData": { - "documentUploadOption": { - "text": "Document Uploaded", - "size": 14, - "font": "NAVI_BOLD", - "textColor": "#22A940", - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_FILLED_CHECK_ICON" - } - }, - "isSelected": false - }, - "editData": { - "text": "Edit", - "size": 14, - "font": "NAVI_BOLD", - "textColor": "#FF3333", - "cta": { - "url": "hl/homeLoanSteps/HL_DOCUMENT_UPLOAD_SCREEN", - "parameters": [ - { - "key": "documentType", - "value": "HL_LOAN_CLOSURE_DOCUMENT" - }, - { - "key": "contextKey", - "value": "5:1:2018-07-13:1200000" - }, - { - "key": "loanApplicationId", - "value": "0fa72b7b-408b-4451-8060-1aadbb6000a8" - } - ] - }, - "isSelected": false - } - }, - "keyValueFields": [ - { - "key": "Loan amount", - "value": "₹1.2 Lakhs" - }, - { - "key": "Loan start date", - "value": "13th Jul, 2018" - } - ] - }, - { - "loanId": "2", - "obligationId": "5:1:2018-07-13:1200001", - "incrementAmount": 120000, - "emiAmount": 1919, - "loanType": "Gold Loan", - "bodyBGColor": "#ffffff", - "isSelected": false, - "impactOfClosingLoan": { - "title": "Impact of closing this loan", - "incrementText": "₹1.2 Lakhs", - "bgColor": "#F3F3FF" - }, - "documentUploadData": { - "documentUploadOption": { - "text": "Document Uploaded", - "size": 14, - "font": "NAVI_BOLD", - "textColor": "#22A940", - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_FILLED_CHECK_ICON" - } - }, - "isSelected": false - }, - "editText": { - "text": "Edit", - "size": 14, - "font": "NAVI_BOLD", - "textColor": "#FF3333", - "cta": { - "url": "hl/homeLoanSteps/HL_DOCUMENT_UPLOAD_SCREEN", - "parameters": [ - { - "key": "documentType", - "value": "HL_LOAN_CLOSURE_DOCUMENT" - }, - { - "key": "contextKey", - "value": "5:1:2018-07-13:1200000" - }, - { - "key": "loanApplicationId", - "value": "0fa72b7b-408b-4451-8060-1aadbb6000a8" - } - ] - }, - "isSelected": false - } - }, - "keyValueFields": [ - { - "key": "Loan amount", - "value": "₹12 Lakhs" - }, - { - "key": "Loan start date", - "value": "13th Jul, 2018" - } - ] - } - ] - }, - { - "applicantReferenceId": "2", - "applicantName": "Saurabh Chaudhary", - "applicantType": "CO_APPLICANT", - "bodyBGColor": "#FAFAFA", - "openLoans": [ - { - "loanId": "1", - "obligationId": "5:1:2018-07-13:1200000", - "incrementAmount": 0, - "emiAmount": 1719, - "loanType": "Personal Loan", - "bodyBGColor": "#ffffff", - "isSelected": false, - "impactOfClosingLoan": { - "title": "Impact of closing this loan", - "incrementText": "₹12 Lakhs", - "bgColor": "#F3F3FF" - }, - "documentUploadData": { - "documentUploadOption": { - "text": "Document Uploaded", - "size": 14, - "font": "NAVI_BOLD", - "textColor": "#22A940", - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_FILLED_CHECK_ICON" - } - }, - "isSelected": false - }, - "editText": { - "text": "Edit", - "size": 14, - "font": "NAVI_BOLD", - "textColor": "#FF3333", - "cta": { - "url": "hl/homeLoanSteps/HL_DOCUMENT_UPLOAD_SCREEN", - "parameters": [ - { - "key": "documentType", - "value": "HL_LOAN_CLOSURE_DOCUMENT" - }, - { - "key": "contextKey", - "value": "5:1:2018-07-13:1200000" - }, - { - "key": "loanApplicationId", - "value": "0fa72b7b-408b-4451-8060-1aadbb6000a8" - } - ] - }, - "isSelected": false - } - }, - "keyValueFields": [ - { - "key": "Loan amount", - "value": "₹12 Lakhs" - }, - { - "key": "Loan start date", - "value": "13th Jul, 2018" - } - ] - }, - { - "loanId": "2", - "obligationId": "5:1:2018-07-13:1200001", - "incrementAmount": 0, - "emiAmount": 1919, - "loanType": "Gold Loan", - "bodyBGColor": "#ffffff", - "isSelected": false, - "impactOfClosingLoan": { - "title": "Impact of closing this loan", - "incrementText": "₹12 Lakhs", - "bgColor": "#F3F3FF" - }, - "documentUploadData": { - "documentUploadOption": { - "text": "Document Uploaded", - "size": 14, - "font": "NAVI_BOLD", - "textColor": "#22A940", - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_FILLED_CHECK_ICON" - } - }, - "isSelected": false - }, - "editText": { - "text": "Edit", - "size": 14, - "font": "NAVI_BOLD", - "textColor": "#FF3333", - "cta": { - "url": "hl/homeLoanSteps/HL_DOCUMENT_UPLOAD_SCREEN", - "parameters": [ - { - "key": "documentType", - "value": "HL_LOAN_CLOSURE_DOCUMENT" - }, - { - "key": "contextKey", - "value": "5:1:2018-07-13:1200000" - }, - { - "key": "loanApplicationId", - "value": "0fa72b7b-408b-4451-8060-1aadbb6000a8" - } - ] - }, - "isSelected": false - } - }, - "keyValueFields": [ - { - "key": "Loan amount", - "value": "₹12 Lakhs" - }, - { - "key": "Loan start date", - "value": "13th Jul, 2018" - } - ] - } - ] - } - ], - "openLoansInfoBottomSheet": { - "iconCode": "ICON_BLUE_BORDER_ALERT", - "title": { - "text": "Open Loans", - "size": 18, - "font": "NAVI_BOLD" - }, - "subTitle": { - "text": "Based on the data provided by you, we have auto-fetched your loan history. You can improve your offer by closing some of your loans.", - "size": 14, - "font": "NAVI_SEMI_BOLD" - }, - "footer": { - "cta": { - "title": "Okay" - } - } - }, - "addDocumentBottomSheet": { - "iconCode": "ICON_BLUE_BORDER_ALERT", - "title": { - "text": "Add Document", - "size": 18, - "font": "NAVI_BOLD" - }, - "subTitle": { - "text": "We need the documents as a proof of your loan closure. You can also submit them later.", - "size": 14, - "font": "NAVI_SEMI_BOLD" - }, - "footer": { - "cta": { - "title": "Okay", - "url": "hl/homeLoanLoader", - "parameters": [ - { - "key": "action", - "value": "GENERATE_SL" - }, - { - "key": "loanApplicationId", - "value": "0fa72b7b-408b-4451-8060-1aadbb6000a8" - }, - { - "key": "referenceId", - "value": "f65479a5-858e-48fa-9b76-da71461c19c2" - } - ] - } - } - }, - "maxLoanAvailedBottomSheet": { - "iconCode": "ICON_BLUE_BORDER_ALERT", - "title": { - "text": "Max loan offer availed", - "size": 18, - "font": "NAVI_BOLD" - }, - "subTitle": { - "text": "You have already received our maximum offer. Please deselect other loans to select this one", - "size": 14, - "font": "NAVI_SEMI_BOLD" - }, - "footer": { - "cta": { - "title": "Okay" - } - } - }, - "insufficientLoansBottomSheet": { - "iconCode": "ICON_RED_BORDER_ALERT", - "title": { - "text": "Insufficient loans selected", - "size": 18, - "font": "NAVI_BOLD" - }, - "subTitle": { - "text": "Please select more loans to get an approved loan offer.", - "size": 14, - "font": "NAVI_SEMI_BOLD" - }, - "footer": { - "cta": { - "title": "Okay" - } - } - } - }, - "footer": { - "cta": { - "title": "Continue", - "url": "hl/homeLoanLoader", - "parameters": [ - { - "key": "action", - "value": "GENERATE_SL" - }, - { - "key": "loanApplicationId", - "value": "0fa72b7b-408b-4451-8060-1aadbb6000a8" - }, - { - "key": "referenceId", - "value": "f65479a5-858e-48fa-9b76-da71461c19c2" - } - ], - "analyticsEventProperties": { - "name": "New_HL_Back_button_clicked", - "properties": { - "screenName": "Declare_Closed_Loan_Service" - } - } - }, - "progress": 50, - "footerCheckBox": { - "title": { - "text": "I confirm that I will close the selected loan(s) with my own funds", - "textColor": "#4D4D4D", - "size": 12, - "font": "NAVI_SEMI_BOLD" - }, - "isChecked": false - } - } - }, - "bankDetailPennyTestResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "home", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": {} - }, - "trackerHeader": { - "title": "Bank Details", - "subtitle": "Fill details of bank where you receive your income", - "showSideTracker": false - } - }, - "content": { - "widgets": [ - { - "widgetId": "bankName", - "widgetName": "LABEL_WITH_INPUT_SEARCH_WIDGET", - "widgetData": { - "title": "Bank name", - "isNewWidget": true, - "additionCardInfoDetail": { - "bgColor": "#F5F5F5", - "infoText": { - "text": "Please make sure that you have an active net banking or debit card with your bank account", - "textColor": "#444444", - "font": "NAVI_REGULAR", - "size": 12 - }, - "leftIcon": { - "iconCode": "OUTLINED_INFO_ICON_BLACK", - "iconHeight": "16", - "iconWidth": "16" - } - }, - "inputTextItemData": { - "hint": "Search your bank..", - "inputType": "text", - "maxCharLength": 50, - "actionAvailable": false, - "noResultText": "Bank not found", - "convertToCaps": false, - "searchApiDetails": { - "url": "/provider-supported-banks", - "minCharactersRequiredToSearch": 0, - "queryParams": { - "loanType": "HOME_LOAN", - "serviceProvider": "PERFIOS" - } - }, - "noResultNote": "Bank not found" - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter bank name" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "ifscCode", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "IFSC code", - "endSubtitle": "Find IFSC", - "inputTextItemData": { - "hint": "Enter IFSC code", - "inputType": "text", - "maxCharLength": 15, - "actionAvailable": false, - "noResultText": "IFSC not found", - "convertToCaps": true - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter IFSC code" - } - ] - } - }, - { - "widgetId": "accountNumber", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "Account number", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Enter account number", - "inputType": "number", - "maxCharLength": 20, - "actionAvailable": false, - "convertToCaps": true, - "maskForAlfred": true - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter account number" - } - ] - }, - "defaultVisibility": "SHOW" - } - ] - }, - "footer": { - "progress": 50, - "footerCheckBox": { - "title": { - "text": "This account owner is Sukriti Dhariwal", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#4D4D4D", - "substringStyles": [ - { - "substring": "Sukriti Dhariwal", - "font": "BOLD" - } - ] - }, - "isChecked": false - }, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_WIDGETIZED_INFO", - "parameters": [ - { - "key": "action", - "value": "FINANCIAL_DATA_STATUS" - }, - { - "key": "loanApplicationId", - "value": "02808d26-5396-462d-8aa8-67861f90bb4d" - }, - { - "key": "referenceId", - "value": "e30c49fa-a7c2-4ef2-98bb-6638c970ad17" - } - ], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "backCta": { - "title": "Back", - "url": "home", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "eSignVerificationResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "E-Sign", - "subtitle": "Complete e-sign for each individual", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "NikhilKumar1", - "widgetName": "TITLE_STATUS_WITH_FOOTER_CARD", - "widgetLayoutParams": { - "margin": "0,12,0,0" - }, - "widgetData": { - "title": { - "text": "Hitesh Kumar", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "(Applicant)", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - }, - "tagData": { - "tagText": { - "text": "In progress", - "font": "NAVI_BOLD", - "size": 10, - "textColor": "#EA9E0B" - }, - "backgroundColor": "#FAF3EB", - "cornerRadius": "24" - }, - "footerContent": { - "centerText": { - "text": "This might take a few minutes", - "font": "NAVI_BOLD", - "alignment": "CENTER", - "size": 12, - "textColor": "#DF8F0C", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_YELLOW_CLOCK" - } - } - }, - "bgColor": "#29F7B500" - } - } - }, - { - "widgetId": "NikhilKumar2", - "widgetName": "TITLE_STATUS_WITH_FOOTER_CARD", - "widgetLayoutParams": { - "margin": "0,12,0,0" - }, - "widgetData": { - "title": { - "text": "Nikhil Kumar", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "(Co-applicant)", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_BLACK_GREY_BG_RIGHT_ARROW", - "iconHeight": "20", - "iconWidth": "20" - } - } - }, - { - "widgetId": "NikhilKumar3", - "widgetName": "TITLE_STATUS_WITH_FOOTER_CARD", - "widgetLayoutParams": { - "margin": "0,12,0,0" - }, - "widgetData": { - "title": { - "text": "Nikhil Kumar", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "(Co-applicant)", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_CIRCLE_GREEN_TICK", - "iconHeight": "20", - "iconWidth": "20" - } - } - } - ], - "infoProviderText": { - "text": "Your data is 100% safe", - "textColor": "#6B6B6B", - "font": "NAVI_REGULAR", - "size": 10, - "textDrawableData": { - "left": { - "iconCode": "ICON_HL_SAFETY_SMALL_GREEN_TICK" - } - } - }, - "applicants": [ - { - "identifier": "1", - "vendorDocumentId": "1", - "referenceId": "1", - "widgetId": "NikhilKumar1", - "status": "IN_PROGRESS" - }, - { - "identifier": "2", - "vendorDocumentId": "2", - "referenceId": "2", - "widgetId": "NikhilKumar2", - "status": "NOT_INITIATED" - }, - { - "identifier": "3", - "vendorDocumentId": "3", - "referenceId": "3", - "widgetId": "NikhilKumar3", - "status": "COMPLETED" - } - ], - "apiErrorBottomSheetData": { - "iconCode": "ICON_RED_BORDER_ALERT", - "title": { - "text": "Something went wrong", - "font": "NAVI_BOLD", - "size": 18 - }, - "subTitle": { - "text": "Please try after sometime", - "font": "NAVI_SEMI_BOLD", - "size": 12 - }, - "footer": { - "cta": { - "title": "Okay", - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "eSignFailureBottomSheetData": { - "iconCode": "ICON_RED_BORDER_ALERT", - "title": { - "text": "E-Sign not completed", - "font": "NAVI_BOLD", - "size": 18 - }, - "subTitle": { - "text": "Your e-sign request couldn't be processed. Please retry again.", - "font": "NAVI_SEMI_BOLD", - "size": 12 - }, - "footer": { - "cta": { - "title": "Okay", - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - }, - "footer": { - "progress": 50, - "backCta": { - "title": "Back", - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_FORM_SEARCH", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "loanCardData": { - "title": "Loan amount", - "subTitle": "₹ 1,00,00,000", - "viewDetailsCta": { - "title": "View details", - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "loanDetailsBottomSheetData": { - "widgets": [ - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,0,8,0" - }, - "widgetData": { - "startText": { - "text": "Loan details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#000000" - }, - "endText": { - "text": "Edit", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "endTextCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Loan amount", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹1,00,00,000", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Property cost", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹1,50,00,000", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Tenure", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "15 years", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "HorizontalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "8,24,8,0" - }, - "widgetData": { - "layoutHeight": 2, - "lineType": "HORIZONTAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "EmiDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "EMI details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#000000" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "EMI", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹41,667", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Interest rate", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "7.39%", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "HorizontalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "8,24,8,0" - }, - "widgetData": { - "layoutHeight": 2, - "lineType": "HORIZONTAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "downloadFSLetter", - "widgetName": "TITLE_WITH_END_ICON", - "widgetLayoutParams": { - "margin": "-8,0,-8,0" - }, - "widgetData": { - "title": { - "text": "Download financial sanction letter", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 14 - }, - "drawableData": { - "backgroundColor": "#FFFFFF" - }, - "endIcon": { - "iconCode": "ICON_RED_BORDER_DOWNLOAD", - "iconHeight": "24", - "iconWidth": "24" - }, - "cta": { - "type": "DOWNLOAD", - "title": "sanction.pdf", - "url": "https://www.africau.edu/images/default/sample.pdf", - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - ], - "footer": { - "cta": { - "title": "Okay, got it", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - } - } - }, - "sideTrackerContent": { - "header": { - "widgets": [ - { - "widgetId": "HiteshKumar", - "widgetName": "TITLE_SUBTITLE_TAG", - "widgetData": { - "title": { - "text": "Hitesh Kumar", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "Co-applicant", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - }, - "tagData": { - "tagText": { - "text": "New", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#011A48" - }, - "backgroundColor": "#E4EEFF", - "cornerRadius": "24" - } - } - } - ] - }, - "content": { - "widgets": [ - { - "widgetId": "BasicDetails", - "widgetName": "LOAN_STEP_ITEM", - "widgetLayoutParams": { - "margin": "10,24,10,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_SMALL_CIRCLE_GREEN_TICK", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Basic details", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "18,0,0,0" - }, - "widgetData": { - "layoutHeight": 32, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "PropertyDetails", - "widgetName": "LOAN_STEP_ITEM", - "widgetLayoutParams": { - "margin": "10,0,10,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_SMALL_CIRCLE_GREEN_TICK", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Property details", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "18,0,0,0" - }, - "widgetData": { - "layoutHeight": 32, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "EligibilityOffer", - "widgetName": "LOAN_OFFER_STEP_ITEM", - "widgetLayoutParams": { - "margin": "10,0,10,0" - }, - "widgetData": { - "cardData": { - "title": { - "text": "Eligibility offer", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#444444" - }, - "subTitle": { - "text": "₹ 1 Crore", - "font": "NAVI_BOLD", - "size": 18, - "textColor": "#FF5732" - }, - "strokeColor": "#EBEBEB", - "cornerRadius": 8, - "iconCodeData": { - "iconCode": "ICON_HL_RED_CONFETTI", - "iconHeight": "32", - "iconWidth": "32" - } - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_RED_RIGHT_ARROW", - "iconHeight": "16", - "iconWidth": "16" - }, - "cta": { - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "18,0,0,0" - }, - "widgetData": { - "layoutHeight": 32, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "IncomeVerification", - "widgetName": "LOAN_STEP_ITEM", - "widgetLayoutParams": { - "margin": "10,0,10,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_SMALL_CIRCLE_YELLOW", - "iconHeight": "16", - "iconWidth": "16" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_RED_RIGHT_ARROW", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Income verification", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "cta": { - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "18,0,0,0" - }, - "widgetData": { - "layoutHeight": 32, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "LoanOffer", - "widgetName": "TAG", - "widgetLayoutParams": { - "margin": "10,0,10,0" - }, - "widgetData": { - "title": { - "text": "Loan offer", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#444444" - }, - "tagLayoutParams": { - "backgroundColor": "#F5F5F5", - "cornerRadius": 24, - "rootPadding": "4,2,4,2" - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "18,0,0,0" - }, - "widgetData": { - "layoutHeight": 32, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "DocumentVerification", - "widgetName": "LOAN_STEP_ITEM", - "widgetLayoutParams": { - "margin": "10,0,10,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_SMALL_CIRCLE_GRAY", - "iconHeight": "16", - "iconWidth": "16" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_LOCK_GRAY", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Document verification", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "18,0,0,0" - }, - "widgetData": { - "layoutHeight": 32, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "LoanDisbursal", - "widgetName": "TAG", - "widgetLayoutParams": { - "margin": "10,0,10,0" - }, - "widgetData": { - "title": { - "text": "Loan disbursal", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#444444" - }, - "tagLayoutParams": { - "backgroundColor": "#F5F5F5", - "cornerRadius": 24, - "rootPadding": "4,2,4,2" - } - } - } - ] - }, - "footer": { - "widgets": [ - { - "widgetId": "HiteshKumar", - "widgetName": "TITLE_SUBTITLE_TAG", - "widgetData": { - "showTopDivider": true, - "showBottomDivider": true, - "title": { - "text": "Hitesh Kumar", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "Applicant", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - }, - "tagData": { - "tagText": { - "text": "In progress", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#EA9E0B" - }, - "backgroundColor": "#FAF3EB", - "cornerRadius": "24" - }, - "cta": { - "url": "", - "parameters": [], - "type": "UPDATE_TRACKER", - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "AddCoApplicant", - "widgetName": "LOAN_STEP_ITEM", - "widgetLayoutParams": { - "margin": "24,16,24,24" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_SMALL_RED_CIRCLE_PLUS", - "iconHeight": "20", - "iconWidth": "20" - }, - "title": { - "text": "Add co-applicant", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "cta": { - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - ] - } - }, - "coApplicantSideTrackerContent": { - "header": { - "widgets": [ - { - "widgetId": "DeekshaSrivastava", - "widgetName": "TITLE_SUBTITLE_TAG", - "widgetData": { - "title": { - "text": "Deeksha Srivastava", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "##6B6B6B" - }, - "subTitle": { - "text": "Co-applicant", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#444444" - }, - "tagData": { - "tagText": { - "text": "New", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#011A48" - }, - "backgroundColor": "#E4EEFF", - "cornerRadius": "24" - } - } - } - ] - }, - "content": { - "widgets": [ - { - "widgetId": "VerificationPending", - "widgetName": "START_ICON_TITLE_TAG", - "widgetLayoutParams": { - "margin": "0,24,0,0", - "rootPadding": "10,8,12,8", - "backgroundColor": "#FFF8EC", - "cornerRadius": 8 - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_SMALL_SOLID_YELLOW_ALERT", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Verification Pending", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#F7B500" - }, - "subTitle": { - "text": "Resend", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#011A48", - "substringStyles": [ - { - "substring": "Resend", - "textColor": "#011A48", - "underline": true - } - ] - } - } - }, - { - "widgetId": "BasicDetails", - "widgetName": "LOAN_STEP_ITEM", - "widgetLayoutParams": { - "margin": "10,24,10,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_SMALL_CIRCLE_YELLOW", - "iconHeight": "20", - "iconWidth": "20" - }, - "endIcon": { - "iconCode": "GREY_ROUNDED_RIGHT_ARROW_MEDIUM_ICON", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Basic details", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "18,0,0,0" - }, - "widgetData": { - "layoutHeight": 32, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "IncomeVerification", - "widgetName": "LOAN_STEP_ITEM", - "widgetLayoutParams": { - "margin": "10,0,10,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_SMALL_CIRCLE_GRAY", - "iconHeight": "16", - "iconWidth": "16" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_LOCK_GRAY", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Income verification", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "cta": { - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "18,0,0,0" - }, - "widgetData": { - "layoutHeight": 32, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "Kyc", - "widgetName": "LOAN_STEP_ITEM", - "widgetLayoutParams": { - "margin": "10,0,10,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_SMALL_CIRCLE_GRAY", - "iconHeight": "16", - "iconWidth": "16" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_LOCK_GRAY", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "KYC", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "cta": { - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "HorizontalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "10,32,0,0" - }, - "widgetData": { - "layoutHeight": 32, - "lineType": "HORIZONTAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "RemoveCoApplicant", - "widgetName": "ICON_WITH_TITLE", - "widgetLayoutParams": { - "margin": "10,0,0,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_SMALL_BLUE_CIRCLE_MINUS", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Remove co-applicant", - "textColor": "#011A48", - "font": "NAVI_SEMI_BOLD", - "size": 12 - }, - "ctaData": { - "url": "" - } - } - } - ] - }, - "footer": { - "widgets": [ - { - "widgetId": "SukritiDhariwal", - "widgetName": "TITLE_SUBTITLE_TAG", - "widgetData": { - "showTopDivider": true, - "showBottomDivider": true, - "title": { - "text": "Sukriti Dhariwal", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "Applicant", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "tagData": { - "tagText": { - "text": "In progress", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#EA9E0B" - }, - "backgroundColor": "#FAF3EB", - "cornerRadius": "24" - }, - "cta": { - "url": "", - "parameters": [], - "type": "UPDATE_TRACKER", - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "AddCoApplicant", - "widgetName": "ICON_WITH_TITLE", - "widgetLayoutParams": { - "margin": "24,16,0,24" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_SMALL_RED_CIRCLE_PLUS", - "iconHeight": "20", - "iconWidth": "20" - }, - "title": { - "text": "Add co-applicant", - "textColor": "#FF5732", - "font": "NAVI_SEMI_BOLD", - "size": 14 - }, - "ctaData": { - "url": "" - } - } - } - ] - } - }, - "hlIntro": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "title": "Get started", - "url": "HOME", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "content": { - "screenTitle": { - "text": "Get a \nHome Loan", - "textColor": "#191919", - "size": 24, - "font": "TT_SEMI_BOLD", - "substringStyles": [ - { - "substring": "Home Loan", - "textColor": "#FF6E00" - } - ] - }, - "screenSubTitle": { - "text": "in few easy steps", - "textColor": "#6B6B6B", - "size": 14, - "font": "TT_MEDIUM" - }, - "widgets": [ - { - "widgetId": "BasicDetails", - "widgetName": "LOAN_STEP_ITEM", - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_PERSON_CIRCLE_GRAY", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Basic details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "Enter personal & employment details", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "20,0,0,0" - }, - "widgetData": { - "layoutHeight": 36, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "PropertyDetails", - "widgetName": "LOAN_STEP_ITEM", - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_HOME_CIRCLE_GRAY", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Property details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "Enter your property city & details", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "20,0,0,0" - }, - "widgetData": { - "layoutHeight": 36, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "EligibilityOffer", - "widgetName": "TAG", - "widgetData": { - "title": { - "text": "ELIGIBILITY OFFER", - "font": "NAVI_EXTRA_BOLD", - "size": 12, - "textColor": "#011A48" - }, - "tagLayoutParams": { - "rootPadding": "8,4,8,4", - "backgroundColor": "#FFF2EF", - "cornerRadius": 24 - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "20,0,0,0" - }, - "widgetData": { - "layoutHeight": 36, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "IncomeVerification", - "widgetName": "LOAN_STEP_ITEM", - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_WALLET_CIRCLE_GRAY", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Income verification", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "Share your bank statement", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "20,0,0,0" - }, - "widgetData": { - "layoutHeight": 36, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "LoanApproval", - "widgetName": "TAG", - "widgetData": { - "title": { - "text": "LOAN APPROVAL", - "font": "NAVI_EXTRA_BOLD", - "size": 12, - "textColor": "#011A48" - }, - "tagLayoutParams": { - "rootPadding": "8,4,8,4", - "backgroundColor": "#FFF2EF", - "cornerRadius": 24 - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "20,0,0,0" - }, - "widgetData": { - "layoutHeight": 36, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "DocumentVerification", - "widgetName": "LOAN_STEP_ITEM", - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_FINGERPRINT_CIRCLE_GRAY", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Document verification", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "Complete KYC & upload documents", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - } - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "20,0,0,0" - }, - "widgetData": { - "layoutHeight": 36, - "lineType": "VERTICAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "LoanDisbursal", - "widgetName": "TAG", - "widgetData": { - "title": { - "text": "LOAN DISBURSAL", - "font": "NAVI_EXTRA_BOLD", - "size": 12, - "textColor": "#011A48" - }, - "tagLayoutParams": { - "rootPadding": "8,4,8,4", - "backgroundColor": "#FFF2EF", - "cornerRadius": 24 - } - } - } - ], - "backBottomSheetData": { - "iconCode": "ICON_RED_BORDER_ALERT", - "title": { - "text": "Want to go back? ", - "font": "NAVI_BOLD", - "size": 18 - }, - "subTitle": { - "text": "This will take you to home screen", - "font": "NAVI_SEMI_BOLD", - "size": 12 - }, - "footer": { - "backCta": { - "title": "No, Stay back", - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "nextCta": { - "title": "Yes, Go home", - "url": "HOME", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "disclaimerCheckBox": { - "text": "By proceeding, I agree to NFS Home Loan Privacy Policy and NFS Home Loan Terms of Use", - "span": [ - { - "startSpan": 0, - "endSpan": 85, - "fontColor": "#6B6B6B", - "fontName": "TT_REGULAR", - "fontSize": 12.0, - "underline": false - }, - { - "startSpan": 26, - "endSpan": 54, - "fontColor": "#6B6B6B", - "fontName": "TT_MEDIUM", - "fontSize": 12.0, - "underline": true, - "action": { - "url": "webUrl", - "parameters": [ - { - "key": "url", - "value": "https://public-assets.prod.navi-tech.in/navi-website-assests/docs/Home_Loan_App_Privacy_Policy%5B09-08-2023%5D.pdf" - } - ], - "metaData": { - "clicked": { - "eventName": "hl_pre_sub_module_pp_click" - } - } - } - }, - { - "startSpan": 59, - "endSpan": 85, - "fontColor": "#6B6B6B", - "fontName": "TT_MEDIUM", - "fontSize": 12.0, - "underline": true, - "action": { - "url": "webUrl", - "parameters": [ - { - "key": "url", - "value": "https://public-assets.prod.navi-tech.in/navi-website-assests/docs/Home_Loan_App_T%26Cs%5B09-08-2023%5D.pdf" - } - ], - "metaData": { - "clicked": { - "eventName": "hl_pre_sub_module_tou_click" - } - } - } - } - ] - } - }, - "footer": { - "cta": { - "title": "Check Your Offer", - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [ - { - "key": "action", - "value": "PERSONAL_DETAILS" - }, - { - "key": "referenceId", - "value": "1ab49cc2-1f32-4bce-add2-a3cf88843fbc" - } - ], - "analyticsEventProperties": { - "name": "New_HL_Tracker_Submit", - "properties": { - "deeplink": "https://m.navi.com/MoFm0B4Ohzb", - "screenName": "Static_Status_Tracker_Service", - "customerReferenceId": "1ab49cc2-1f32-4bce-add2-a3cf88843fbc", - "user_consent": "true" - } - } - } - } - }, - "widgetizedInfoScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Eligibility offer", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "EligibilityOffer", - "widgetName": "HOME_LOAN_OFFER_INFO", - "widgetData": { - "tagData": { - "tagText": { - "text": "Expires in 30 days", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#444444" - }, - "backgroundColor": "#FFEFC2", - "cornerRadius": "4" - }, - "titleText": { - "text": "You are eligible for loan amount upto ", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "amountText": { - "text": "₹ 1 Crore", - "font": "NAVI_EXTRA_BOLD", - "size": 32, - "textColor": "#FF5732" - }, - "interestText": { - "text": "@6.5% - 7.25% interest p.a.", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#6B6B6B" - }, - "footerCardData": { - "textFieldData": { - "text": "Want a better loan offer?", - "textColor": "#191919", - "font": "NAVI_BOLD", - "size": 14, - "substringStyles": [ - { - "substring": "better loan", - "textColor": "#FF5732" - } - ] - }, - "textEndIcon": { - "iconCode": "ICON_HL_SMALL_RED_WHITE_BG_RIGHT_ARROW", - "iconHeight": "24", - "iconWidth": "24" - }, - "gradient": { - "startGradientColor": "#FFFFFF", - "endGradientColor": "#FFEAE5", - "orientation": "TL_BR" - } - } - } - }, - { - "widgetId": "AddCoApplicant", - "widgetName": "TEXT_FIELD_WITH_BULLET_POINTS", - "widgetLayoutParams": { - "margin": "0,16,0,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_PERSON_WITH_RED_PLUS", - "iconHeight": "24", - "iconWidth": "24" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_RED_CIRCLE_PLUS", - "iconHeight": "20", - "iconWidth": "20" - }, - "title": { - "text": "Add Co-Applicant", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "infoList": [ - { - "text": "Co-owner of your property must be a co-applicant", - "font": "NAVI_REGULAR", - "size": 10, - "textColor": "#6B6B6B", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "Adding co-applicant might improve your offer", - "font": "NAVI_REGULAR", - "size": 10, - "textColor": "#6B6B6B", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - } - ] - } - } - ] - }, - "footer": { - "progress": 50, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_CO_APPLICANT_SCREEN", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "widgetizedInfoScreenResponse2": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "home", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Loan Offer", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "EligibilityOffer", - "widgetName": "HOME_LOAN_OFFER_INFO", - "widgetData": { - "centerTopIconCode": { - "iconCode": "ICON_HL_RED_LARGE_CONFETTI", - "iconHeight": "56", - "iconWidth": "56" - }, - "titleText": { - "text": "You are approved for loan amount upto", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "amountText": { - "text": "₹ 1 Crore", - "font": "NAVI_EXTRA_BOLD", - "size": 32, - "textColor": "#FF5732" - }, - "interestText": { - "text": "Calculated based on your property cost", - "font": "NAVI_SEMI_BOLD", - "size": 10, - "textColor": "#6B6B6B" - }, - "keyValueFields": [ - { - "key": { - "text": "EMI", - "font": "NAVI_SEMI_BOLD", - "size": 10, - "textColor": "#6B6B6B" - }, - "value": { - "text": "₹41,667", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#444444" - } - }, - { - "key": { - "text": "INTEREST RATE", - "font": "NAVI_SEMI_BOLD", - "size": 10, - "textColor": "#6B6B6B" - }, - "value": { - "text": "7.39% p.a.", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#444444" - } - }, - { - "key": { - "text": "TENURE", - "font": "NAVI_SEMI_BOLD", - "size": 10, - "textColor": "#6B6B6B" - }, - "value": { - "text": "15 years", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#444444" - } - } - ], - "footerCardData": { - "textFieldData": { - "text": "Want a better loan offer?", - "textColor": "#191919", - "font": "NAVI_BOLD", - "size": 14, - "substringStyles": [ - { - "substring": "better loan", - "textColor": "#FF5732" - } - ] - }, - "textEndIcon": { - "iconCode": "ICON_HL_SMALL_RED_WHITE_BG_RIGHT_ARROW", - "iconHeight": "24", - "iconWidth": "24" - }, - "gradient": { - "startGradientColor": "#FFFFFF", - "endGradientColor": "#FFEAE5", - "orientation": "TL_BR" - } - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "ELEVATED_LINE_ITEMS_WITH_DIVIDER", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "startText": { - "text": "Loan details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#444444" - }, - "endText": { - "text": "Edit", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "keyValueFields": [ - { - "key": { - "text": "Property cost", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#6B6B6B" - }, - "value": { - "text": "₹1.5 Crore", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "showDivider": true - }, - { - "key": { - "text": "Loan amount", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#6B6B6B" - }, - "value": { - "text": "₹1 Crore", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "showDivider": true - }, - { - "key": { - "text": "Loan tenure", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#6B6B6B" - }, - "value": { - "text": "15 years", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#444444" - } - } - ], - "footerText": { - "text": "Zero Processing Fee", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#14BC51" - }, - "footerBgColor": "#E9F5EE" - } - }, - { - "widgetId": "FinancialSanctionLetter", - "widgetName": "TITLE_SUBTITLE_RIGHT_ICON", - "widgetLayoutParams": { - "margin": "4,24,4,0", - "rootPadding": "16,16,16,16", - "backgroundColor": "#EBEBEB", - "cornerRadius": 8 - }, - "widgetData": { - "endIcon": { - "iconCode": "ICON_RED_BORDER_DOWNLOAD", - "iconHeight": "24", - "iconWidth": "24" - }, - "title": { - "text": "Download financial sanction letter", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "cta": { - "type": "DOWNLOAD", - "title": "sanction.pdf", - "url": "https://www.africau.edu/images/default/sample.pdf", - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "AddCoApplicant", - "widgetName": "ELEVATED_CO_APPLICANT_LIST", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "items": [ - { - "title": { - "text": "Hitesh", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "subTitle": { - "text": "Co-Applicant", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "endIcon": { - "iconCode": "ICON_RED_BORDER_TRASH", - "iconHeight": "20", - "iconWidth": "20" - }, - "nextCtaBodyMap": { - "referenceId": "8e03f4b9-8be7-48ac-b343-d45748ee1d45", - "action": "DEACTIVATE_CO_APPLICANT", - "loanApplicationId": "1234" - } - }, - { - "title": { - "text": "Kumar", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "subTitle": { - "text": "Co-Applicant", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "endIcon": { - "iconCode": "ICON_RED_BORDER_TRASH", - "iconHeight": "20", - "iconWidth": "20" - }, - "nextCtaBodyMap": { - "referenceId": "8e03f4b9-8be7-48ac-b343-d45748ee1d45", - "action": "DEACTIVATE_CO_APPLICANT", - "loanApplicationId": "5678" - } - } - ], - "consentBsData": { - "title": { - "text": "Delete Co-Applicant", - "font": "NAVI_BOLD", - "size": 18, - "textColor": "#191919" - }, - "subTitle": { - "text": "Are you sure you want to delete this co-applicant?", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#444444" - }, - "nextCta": { - "title": "Yes", - "url": "hl/homeLoanLoader" - }, - "backCta": { - "title": "No" - } - }, - "footerContent": { - "centerText": { - "text": "Add co-applicant", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#FF5732", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_RED_CIRCLE_PLUS" - } - } - }, - "cta": { - "url": "hl/homeLoanSteps/HL_CO_APPLICANT_SCREEN", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - } - } - } - }, - { - "widgetId": "ExploreProperties", - "widgetName": "TITLE_END_ICON_WITH_GRADIENT", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "title": { - "text": "Want to explore properties ?", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#191919", - "substringStyles": [ - { - "substring": "explore properties", - "textColor": "#0B01A6" - } - ], - "textDrawableData": { - "right": { - "iconCode": "ICON_SMALL_WHITE_BG_BLUE_RIGHT_ARROW", - "drawablePadding": 12 - } - } - }, - "endIcon": { - "iconCode": "ICON_WHITE_HOME_WITH_SEARCH", - "iconHeight": "40", - "iconWidth": "40" - }, - "gradient": { - "startGradientColor": "#FFFFFF", - "endGradientColor": "#E5E2F6", - "orientation": "TL_BR" - }, - "cta": { - "url": "hl/homeLoanSteps/HL_DOCUMENTS_STATUS_SCREEN" - } - } - }, - { - "widgetId": "AddCoApplicant", - "widgetName": "ELEVATED_PROPERTY_ADDITION", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_PERSON_WITH_RED_PLUS", - "iconHeight": "24", - "iconWidth": "24" - }, - "title": { - "text": "Add Co-Applicant", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_RED_CIRCLE_PLUS", - "iconHeight": "24", - "iconWidth": "24" - } - } - }, - { - "widgetId": "AddPropertyDetails", - "widgetName": "ELEVATED_PROPERTY_ADDITION", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_HOME_WITH_RED_PLUS", - "iconHeight": "24", - "iconWidth": "24" - }, - "title": { - "text": "Add property details", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_RED_CIRCLE_PLUS", - "iconHeight": "24", - "iconWidth": "24" - }, - "cta": { - }, - "footerContent": { - "startText": { - "text": "Someone from Navi team will reach out to assist you and provide more details about the property.", - "font": "NAVI_SEMI_BOLD", - "size": 10, - "textColor": "#6B6B6B", - "textDrawableData": { - "left": { - "iconCode": "ICON_SMALL_YELLOW_BULB", - "drawablePadding": 8 - } - } - }, - "bgColor": "#EDECFF" - } - } - }, - { - "widgetId": "AddPropertyDetails", - "widgetName": "ELEVATED_PROPERTY_ADDITION", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_HOME_WITH_RED_PLUS", - "iconHeight": "24", - "iconWidth": "24" - }, - "title": { - "text": "Add property details", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "endIcon": { - "iconCode": "ICON_HL_SMALL_RED_CIRCLE_PLUS", - "iconHeight": "24", - "iconWidth": "24" - }, - "cta": { - }, - "footerContent": { - "startText": { - "text": "Want to explore properties ?", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#191919", - "substringStyles": [ - { - "substring": "explore properties", - "textColor": "#0B01A6" - } - ] - }, - "endIcon": { - "iconCode": "ICON_SMALL_WHITE_BG_BLUE_RIGHT_ARROW", - "iconHeight": "24", - "iconWidth": "24" - }, - "bgColor": "#EDECFF", - "cta": { - } - } - } - } - ] - }, - "footer": { - "progress": 50, - "cta": { - "title": "Continue", - "url": "hl/homeLoanSteps/KYC", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "widgetizedInfoScreenResponse3": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Collateral evaluation", - "subtitle": "Evaluation in process", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "evaluationWidget", - "widgetName": "TITLE_DESC_IMAGE", - "widgetLayoutParams": { - "margin": "15,100,16,0" - }, - "widgetData": { - "title": { - "text": "Evaluation in progress..", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#011A48" - }, - "description": { - "text": "We are determining the market value of your property.", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#6B6B6B" - }, - "image": { - "iconCode": "ICON_LARGE_PURPLE_TIMER_WITH_DOG", - "iconHeight": "168", - "iconWidth": "168" - } - } - } - ], - "footerInfoCard": { - "title": { - "text": "There is no action for you to take this time, we will keep you posted about your status", - "font": "NAVI_SEMI_BOLD", - "size": 10, - "textColor": "#4B4968" - }, - "startIcon": { - "iconCode": "ICON_SMALL_YELLOW_BULB", - "iconHeight": "16", - "iconWidth": "16" - }, - "drawableData": { - "cornerRadius": 8, - "backgroundColor": "#F2F7FC" - } - } - }, - "footer": { - "loanCardData": { - "title": "Loan amount", - "subTitle": "₹ 1,00,00,000", - "viewDetailsCta": { - "title": "View details", - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "loanDetailsBottomSheetData": { - "widgets": [ - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,0,8,0" - }, - "widgetData": { - "startText": { - "text": "Loan details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#000000" - }, - "endText": { - "text": "Edit", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "endTextCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Loan amount", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹1,00,00,000", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Property cost", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹1,50,00,000", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Tenure", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "15 years", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "HorizontalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "8,24,8,0" - }, - "widgetData": { - "layoutHeight": 2, - "lineType": "HORIZONTAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "EmiDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "EMI details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#000000" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "EMI", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹41,667", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Interest rate", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "7.39%", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "HorizontalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "8,24,8,0" - }, - "widgetData": { - "layoutHeight": 2, - "lineType": "HORIZONTAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "downloadFSLetter", - "widgetName": "TITLE_WITH_END_ICON", - "widgetLayoutParams": { - "margin": "-8,0,-8,0" - }, - "widgetData": { - "title": { - "text": "Download financial sanction letter", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 14 - }, - "drawableData": { - "backgroundColor": "#FFFFFF" - }, - "endIcon": { - "iconCode": "ICON_RED_BORDER_DOWNLOAD", - "iconHeight": "24", - "iconWidth": "24" - }, - "cta": { - "type": "DOWNLOAD", - "title": "sanction.pdf", - "url": "https://www.africau.edu/images/default/sample.pdf", - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - ], - "footer": { - "cta": { - "title": "Okay, got it", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - } - } - }, - "kycDetailsScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "KYC", - "subtitle": "KYC is required to complete the process", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "SelfiePending", - "widgetName": "KYC_STEP_ITEM", - "widgetLayoutParams": { - "margin": "0,16,0,0" - }, - "widgetData": { - "cardProperties": { - "borderRadius": 8, - "strokeColor": "#FF5732", - "strokeWidth": 1 - }, - "startIcon": { - "iconCode": "ICON_HL_KYC_SELFIE_CAMERA", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Selfie", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "startSubtitle": { - "text": "No Hat", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B", - "textDrawableData": { - "left": { - "iconCode": "ICON_HAT_CROSSED_WITH_RED_LINE", - "iconHeight": "16", - "iconWidth": "16" - } - } - }, - "endSubtitle": { - "text": "No Glasses", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B", - "textDrawableData": { - "left": { - "iconCode": "ICON_GLASSES_CROSSED_WITH_RED_LINE", - "iconHeight": "16", - "iconWidth": "16" - } - } - }, - "endIcon": { - "iconCode": "ICON_RIGHT_ARROW_IN_ORANGE_CIRCLE", - "iconHeight": "24", - "iconWidth": "24" - }, - "cta": { - "url": "hl/homeLoanSteps/HL_SELFIE_VERIFICATION_SCREEN" - } - } - }, - { - "widgetId": "AddressLocked", - "widgetName": "KYC_STEP_ITEM", - "widgetLayoutParams": { - "margin": "0,16,0,0" - }, - "widgetData": { - "cardProperties": { - "borderRadius": 8, - "strokeColor": "#F5F5F5", - "strokeWidth": 1 - }, - "startIcon": { - "iconCode": "ICON_HL_KYC_HOUSE", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Your Address", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "startSubtitle": { - "text": "Enter communication address", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "endIcon": { - "iconCode": "ICON_HL_KYC_LOCK", - "iconHeight": "24", - "iconWidth": "24" - } - } - }, - { - "widgetId": "AadhaarPending", - "widgetName": "KYC_STEP_ITEM", - "widgetLayoutParams": { - "margin": "0,16,0,0" - }, - "widgetData": { - "cardProperties": { - "borderRadius": 8, - "strokeColor": "#FF5732", - "strokeWidth": 1 - }, - "startIcon": { - "iconCode": "ICON_HL_KYC_FINGERPRINT", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Verify Aadhaar", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "startSubtitle": { - "text": "Complete KYC with Aadhaar OTP", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "endIcon": { - "iconCode": "ICON_RIGHT_ARROW_IN_ORANGE_CIRCLE", - "iconHeight": "24", - "iconWidth": "24" - } - } - }, - { - "widgetId": "AddressPending", - "widgetName": "KYC_STEP_ITEM", - "widgetLayoutParams": { - "margin": "0,16,0,0" - }, - "widgetData": { - "cardProperties": { - "borderRadius": 8, - "strokeColor": "#FF5732", - "strokeWidth": 1 - }, - "startIcon": { - "iconCode": "ICON_HL_KYC_HOUSE", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Your Address", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "startSubtitle": { - "text": "Enter communication address", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "endIcon": { - "iconCode": "ICON_RIGHT_ARROW_IN_ORANGE_CIRCLE", - "iconHeight": "24", - "iconWidth": "24" - } - } - }, - { - "widgetId": "AadhaarDone", - "widgetName": "KYC_STEP_ITEM", - "widgetLayoutParams": { - "margin": "0,16,0,0" - }, - "widgetData": { - "cardProperties": { - "borderRadius": 8, - "strokeColor": "#F5F5F5", - "strokeWidth": 1 - }, - "startIcon": { - "iconCode": "ICON_HL_KYC_FINGERPRINT", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Verify Aadhaar", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "startSubtitle": { - "text": "Verification completed", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#22A940" - }, - "endIcon": { - "iconCode": "ICON_HL_MEDIUM_CIRCLE_GREEN_TICK", - "iconHeight": "24", - "iconWidth": "24" - } - } - }, - { - "widgetId": "SelfieDone", - "widgetName": "KYC_STEP_ITEM", - "widgetLayoutParams": { - "margin": "0,16,0,0" - }, - "widgetData": { - "cardProperties": { - "borderRadius": 8, - "strokeColor": "#F5F5F5", - "strokeWidth": 1 - }, - "startIcon": { - "iconCode": "ICON_HL_KYC_SELFIE_PLACEHOLDER", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Selfie", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "startSubtitle": { - "text": "Selfie taken and verified", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#22A940" - }, - "endIcon": { - "iconCode": "ICON_HL_MEDIUM_CIRCLE_GREEN_TICK", - "iconHeight": "24", - "iconWidth": "24" - } - } - } - ] - }, - "footer": { - "progress": 50, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_COMMUNICATION_ADDRESS", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "backCta": { - "title": "Back", - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "loanCardData": { - "title": "Loan amount", - "subTitle": "₹ 1,00,00,000", - "viewDetailsCta": { - "title": "View details", - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "loanDetailsBottomSheetData": { - "widgets": [ - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,0,8,0" - }, - "widgetData": { - "startText": { - "text": "Loan details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#000000" - }, - "endText": { - "text": "Edit", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "endTextCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Loan amount", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹1,00,00,000", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Property cost", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹1,50,00,000", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Tenure", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "15 years", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "HorizontalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "8,24,8,0" - }, - "widgetData": { - "layoutHeight": 2, - "lineType": "HORIZONTAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "EmiDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "EMI details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#000000" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "EMI", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹41,667", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Interest rate", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "7.39%", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "HorizontalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "8,24,8,0" - }, - "widgetData": { - "layoutHeight": 2, - "lineType": "HORIZONTAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "downloadFSLetter", - "widgetName": "TITLE_WITH_END_ICON", - "widgetLayoutParams": { - "margin": "-8,0,-8,0" - }, - "widgetData": { - "title": { - "text": "Download financial sanction letter", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 14 - }, - "drawableData": { - "backgroundColor": "#FFFFFF" - }, - "endIcon": { - "iconCode": "ICON_RED_BORDER_DOWNLOAD", - "iconHeight": "24", - "iconWidth": "24" - }, - "cta": { - "type": "DOWNLOAD", - "title": "sanction.pdf", - "url": "https://www.africau.edu/images/default/sample.pdf", - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - ], - "footer": { - "cta": { - "title": "Okay, got it", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - } - } - }, - "kycAddressScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": {} - }, - "trackerHeader": { - "title": "KYC", - "subtitle": "KYC is required to complete the process", - "showSideTracker": true, - "tagText": "Sukriti's" - } - }, - "content": { - "widgets": [ - { - "widgetId": "SelectAddressTitle", - "widgetName": "TITLE_V2", - "widgetLayoutParams": { - "margin": "0, 16, 0, 0" - }, - "widgetData": { - "title": { - "text": "Select communication address", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - } - } - }, - { - "widgetId": "SelectAddressSubtitle", - "widgetName": "TITLE_V2", - "widgetLayoutParams": { - "margin": "0, 4, 94, 0" - }, - "widgetData": { - "title": { - "text": "We’ve discovered these addresses from your KYC verification", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#6B6B6B" - } - } - }, - { - "widgetId": "RadioGroup", - "widgetName": "RADIO_GROUP_WITH_FOOTER_CARD", - "widgetData": { - "radioItems": [ - { - "widgetId": "FirstRadioButton", - "widgetName": "RADIO_BUTTON_WITH_FOOTER_CARD", - "widgetData": { - "title": { - "text": "A- 501, Prestige lakeside habitat, Near Raheja Residency, 560102, Kormangala", - "textColor": "#6B6B6B", - "size": 12, - "font": "NAVI_SEMI_BOLD" - }, - "showDivider": false, - "isSelected": true - } - }, - { - "widgetId": "SecondRadioButton", - "widgetName": "RADIO_BUTTON_WITH_FOOTER_CARD", - "widgetData": { - "title": { - "text": "101-A, CKYC, Adhaar blah, Correspondence address, 560087, Varthur", - "textColor": "#6B6B6B", - "size": 12, - "font": "NAVI_SEMI_BOLD" - }, - "showDivider": false - } - }, - { - "widgetId": "ThirdRadioButton", - "widgetName": "RADIO_BUTTON_WITH_FOOTER_CARD", - "widgetData": { - "title": { - "text": "101-A, CKYC, Adhaar blah, Correspondence address, 560087, Varthur", - "textColor": "#6B6B6B", - "size": 12, - "font": "NAVI_SEMI_BOLD" - }, - "showDivider": false - } - }, - { - "widgetId": "FourthRadioButton", - "widgetName": "RADIO_BUTTON_WITH_FOOTER_CARD", - "widgetData": { - "title": { - "text": "A- 501, Prestige lakeside habitat, 1st cross, 560095, Koramangala, Bengaluru", - "textColor": "#6B6B6B", - "size": 12, - "font": "NAVI_SEMI_BOLD" - }, - "showDivider": true, - "footerText": { - "text": "Edit address", - "textColor": "#FF5732", - "size": 12, - "font": "NAVI_BOLD", - "textDrawableData": { - "left": { - "iconCode": "ICON_ORANGE_BORDER_SMALL_PENCIL" - } - } - } - } - } - ] - } - }, - { - "widgetId": "AddAddress", - "widgetName": "TITLE_WITH_END_ICON", - "widgetData": { - "title": { - "text": "Add address", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 14 - }, - "endIcon": { - "iconCode": "ICON_ORANGE_FILLED_CIRCLE_PLUS", - "iconHeight": "24", - "iconWidth": "24" - }, - "drawableData": { - "cornerRadius": 8, - "backgroundColor": "#FFFFFF", - "strokeWidth": 1, - "strokeColor": "#E3E5E5" - }, - "cta": { - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - ] - }, - "footer": { - "progress": 40, - "backCta": { - "title": "Back", - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_KYC_DETAILS", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "formScreenPersonalDetailsResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - "title": { - "text": "Need Help?", - "textColor": "#1A1A1A", - "font": "NAVI_BOLD", - "size": 18 - }, - "widgets": [ - { - "widgetId": "FAQ", - "widgetName": "ICON_WITH_TITLE", - "widgetLayoutParams": { - "margin": "0,0,0,24" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_HELP_FAQ", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "FAQs", - "textColor": "#000000", - "font": "NAVI_SEMI_BOLD", - "size": 14 - }, - "ctaData": { - "url": "menu/faq" - } - } - }, - { - "widgetId": "CHAT", - "widgetName": "ICON_WITH_TITLE", - "widgetLayoutParams": { - "margin": "0,0,0,24" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_HELP_CHAT", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Chat with us", - "textColor": "#000000", - "font": "NAVI_SEMI_BOLD", - "size": 14 - }, - "ctaData": { - "url": "chatInHouse", - "parameters": [ - { - "key": "CHAT_BOT_SCREEN_NAME", - "value": "HL_BANK_SELECTION_SCREEN" - } - ] - } - } - }, - { - "widgetId": "EMAIL", - "widgetName": "ICON_WITH_TITLE", - "widgetLayoutParams": { - "margin": "0,0,0,24" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_HELP_EMAIL", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Send E-mail", - "textColor": "#000000", - "font": "NAVI_SEMI_BOLD", - "size": 14 - }, - "ctaData": { - "url": "emailV2" - } - } - } - ] - } - }, - "trackerHeader": { - "title": "Basic Details", - "subtitle": "We need your details to give a loan offer", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "name", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "Full Name", - "titleInfo": "(As per PAN card)", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Enter your name", - "inputType": "textPersonName|textCapWords", - "maxCharLength": 32, - "actionAvailable": false, - "convertToCaps": false - }, - "validation": [ - { - "name": "REGEX", - "regex": "([a-zA-Z\\s]{1,})", - "errorText": "Please enter your full name" - }, - { - "name": "TEXT_MIN_LENGTH", - "minLength": 3, - "errorText": "Minimum 3 characters required" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "dob", - "widgetName": "LABEL_WITH_DAY_MONTH_YEAR_WIDGET", - "widgetData": { - "title": "Date of Birth", - "isNewWidget": true, - "inputTextItemData": { - "hint": "DD - MM - YYYY", - "maxCharLength": 0, - "actionAvailable": false, - "minDate": "1947-09-13", - "maxDate": "2004-09-13", - "convertToCaps": false, - "defaultSelectedDate": "1990-01-01" - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter date of birth" - }, - { - "name": "IMPOSSIBLE_DATE_CHECK", - "errorText": "Please enter correct format" - }, - { - "name": "DATE_VALIDATION", - "errorText": "Valid Age Range is from 18 to 75 years", - "minDate": "1947-09-13", - "maxDate": "2004-09-13" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "personalEmail", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "Personal Email", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Enter your email", - "inputType": "emailAddress", - "maxCharLength": 100, - "actionAvailable": false, - "convertToCaps": false - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter your email" - }, - { - "name": "REGEX", - "regex": "[a-zA-Z0-9\\+\\.\\_\\%\\-\\+]{1,256}\\@(gmail|yahoo|outlook|hotmail|ymail)(\\.[a-zA-Z0-9][a-zA-Z0-9\\-]{0,25})+", - "errorText": "Please enter a valid email" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "panNumber", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "PAN Number", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Enter your 10-digit PAN number", - "inputType": "textCapCharacters", - "maxCharLength": 10, - "actionAvailable": false, - "convertToCaps": true - }, - "validation": [ - { - "name": "REGEX", - "regex": "[A-Z]{5}[0-9]{4}[A-Z]{1}", - "errorText": "Please enter a valid PAN" - } - ] - }, - "defaultVisibility": "SHOW" - } - ] - }, - "footer": { - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "formScreenPatchResponse": { - "status": "SUCCESS" - }, - "formScreenEmploymentDetailsResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Basic Details", - "subtitle": "We need your details to give a loan offer", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "incomeType", - "widgetName": "LABEL_WITH_MULTI_OPTION_SINGLE_CHOICE_TILE_WIDGET", - "widgetData": { - "title": "Employment Type", - "isNewWidget": true, - "validation": [ - { - "name": "MULTI_OPTION_SELECTION_CONSTRAINT", - "errorText": "Please select atleast one item", - "parameters": [ - { - "minSelection": 1, - "maxSelection": 1 - } - ] - } - ], - "tileSelectorData": { - "items": [ - { - "id": "SALARIED", - "iconCodeSelected": "ICON_SALARY_SELECTED", - "iconCodeUnSelected": "ICON_SALARY_UNSELECTED", - "title": "Salaried", - "dependantWidgetIdList": [ - { - "widgetId": "companyName", - "action": "SHOW" - } - ], - "isSelected": true - }, - { - "id": "OTHERS", - "iconCodeSelected": "ICON_OTHERS_SELECTED", - "iconCodeUnSelected": "ICON_OTHERS_UNSELECTED", - "title": "Others", - "dependantWidgetIdList": [ - { - "widgetId": "companyName", - "action": "HIDE" - } - ], - "onSelectWidgetHint": { - "title": "Check employment type", - "description": "Currently, we are not accepting applications from non-salaried users. Please apply with a salaried applicant to get a loan offer", - "iconCode": "ERROR_RED_INFO_ICON_SMALL", - "ctaList": [ - { - "title": "Change" - } - ] - }, - "isSelected": false - } - ], - "fitCount": 3, - "interItemSpaceDp": 20 - }, - "widgetHint": { - "title": "Your employment type is", - "iconCode": "ICON_INFO_SIMPLE", - "subTextFieldData": { - "text": "Salaried: If you are employed by any company, organisation or the government. \n\nOthers: If you are unemployed, a homemaker, pensioner or a student.", - "substringStyles": [ - { - "substring": "Salaried:", - "font": "BOLD" - }, - { - "substring": "Others:", - "font": "BOLD" - } - ] - }, - "cta": { - "title": "Okay, got it" - } - } - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "companyName", - "widgetName": "LABEL_WITH_INPUT_SEARCH_WIDGET", - "widgetData": { - "title": "Company Name", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Enter Company Name", - "inputType": "text", - "maxCharLength": 50, - "actionAvailable": false, - "searchApiUrl": "/master-data/v1/companies/search", - "searchApiDetails": { - "url": "/master-data/v1/companies/search", - "minCharactersRequiredToSearch": 3 - }, - "convertToCaps": false, - "noResultNote": "Please enter company name as per your pay slip", - "addInputText": "+ Add company" - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Enter valid company name" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "monthlyIncome", - "widgetName": "LABEL_WITH_FIXED_HINT_INPUT_WIDGET", - "widgetData": { - "title": "Net Monthly Income", - "isNewWidget": true, - "validation": [ - { - "name": "REGEX", - "regex": "^[+]?([0-9]+([.][0-9]*)?|[.][0-9]+)$", - "errorText": "Enter valid monthly income" - }, - { - "name": "VALUE_LOWER_RANGE_CHECK", - "errorText": "Monthly income cannot be less than 0", - "value": "0" - } - ], - "widgetHint": { - "title": "Net Monthly Income", - "description": "Your monthly in hand income after tax and deductions.", - "cta": { - "title": "Okay, got it" - } - }, - "inputTextFixedHintItemData": { - "inputType": "number", - "maxCharLength": 18, - "format": "MONEY", - "actionAvailable": false, - "fixedHint": "\u20b9", - "convertToCaps": false - } - }, - "defaultVisibility": "SHOW" - } - ] - }, - "footer": { - "backCta": { - "title": "Back", - "url": "hl/homeLoanSteps/HL_WIDGETIZED_INFO", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_FORM_SEARCH", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "formScreenPropertyCityResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Property Details", - "subtitle": "We need your details to give a loan offer", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "city", - "widgetName": "LABEL_WITH_INPUT_SEARCH_WIDGET", - "widgetData": { - "title": "Property City", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Search your property city..", - "inputType": "text", - "maxCharLength": 50, - "actionAvailable": false, - "searchApiDetails": { - "url": "/hl-supported-cities", - "minCharactersRequiredToSearch": 0 - }, - "noResultText": "City not found", - "convertToCaps": false - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please select your property city" - } - ] - }, - "defaultVisibility": "SHOW" - } - ], - "tileOptionList": [ - { - "name": "Delhi", - "iconDetail": { - "iconCode": "ICON_DELHI_CITY_BLACK_BORDER", - "iconHeight": 28, - "iconWidth": 28 - } - }, - { - "name": "Hyderabad", - "iconDetail": { - "iconCode": "ICON_HYDERABAD_CITY_BLACK_BORDER", - "iconHeight": 28, - "iconWidth": 28 - } - }, - { - "name": "Bengaluru", - "iconDetail": { - "iconCode": "ICON_BENGALURU_CITY_BLACK_BORDER", - "iconHeight": 28, - "iconWidth": 28 - } - }, - { - "name": "Mumbai", - "iconDetail": { - "iconCode": "ICON_MUMBAI_CITY_BLACK_BORDER", - "iconHeight": 28, - "iconWidth": 28 - } - }, - { - "name": "Chennai", - "iconDetail": { - "iconCode": "ICON_CHENNAI_CITY_BLACK_BORDER", - "iconHeight": 28, - "iconWidth": 28 - } - } - ] - }, - "footer": { - "backCta": { - "title": "Back", - "url": "hl/homeLoanSteps/HL_WIDGETIZED_INFO", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "formScreenPropertyDetailsResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Basic Details", - "subtitle": "We need your details to give a loan offer", - "showSideTracker": true, - "tagText": "Deeksha's" - } - }, - "content": { - "widgets": [ - { - "widgetId": "propertyType", - "widgetName": "LABEL_WITH_MULTI_OPTION_SINGLE_CHOICE_TILE_WIDGET", - "widgetData": { - "title": "Property type", - "isNewWidget": true, - "validation": [ - { - "name": "MULTI_OPTION_SELECTION_CONSTRAINT", - "errorText": "Please select a property type", - "parameters": [ - { - "minSelection": 1, - "maxSelection": 1 - } - ] - } - ], - "tileSelectorData": { - "items": [ - { - "id": "FLAT", - "iconCodeSelected": "ICON_PROPERTY_TYPE_FLAT_SELECTED", - "iconCodeUnSelected": "ICON_PROPERTY_TYPE_FLAT_UNSELECTED", - "title": "Flat", - "dependantWidgetIdList": [ - { - "widgetId": "propertyName", - "action": "SHOW" - }, - { - "widgetId": "typeOfPurchase", - "action": "SHOW" - }, - { - "widgetId": "flatNumber", - "action": "SHOW" - }, - { - "widgetId": "propertyCost", - "action": "SHOW" - }, - { - "widgetId": "loanRequirement", - "action": "SHOW" - }, - { - "widgetId": "loanRequirementOptional", - "action": "HIDE" - }, - { - "widgetId": "notDecidedPropertyToast", - "action": "HIDE" - }, - { - "widgetId": "exploreProperties", - "action": "HIDE" - }, - { - "widgetId": "propertyId", - "action": "SHOW" - } - ], - "isSelected": false - }, - { - "id": "OTHERS", - "iconCodeSelected": "ICON_PROPERTY_TYPE_OTHERS_SELECTED", - "iconCodeUnSelected": "ICON_PROPERTY_TYPE_OTHERS_UNSELECTED", - "title": "Others", - "dependantWidgetIdList": [ - { - "widgetId": "propertyName", - "action": "HIDE" - }, - { - "widgetId": "typeOfPurchase", - "action": "HIDE" - }, - { - "widgetId": "flatNumber", - "action": "HIDE" - }, - { - "widgetId": "propertyCost", - "action": "SHOW" - }, - { - "widgetId": "loanRequirement", - "action": "SHOW" - }, - { - "widgetId": "loanRequirementOptional", - "action": "HIDE" - }, - { - "widgetId": "notDecidedPropertyToast", - "action": "HIDE" - }, - { - "widgetId": "exploreProperties", - "action": "HIDE" - }, - { - "widgetId": "propertyId", - "action": "HIDE" - } - ], - "isSelected": false - }, - { - "id": "NOT_DECIDED", - "iconCodeSelected": "ICON_PROPERTY_TYPE_NOT_DECIDED_SELECTED", - "iconCodeUnSelected": "ICON_PROPERTY_TYPE_NOT_DECIDED_UNSELECTED", - "title": "Not decided", - "dependantWidgetIdList": [ - { - "widgetId": "propertyName", - "action": "HIDE" - }, - { - "widgetId": "typeOfPurchase", - "action": "HIDE" - }, - { - "widgetId": "flatNumber", - "action": "HIDE" - }, - { - "widgetId": "propertyCost", - "action": "HIDE" - }, - { - "widgetId": "loanRequirement", - "action": "HIDE" - }, - { - "widgetId": "loanRequirementOptional", - "action": "SHOW" - }, - { - "widgetId": "notDecidedPropertyToast", - "action": "SHOW" - }, - { - "widgetId": "exploreProperties", - "action": "SHOW" - }, - { - "widgetId": "propertyId", - "action": "HIDE" - } - ], - "isSelected": false - } - ], - "fitCount": 3, - "interItemSpaceDp": 20 - } - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "propertyName", - "widgetName": "LABEL_WITH_INPUT_SEARCH_WIDGET", - "widgetData": { - "title": "Property name", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Search your property..", - "inputType": "text", - "maxCharLength": 50, - "actionAvailable": false, - "searchApiDetails": { - "url": "/home-loan/v2/approved-properties", - "minCharactersRequiredToSearch": 0, - "queryParams": { - "city": "Bangalore" - } - }, - "convertToCaps": false, - "addInputText": "+ Add property" - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter property name" - } - ], - "widgetHint": { - "title": "Your property name is", - "description": "The full name used to identify the physical building or property as part of its location.", - "cta": { - "title": "Okay, got it" - } - } - }, - "defaultVisibility": "HIDE" - }, - { - "widgetId": "propertyId", - "widgetName": "LABEL_WITH_MULTI_OPTION_SINGLE_CHOICE_LIST_WIDGET", - "widgetData": { - "validation": [ - { - "name": "MULTI_OPTION_SELECTION_CONSTRAINT", - "errorText": "Please select atleast one item", - "parameters": [ - { - "maxSelection": 1, - "minSelection": 1 - } - ] - } - ], - "title": "Tower", - "listSelectorData": { - "listTitle": "Select tower", - "items": [ - { - "id": "Tower1", - "title": "Tower 1", - "isSelected": false - }, - { - "id": "Tower2", - "title": "Tower 2", - "isSelected": false - }, - { - "id": "Tower3", - "title": "Tower 3", - "isSelected": true - }, - { - "id": "Tower4", - "title": "Tower 4", - "isSelected": false - }, - { - "id": "Tower5", - "title": "Tower 5", - "isSelected": false - }, - { - "id": "Tower6", - "title": "Tower 6", - "isSelected": false - } - ], - "hint": "Select tower" - }, - "isNewWidget": true - } - }, - { - "widgetId": "typeOfPurchase", - "widgetName": "LABEL_WITH_MULTI_OPTION_SINGLE_CHOICE_LIST_WIDGET", - "widgetData": { - "title": "Type of purchase", - "isNewWidget": true, - "validation": [ - { - "name": "MULTI_OPTION_SELECTION_CONSTRAINT", - "errorText": "Please select a type of purchase", - "parameters": [ - { - "minSelection": 1, - "maxSelection": 1 - } - ] - } - ], - "listSelectorData": { - "hint": "Select type of purchase", - "listTitle": "Type of purchase", - "items": [ - { - "id": "builder", - "title": "From builder", - "isSelected": false - }, - { - "id": "resale", - "title": "Resale", - "isSelected": false - }, - { - "id": "selfConstruction", - "title": "Self-construction", - "isSelected": false - } - ] - } - }, - "defaultVisibility": "HIDE" - }, - { - "widgetId": "flatNumber", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "Flat number", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Enter flat number", - "inputType": "textCapCharacters", - "maxCharLength": 32, - "actionAvailable": false, - "convertToCaps": false - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter flat number" - } - ] - }, - "defaultVisibility": "HIDE" - }, - { - "widgetId": "propertyCost", - "widgetName": "LABEL_WITH_FIXED_HINT_INPUT_WIDGET", - "widgetData": { - "title": "Property cost", - "isNewWidget": true, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter property cost" - }, - { - "name": "REGEX", - "regex": "^[+]?([0-9]+([.][0-9]*)?|[.][0-9]+)$", - "errorText": "Please enter valid amount" - }, - { - "name": "VALUE_LOWER_RANGE_CHECK", - "errorText": "Property cost cannot be less than 11 lakhs", - "value": "1100000" - } - ], - "inputTextFixedHintItemData": { - "inputType": "number", - "hint": "Enter amount", - "maxCharLength": 18, - "format": "MONEY", - "actionAvailable": false, - "fixedHint": "₹", - "convertToCaps": false - } - }, - "defaultVisibility": "HIDE" - }, - { - "widgetId": "loanRequirement", - "widgetName": "LABEL_WITH_FIXED_HINT_INPUT_WIDGET", - "widgetData": { - "title": "Loan requirement", - "isNewWidget": true, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter your loan requirement" - }, - { - "name": "REGEX", - "regex": "^[+]?([0-9]+([.][0-9]*)?|[.][0-9]+)$", - "errorText": "Please enter valid amount" - }, - { - "name": "VALUE_LOWER_RANGE_CHECK", - "errorText": "Loan requirement cannot be less than 0", - "value": "0" - }, - { - "name": "WIDGET_VALUE_DEPENDANT_PERCENTAGE_UPPER_RANGE", - "widgetIdPercentageMap": { - "propertyCost": 90 - }, - "errorText": "Loan upto 90% of Property Value can be availed" - } - ], - "inputTextFixedHintItemData": { - "inputType": "number", - "hint": "Enter amount", - "maxCharLength": 18, - "format": "MONEY", - "actionAvailable": false, - "fixedHint": "₹", - "convertToCaps": false - } - }, - "defaultVisibility": "HIDE" - }, - { - "widgetId": "loanRequirementOptional", - "widgetName": "LABEL_WITH_FIXED_HINT_INPUT_WIDGET", - "widgetData": { - "title": "Loan requirement", - "titleInfo": "(Optional)", - "isNewWidget": true, - "validation": [], - "inputTextFixedHintItemData": { - "inputType": "number", - "hint": "Enter amount", - "maxCharLength": 18, - "format": "MONEY", - "actionAvailable": false, - "fixedHint": "₹", - "convertToCaps": false - } - }, - "defaultVisibility": "HIDE" - }, - { - "widgetId": "notDecidedPropertyToast", - "widgetName": "TOAST_WIDGET", - "widgetData": { - "text": "You will have to enter property details to get your loan approved later.", - "textColor": "#444444", - "iconUrl": "ICON_SMALL_BLUE_ALERT", - "bgColor": "#F5F5F5", - "textSize": "12" - }, - "defaultVisibility": "HIDE" - }, - { - "widgetId": "exploreProperties", - "widgetName": "TITLE_END_ICON_WITH_GRADIENT", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "title": { - "text": "Want to explore properties ?", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#191919", - "substringStyles": [ - { - "substring": "explore properties", - "textColor": "#0B01A6" - } - ], - "textDrawableData": { - "right": { - "iconCode": "ICON_SMALL_WHITE_BG_BLUE_RIGHT_ARROW", - "drawablePadding": 12 - } - } - }, - "endIcon": { - "iconCode": "ICON_WHITE_HOME_WITH_SEARCH", - "iconHeight": "40", - "iconWidth": "40" - }, - "gradient": { - "startGradientColor": "#FFFFFF", - "endGradientColor": "#E5E2F6", - "orientation": "TL_BR" - }, - "cta": { - "url": "hl/homeLoanSteps/HL_DOCUMENTS_STATUS_SCREEN" - } - } - } - ] - }, - "footer": { - "backCta": { - "title": "Back", - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_PERMISSION_SCREEN", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "propertySearchResponse": { - "content": { - "availableItems": [{ - "id": "cf1e1c1f-f13d-42e2-9c83-dc9a2bd1aa07", - "name": "Shriram Wyt Field", - "additionalDataOverview": { - "builderGroupReferenceId": "ecf8c449-1843-4742-9cfe-09658a353e5d", - "builderGroupName": "Shapoorji Palloonji Real Estate Abhijeet One", - "projectStatus": "APPROVED", - "projectCity": "Hoskote", - "numberOfProperties": 8, - "propertyList": [{ - "propertyId": 1672, - "propertyName": "Tower 2", - "propertyReferenceId": "05185208-191c-4b14-9baa-3538597bf5de", - "propertyActive": true - }, - { - "propertyId": 1673, - "propertyName": "Tower 3", - "propertyReferenceId": "8a403b03-f037-49e6-a26f-23a0f12140a0", - "propertyActive": true - }, - { - "propertyId": 1674, - "propertyName": "Tower 4", - "propertyReferenceId": "d76d2d14-1b77-4453-ad28-de6fc10c4ce1", - "propertyActive": true - }, - { - "propertyId": 1675, - "propertyName": "Tower 5", - "propertyReferenceId": "3367d1c8-09d1-4a29-b1ac-4d6e9a2a66a4", - "propertyActive": true - }, - { - "propertyId": 1676, - "propertyName": "Tower 6", - "propertyReferenceId": "75496d2a-d3b6-4fb1-91bd-57e1c726d7c9", - "propertyActive": true - }, - { - "propertyId": 1677, - "propertyName": "Tower 7", - "propertyReferenceId": "d45498d6-1387-451d-97d2-0cf54f1076d1", - "propertyActive": true - }, - { - "propertyId": 1678, - "propertyName": "Tower 8", - "propertyReferenceId": "642048a5-a0be-4c7d-9bf7-99d8c5c9a6af", - "propertyActive": true - }, - { - "propertyId": 1679, - "propertyName": "Tower 9", - "propertyReferenceId": "0ecc87a3-6a2d-4ab1-b772-5befcea731d6", - "propertyActive": true - } - ] - } - }, - { - "id": "8d75744d-94d5-44de-a242-4073c20f5976", - "name": "Shriram Shankari - Lakeside Residences", - "additionalDataOverview": { - "builderGroupReferenceId": "86b5b1c4-0ab0-4941-9289-a82b2e709772", - "builderGroupName": "Shriram Group", - "projectStatus": "APPROVED", - "projectCity": "Chengalpattu", - "numberOfProperties": 7, - "propertyList": [{ - "propertyId": 2030, - "propertyName": "Tower 21", - "propertyReferenceId": "b4427fe3-e39a-438f-8236-104d6addb05c", - "propertyActive": true - }, - { - "propertyId": 2031, - "propertyName": "Tower 22", - "propertyReferenceId": "25345787-bffd-40f2-b000-a513207a4b64", - "propertyActive": true - }, - { - "propertyId": 2032, - "propertyName": "Tower 23", - "propertyReferenceId": "153e341c-3ef4-4f6a-a536-216c403da591", - "propertyActive": true - }, - { - "propertyId": 2033, - "propertyName": "Tower 24", - "propertyReferenceId": "e643da1a-19a7-4859-9707-3175f72edbc7", - "propertyActive": true - }, - { - "propertyId": 2034, - "propertyName": "Tower 25", - "propertyReferenceId": "ee10889a-1691-432c-9dd2-8c82b98b6e64", - "propertyActive": true - }, - { - "propertyId": 2035, - "propertyName": "Tower 26", - "propertyReferenceId": "a44e9e5b-6b25-4387-8d77-bd2e520f5940", - "propertyActive": true - }, - { - "propertyId": 2036, - "propertyName": "Tower 27", - "propertyReferenceId": "8b6b8385-e850-43b3-9e0f-cbde8504ab8c", - "propertyActive": true - } - ] - } - }, - { - "id": "febe7271-a434-40fa-9fa0-08f6c4d68aab", - "name": "Indukuri Lake Shore", - "additionalDataOverview": { - "builderGroupReferenceId": "2f613080-d9e9-4518-a8ca-4e4226d1f81e", - "builderGroupName": "Indukuri Lifespaces", - "projectStatus": "APPROVED", - "projectCity": "Rangareddy", - "numberOfProperties": 1, - "propertyList": [{ - "propertyId": 2455, - "propertyName": "Villa Project", - "propertyReferenceId": "119b38c3-1e83-45eb-bddc-50e2eb29a116", - "propertyActive": true - }] - } - }, - { - "id": "8e2966d0-ea14-460c-95f9-4738d97ac435", - "name": "Oyster (Tower T3) - Shapoorji Pallonji Northern Lights", - "additionalDataOverview": { - "builderGroupReferenceId": "ecf8c449-1843-4742-9cfe-09658a353e5d", - "builderGroupName": "Shapoorji Palloonji Real Estate Abhijeet One", - "projectStatus": "APPROVED", - "projectCity": "Thane", - "numberOfProperties": 1, - "propertyList": [{ - "propertyId": 2555, - "propertyName": "Tower T3", - "propertyReferenceId": "5a3e5d25-7240-444c-8a8b-05388891daaa", - "propertyActive": true - }] - } - }, - { - "id": "3955235d-01e6-4616-a67d-2c23d1664cd1", - "name": "Shreerath Apartments", - "additionalDataOverview": { - "builderGroupReferenceId": "f96e96ac-e847-4f9e-bb4e-b97a8cd9f88c", - "builderGroupName": "Unnati Buildtech", - "projectStatus": "APPROVED", - "projectCity": "Qutubullapur", - "numberOfProperties": 1, - "propertyList": [{ - "propertyId": 2814, - "propertyName": "Single Tower", - "propertyReferenceId": "275586ab-a857-4727-8fe6-21622a0c808e", - "propertyActive": true - }] - } - }, - { - "id": "7b7cf3f1-d1d2-4056-8790-ae050f78899d", - "name": "Shripal Shanti Phase 1", - "additionalDataOverview": { - "builderGroupReferenceId": "ced6190b-d89f-4140-a328-61382b7577c1", - "builderGroupName": "Shripal Group", - "projectStatus": "APPROVED", - "projectCity": "Vasai", - "numberOfProperties": 1, - "propertyList": [{ - "propertyId": 3096, - "propertyName": "Shripal Shanti Phase 1", - "propertyReferenceId": "897a0aba-d93f-41de-891d-e529e5a24449", - "propertyActive": true - }] - } - }, - { - "id": "53862c80-1b05-4dfe-a371-c1847f48349a", - "name": "Ideas Shobanath", - "additionalDataOverview": { - "builderGroupReferenceId": "3bc377f1-e634-48df-bb43-b194d40cfc60", - "builderGroupName": "Idea Estates", - "projectStatus": "APPROVED", - "projectCity": "Hyderabad", - "numberOfProperties": 2, - "propertyList": [{ - "propertyId": 3097, - "propertyName": "Block A", - "propertyReferenceId": "c4eb1c23-05b3-407c-9c25-dd6de5fd157c", - "propertyActive": true - }, - { - "propertyId": 3098, - "propertyName": "Block B", - "propertyReferenceId": "e52cc5d5-58c0-4a9a-9c9b-bdc9139b0971", - "propertyActive": true - } - ] - } - }, - { - "id": "bce590e7-943b-42a0-b4ba-4cb4d6b14162", - "name": "Shriram Chirping Grove 1 and 2", - "additionalDataOverview": { - "builderGroupReferenceId": "86b5b1c4-0ab0-4941-9289-a82b2e709772", - "builderGroupName": "Shriram Group", - "projectStatus": "APPROVED", - "projectCity": "Anekal", - "numberOfProperties": 1, - "propertyList": [{ - "propertyId": 1983, - "propertyName": "Villa", - "propertyReferenceId": "f0d8496e-9db6-46c8-96dd-d32eb8ce88cf", - "propertyActive": true - }] - } - }, - { - "id": "adfab6bb-c827-4654-a03b-a3452b4184f6", - "name": "Shripal One", - "additionalDataOverview": { - "builderGroupReferenceId": "ced6190b-d89f-4140-a328-61382b7577c1", - "builderGroupName": "Shripal Group", - "projectStatus": "APPROVED", - "projectCity": "Vasai", - "numberOfProperties": 1, - "propertyList": [{ - "propertyId": 3144, - "propertyName": "Shripal one", - "propertyReferenceId": "f23315ac-5db8-45e7-89ad-f8351ae79ca7", - "propertyActive": true - }] - } - }, - { - "id": "f93d9360-b6cc-4cc1-ab88-aea833840896", - "name": "Shree Siddhivinayak II", - "additionalDataOverview": { - "builderGroupReferenceId": "ac9dd0f0-37e9-414e-af14-5c693d07c3e9", - "builderGroupName": "Simco Group", - "projectStatus": "APPROVED", - "projectCity": "Bhiwandi", - "numberOfProperties": 1, - "propertyList": [{ - "propertyId": 3147, - "propertyName": "Shree Siddhivinayak II", - "propertyReferenceId": "14d34b39-3c07-49b8-842d-9c3598c4bd6d", - "propertyActive": true - }] - } - }, - { - "id": "33898b11-8546-4d46-92e6-a8b3d56af3f6", - "name": "Shriram Whiet Field", - "additionalDataOverview": { - "builderGroupReferenceId": "86b5b1c4-0ab0-4941-9289-a82b2e709772", - "builderGroupName": "Shriram Group", - "projectStatus": "APPROVED", - "projectCity": "Hoskote", - "numberOfProperties": 0, - "propertyList": [] - } - } - ] - }, - "nextPageNumber": 1, - "isLastPage": false - }, - "permissionScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Allow App Permissions", - "subtitle": "We need this to check your eligibility", - "showSideTracker": false - } - }, - "content": { - "widgets": [ - { - "widgetId": "PermissionFailureNote", - "widgetName": "TITLE_SUBTITLE_RIGHT_ICON", - "widgetLayoutParams": { - "margin": "0,16,0,24", - "rootPadding": "16,16,16,16", - "backgroundColor": "#FFF3F0", - "cornerRadius": 8 - }, - "widgetData": { - "endIcon": { - "iconCode": "ICON_HL_SMALL_RED_WHITE_BG_RIGHT_ARROW", - "iconHeight": "24", - "iconWidth": "24" - }, - "title": { - "text": "All permissions are mandatory to complete the process", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#191919" - }, - "subTitle": { - "text": "Phone settings > Apps > Navi > Permissions", - "font": "NAVI_SEMI_BOLD", - "size": 10, - "textColor": "#FF5732" - } - } - }, - { - "widgetId": "SMS", - "widgetName": "APP_PERMISSION_ITEM", - "widgetData": { - "subTitle": { - "text": "Helps understand your financial profile", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "states": { - "defaultState": { - "title": { - "text": "SMS", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "startIcon": { - "iconCode": "ICON_MESSAGE_COLOURED", - "iconHeight": "32", - "iconWidth": "32" - } - }, - "success": { - "title": { - "text": "SMS", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "startIcon": { - "iconCode": "ICON_MESSAGE_COLOURED_SUCCESS", - "iconHeight": "32", - "iconWidth": "42" - } - }, - "failure": { - "title": { - "text": "SMS", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#EF0000" - }, - "startIcon": { - "iconCode": "ICON_MESSAGE_COLOURED_FAILURE", - "iconHeight": "32", - "iconWidth": "42" - } - } - } - } - }, - { - "widgetId": "CONTACTS", - "widgetName": "APP_PERMISSION_ITEM", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "subTitle": { - "text": "To identify fraud within network of contacts", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "states": { - "defaultState": { - "title": { - "text": "Contacts", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "startIcon": { - "iconCode": "ICON_CALL_COLOURED", - "iconHeight": "32", - "iconWidth": "32" - } - }, - "success": { - "title": { - "text": "Contacts", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "startIcon": { - "iconCode": "ICON_CALL_COLOURED_SUCCESS", - "iconHeight": "32", - "iconWidth": "42" - } - }, - "failure": { - "title": { - "text": "Contacts", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#EF0000" - }, - "startIcon": { - "iconCode": "ICON_CALL_COLOURED_FAILURE", - "iconHeight": "32", - "iconWidth": "42" - } - } - } - } - }, - { - "widgetId": "LOCATION", - "widgetName": "APP_PERMISSION_ITEM", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "subTitle": { - "text": "To check loan serviceability in your area", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "states": { - "defaultState": { - "title": { - "text": "Location", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "startIcon": { - "iconCode": "ICON_LOCATION_COLOURED", - "iconHeight": "32", - "iconWidth": "32" - } - }, - "success": { - "title": { - "text": "Location", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "startIcon": { - "iconCode": "ICON_LOCATION_COLOURED_SUCCESS", - "iconHeight": "32", - "iconWidth": "42" - } - }, - "failure": { - "title": { - "text": "Location", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#EF0000" - }, - "startIcon": { - "iconCode": "ICON_LOCATION_COLOURED_FAILURE", - "iconHeight": "32", - "iconWidth": "42" - } - } - } - } - }, - { - "widgetId": "DEVICE", - "widgetName": "APP_PERMISSION_ITEM", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "subTitle": { - "text": "To collect your primary and social account information to verify your identity", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "states": { - "defaultState": { - "title": { - "text": "Device", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "startIcon": { - "iconCode": "ICON_DEVICE_COLOURED", - "iconHeight": "32", - "iconWidth": "32" - } - }, - "success": { - "title": { - "text": "Device", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "startIcon": { - "iconCode": "ICON_DEVICE_COLOURED_SUCCESS", - "iconHeight": "32", - "iconWidth": "42" - } - }, - "failure": { - "title": { - "text": "Device", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#EF0000" - }, - "startIcon": { - "iconCode": "ICON_DEVICE_COLOURED_FAILURE", - "iconHeight": "32", - "iconWidth": "42" - } - } - } - } - }, - { - "widgetId": "PermissionDefaultNote", - "widgetName": "LOAN_STEP_ITEM", - "widgetLayoutParams": { - "margin": "0,16,0,0", - "rootPadding": "16,10,16,10", - "backgroundColor": "#F5F5F5", - "cornerRadius": 8 - }, - "widgetData": { - "title": { - "text": "Important Note:", - "font": "NAVI_EXTRA_BOLD", - "size": 12, - "alignment": "CENTER", - "textColor": "#FF5732" - }, - "subTitle": { - "text": "All permissions are mandatory to complete the process", - "font": "NAVI_SEMI_BOLD", - "size": 10, - "alignment": "CENTER", - "textColor": "#191919" - } - } - } - ], - "knowMoreContent": { - "infoProviderText": { - "text": "Your data is 100% safe. Know more", - "textColor": "#6B6B6B", - "font": "NAVI_REGULAR", - "size": 10, - "substringStyles": [ - { - "substring": "Know more", - "textColor": "#FF5732", - "underline": true - } - ], - "textDrawableData": { - "left": { - "iconCode": "ICON_HL_SAFETY_SMALL_GREEN_TICK" - } - } - }, - "bottomSheetData": { - "iconCode": "ICON_BLUE_BORDER_ALERT", - "title": { - "text": "Know more", - "textColor": "#1A1A1A", - "font": "NAVI_BOLD", - "size": 18 - }, - "subTitle": { - "text": "Navi takes Data Security and Privacy seriously. Our Information Security Program is based on a holistic approach involving People, Process and Technology. \n\nWe follow industry best practices to scale, protect and secure data from the ever-growing threats.", - "textColor": "#4D4D4D", - "font": "NAVI_REGULAR", - "size": 14 - }, - "footer": { - "cta": { - "title": "Okay, got it" - } - } - } - } - }, - "footer": { - "nextCta": { - "title": "Allow", - "url": "hl/homeLoanLoader", - "parameters": [ - { - "key": "action", - "value": "IPA" - }, - { - "key": "loanApplicationId", - "value": "a70c4638-9063-43ff-8737-9aa7ec20624e" - }, - { - "key": "referenceId", - "value": "3dd6e316-8806-4d7a-a2cb-2b32f18d7e54" - } - ], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "backCta": { - "title": "Back", - "url": "hl/homeLoanLoader", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "formScreenCoApplicantDetailsResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Add co-applicant", - "subtitle": "We will send a verification link to this number.", - "showSideTracker": false - } - }, - "content": { - "widgets": [ - { - "widgetId": "name", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "Co-applicant name", - "titleInfo": "(As per PAN card)", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Enter full name", - "inputType": "textPersonName|textCapWords", - "maxCharLength": 32, - "actionAvailable": false, - "convertToCaps": false - }, - "validation": [ - { - "name": "REGEX", - "regex": "([a-zA-Z\\s]{1,})", - "errorText": "Please enter your full name" - }, - { - "name": "TEXT_MIN_LENGTH", - "minLength": 3, - "errorText": "Minimum 3 characters required" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "phoneNumber", - "widgetName": "LABEL_WITH_FIXED_HINT_INPUT_WIDGET", - "widgetData": { - "title": "Co-applicant mobile number", - "isNewWidget": true, - "inputTextFixedHintItemData": { - "inputType": "phone", - "maxCharLength": 10, - "format": "PHONE", - "actionAvailable": false, - "fixedHint": "+91", - "convertToCaps": false - }, - "validation": [ - { - "name": "REGEX", - "regex": "^([1-9]{1}[0-9]{9})$", - "errorText": "Please enter valid phone number" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "coApplicantInfoNote", - "widgetName": "NOTE_WITH_BULLET_POINTS", - "widgetLayoutParams": { - "margin": "0, 32, 0, 0", - "backgroundColor": "#F5F5F5", - "cornerRadius": 8 - }, - "widgetData": { - "title": { - "text": "Note:", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 12 - }, - "infoList": [ - { - "text": "Co-owner of your property must be a co-applicant.", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 10, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "Adding co-applicant might improve your offer", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 10, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - } - ] - } - } - ] - }, - "footer": { - "progress": 50, - "cta": { - "title": "Send link", - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "kycAddressFormScreen": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": {} - }, - "trackerHeader": { - "title": "KYC", - "subtitle": "KYC is required to complete the process", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "Flat", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "Flat/House number", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Address line 1", - "inputType": "text", - "maxCharLength": 50, - "actionAvailable": false, - "convertToCaps": false - }, - "validation": [ - { - "name": "TEXT_MIN_LENGTH", - "minLength": 7, - "errorText": "Minimum 7 characters required" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "Street", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "Street", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Address line 2", - "inputType": "text", - "maxCharLength": 50, - "actionAvailable": false, - "convertToCaps": false - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "This field is mandatory" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "Locality/Area", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "Street", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Address line 3", - "inputType": "text", - "maxCharLength": 50, - "actionAvailable": false, - "convertToCaps": false - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "This field is mandatory" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "PostalCode", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "Postal Code", - "isNewWidget": true, - "inputTextItemData": { - "hint": "900213", - "inputType": "number", - "maxCharLength": 6, - "actionAvailable": false, - "convertToCaps": false - }, - "validation": [ - { - "name": "REGEX", - "regex": "^[1-9][0-9]{5}$", - "errorText": "Incorrect PIN code" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "City/District", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "City/District", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Bengaluru", - "inputType": "text", - "maxCharLength": 30, - "actionAvailable": false, - "convertToCaps": false - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "This field is mandatory" - } - ] - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "State", - "widgetName": "LABELED_TEXT_INPUT_WIDGET_V2", - "widgetData": { - "title": "State", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Example: Karnataka", - "inputType": "text", - "maxCharLength": 30, - "actionAvailable": false, - "convertToCaps": false - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "This field is mandatory" - } - ] - }, - "defaultVisibility": "SHOW" - } - ] - }, - "footer": { - "progress": 40, - "backCta": { - "title": "Cancel", - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "nextCta": { - "title": "Add address", - "url": "hl/homeLoanSteps/HL_KYC_DETAILS", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "homeLoanLoaderResponse": { - "requestType": "GENERATE_IPA", - "loaderPageDefaultData": { - "title": { - "text": "Please wait…", - "textColor": "#1A1A1A", - "font": "NAVI_BOLD", - "size": 16 - }, - "subTitle": { - "text": "We are generating an offer for you", - "textColor": "#6B6B6B", - "font": "NAVI_SEMI_BOLD", - "size": 14 - } - }, - "successCta": { - "url": "hl/homeLoanSteps/HL_WIDGETIZED_INFO" - }, - "failureCta": { - "url": "hl/homeLoanIntro" - }, - "loaderPageTimeOutData": { - "title": { - "text": "Sorry we couldn’t process your request", - "textColor": "#1A1A1A", - "font": "NAVI_BOLD", - "size": 16 - }, - "subTitle": { - "text": "Please try again after sometime", - "textColor": "#6B6B6B", - "font": "NAVI_SEMI_BOLD", - "size": 14 - } - }, - "showAnimation": false, - "showLoader": true - }, - "formScreenEditEmiDetailsResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Basic Details", - "subtitle": "We need your details to give a loan offer", - "showSideTracker": true - } - }, - "content": { - "interestRate": 7.25, - "keyValueTextField": { - "key": { - "text": "EMI", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "value": { - "text": "₹ ", - "font": "NAVI_BOLD", - "size": 20, - "textColor": "#191919" - } - }, - "widgets": [ - { - "widgetId": "propertyCost", - "widgetName": "LABEL_WITH_FIXED_HINT_INPUT_WIDGET", - "widgetData": { - "title": "Property cost", - "isNewWidget": true, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter property cost" - }, - { - "name": "REGEX", - "regex": "^[+]?([0-9]+([.][0-9]*)?|[.][0-9]+)$", - "errorText": "Please enter valid amount" - }, - { - "name": "VALUE_LOWER_RANGE_CHECK", - "errorText": "Property cost cannot be less than 11 lakhs", - "value": "1100000" - } - ], - "inputTextFixedHintItemData": { - "inputType": "number", - "hint": "Enter amount", - "maxCharLength": 18, - "format": "MONEY", - "actionAvailable": false, - "fixedHint": "₹", - "convertToCaps": false - } - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "loanAmount", - "widgetName": "LABEL_WITH_FIXED_HINT_INPUT_WIDGET", - "widgetData": { - "title": "Loan amount", - "titleInfo": "(Max amount: ₹1 Crore)", - "isNewWidget": true, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please enter your loan requirement" - }, - { - "name": "REGEX", - "regex": "^[+]?([0-9]+([.][0-9]*)?|[.][0-9]+)$", - "errorText": "Please enter valid amount" - }, - { - "name": "VALUE_LOWER_RANGE_CHECK", - "errorText": "Loan requirement cannot be less than 0", - "value": "0" - }, - { - "name": "WIDGET_VALUE_DEPENDANT_PERCENTAGE_UPPER_RANGE", - "widgetIdPercentageMap": { - "propertyCost": 90 - }, - "errorText": "Loan upto 90% of Property Value can be availed" - }, - { - "name": "VALUE_LOWER_RANGE_CHECK", - "errorText": "Loan amount cannot be less than 10 thousand", - "value": "10000" - } - ], - "inputTextFixedHintItemData": { - "inputType": "number", - "hint": "Enter amount", - "maxCharLength": 18, - "format": "MONEY", - "actionAvailable": false, - "fixedHint": "₹", - "convertToCaps": false - } - }, - "defaultVisibility": "SHOW" - }, - { - "widgetId": "loanTenure", - "widgetName": "TOOL_TIP_SLIDER_WIDGET", - "widgetData": { - "title": "Loan tenure", - "toolTipSliderWidgetData": { - "inputSuffix": " years", - "minValue": 3, - "maxValue": 30, - "savedValue": 15 - } - }, - "defaultVisibility": "SHOW" - } - ] - }, - "footer": { - "progress": 50, - "nextCta": { - "title": "Confirm", - "url": "hl/homeLoanSteps/HL_PERMISSION_SCREEN", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "nextWidgetizedBottomSheetData": { - "title": { - "text": "Review property details", - "textColor": "#191919", - "font": "NAVI_BOLD", - "size": 18 - }, - "widgets": [ - { - "widgetId": "LoanDetails", - "widgetName": "ELEVATED_LINE_ITEMS_WITH_DIVIDER", - "widgetData": { - "keyValueFields": [ - { - "key": { - "text": "Property type :", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "value": { - "text": "Flat", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#191919" - } - }, - { - "key": { - "text": "Property name :", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "value": { - "text": "Prestige Oakwood", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#191919" - } - }, - { - "key": { - "text": "Type of purchase :", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "value": { - "text": "From builder", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#191919" - } - }, - { - "key": { - "text": "Flat number :", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "value": { - "text": "2204", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#191919" - } - } - ] - } - } - ], - "footer": { - "cta": { - "title": "No changes required", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "bottomCta": { - "title": "Update property details", - "url": "hl/hlIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - } - }, - "coApplicantScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanSteps/HL_WIDGETIZED_INFO", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Add co-applicant", - "showSideTracker": false - } - }, - "content": { - "widgets": [ - { - "widgetId": "addCoApplicant", - "widgetName": "TITLE_WITH_END_ICON", - "widgetData": { - "title": { - "text": "Add new co-applicant", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 14 - }, - "endIcon": { - "iconCode": "ICON_RED_BORDER_PERSON_WITH_PLUS", - "iconHeight": "24", - "iconWidth": "24" - }, - "drawableData": { - "cornerRadius": 8, - "backgroundColor": "#FFFFFF", - "strokeWidth": 1, - "strokeColor": "#E3E5E5" - }, - "cta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "OR", - "widgetName": "TITLE_V2", - "widgetLayoutParams": { - "margin": "0, 24, 0, 0" - }, - "widgetData": { - "title": { - "text": "OR", - "font": "NAVI_SEMI_BOLD", - "textColor": "#1A1A1A", - "size": 14, - "alignment": "CENTER" - } - } - }, - { - "widgetId": "coApplicantTextList", - "widgetName": "TITLE_V2", - "widgetLayoutParams": { - "margin": "0, 24, 0, 0" - }, - "widgetData": { - "title": { - "text": "Select from previously added co-applicants", - "font": "NAVI_SEMI_BOLD", - "textColor": "#444444", - "size": 14 - } - } - }, - { - "widgetId": "CoApplicant", - "widgetName": "TITLE_WITH_END_ICON", - "widgetLayoutParams": { - "margin": "0, 16, 0, 0" - }, - "widgetData": { - "title": { - "text": "Anubhab Bora (Spouse)", - "font": "NAVI_SEMI_BOLD", - "textColor": "#191919", - "size": 14, - "substringStyles": [ - { - "substring": "(Spouse)", - "textColor": "#6B6B6B" - } - ] - }, - "endIcon": { - "iconCode": "GREY_ROUNDED_RIGHT_ARROW_MEDIUM_ICON", - "iconHeight": "24", - "iconWidth": "24" - }, - "drawableData": { - "cornerRadius": 8, - "backgroundColor": "#FFFFFF", - "strokeWidth": 1, - "strokeColor": "#E3E5E5" - }, - "bodyMap": { - "referenceId": "8e03f4b9-8be7-48ac-b343-d45748ee1d45", - "action": "ACTIVATE_CO_APPLICANT", - "loanApplicationId": "3fc96f32-fbd3-4b41-b004-2bb04ce803d4" - }, - "cta": { - "url": "hl/homeLoanLoader" - } - } - }, - { - "widgetId": "coApplicant", - "widgetName": "TITLE_WITH_END_ICON", - "widgetLayoutParams": { - "margin": "0, 16, 0, 0" - }, - "widgetData": { - "title": { - "text": "Sonia Bapna (Mother)", - "font": "NAVI_SEMI_BOLD", - "textColor": "#191919", - "size": 14, - "substringStyles": [ - { - "substring": "(Mother)", - "textColor": "#6B6B6B" - } - ] - }, - "endIcon": { - "iconCode": "GREY_ROUNDED_RIGHT_ARROW_MEDIUM_ICON", - "iconHeight": "24", - "iconWidth": "24" - }, - "drawableData": { - "cornerRadius": 8, - "backgroundColor": "#FFFFFF", - "strokeWidth": 1, - "strokeColor": "#E3E5E5" - } - } - }, - { - "widgetId": "coApplicantInfoNote", - "widgetName": "NOTE_WITH_BULLET_POINTS", - "widgetLayoutParams": { - "margin": "0, 32, 0, 0", - "backgroundColor": "#F5F5F5", - "cornerRadius": 8 - }, - "widgetData": { - "title": { - "text": "Note:", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 12 - }, - "infoList": [ - { - "text": "Co-owner of your property must be a co-applicant.", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 10, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "Adding co-applicant might improve your offer", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 10, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - } - ] - } - } - ] - } - }, - "offerAnimationResponse": { - "content": { - "cta": { - "url": "hl/homeLoanSteps/HL_WIDGETIZED_INFO" - }, - "widgets": [ - { - "widgetId": "EligibilityOffer", - "widgetName": "HOME_LOAN_OFFER_INFO", - "widgetData": { - "centerTopIconCode": { - "iconCode": "ICON_HL_RED_LARGE_CONFETTI", - "iconHeight": "56", - "iconWidth": "56" - }, - "congratsText": { - "text": "Congratulations!", - "font": "NAVI_BOLD", - "size": 18, - "textColor": "#14BC51" - }, - "titleText": { - "text": "You are eligible for loan amount upto ", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "amountText": { - "text": "₹ 1 Crore", - "font": "NAVI_EXTRA_BOLD", - "size": 32, - "textColor": "#FF5732" - } - } - } - ] - } - }, - "rejectionScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": {} - }, - "trackerHeader": { - "title": "Eligibility offer", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "ApplicationNotApprovedWidget", - "widgetName": "APPLICATION_NOT_APPROVED", - "widgetLayoutParams": { - "margin": "0,0,0,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_SAD_FLOWER_POT", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Application not approved", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "subTitle": { - "text": "Sorry, we are not able to approve your loan application currently.", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#1A1A1A" - }, - "startText": { - "text": "You can try again after", - "font": "NAVI_SEMI_BOLD", - "size": 16, - "textColor": "#6B6B6B" - }, - "midText": { - "text": "60", - "font": "NAVI_EXTRA_BOLD", - "size": 16, - "textColor": "#FF5732" - }, - "endText": { - "text": "Days", - "font": "NAVI_SEMI_BOLD", - "size": 16, - "textColor": "#FF5732" - } - } - }, - { - "widgetId": "possibleText", - "widgetName": "TITLE_V2", - "widgetLayoutParams": { - "margin": "16, 16, 0, 0" - }, - "widgetData": { - "title": { - "text": "Possible Solutions:", - "font": "NAVI_BOLD", - "textColor": "#191919", - "size": 18 - } - } - }, - { - "widgetId": "addCoApplicant", - "widgetName": "ELEVATED_TEXT_WITH_ICONS", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_PERSON_WITH_RED_PLUS_GREY_BG", - "iconHeight": "40", - "iconWidth": "40" - }, - "endIcon": { - "iconCode": "GREY_ROUNDED_RIGHT_ARROW_MEDIUM_ICON", - "iconHeight": "24", - "iconWidth": "24" - }, - "title": { - "text": "Add co-applicant", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "subTitle": { - "text": "This can approve your application", - "font": "NAVI_REGULAR", - "size": 12, - "textColor": "#444444" - } - } - }, - { - "widgetId": "emptyField", - "widgetName": "TITLE_V2", - "widgetLayoutParams": { - "margin": "0, 24, 0, 0" - }, - "widgetData": { - "title": { - "text": "hello", - "textColor": "#ffffff", - "size": 16 - }, - "backgroundColor": "#ffffff" - } - }, - { - "widgetId": "possibleText", - "widgetName": "TITLE_V2", - "widgetLayoutParams": { - "margin": "20, 24, 0, 0" - }, - "widgetData": { - "title": { - "text": "Possible Reasons:", - "font": "NAVI_BOLD", - "textColor": "#1A1A1A", - "size": 16 - } - } - }, - { - "widgetId": "expandableTitleDesc", - "widgetName": "EXPANDABLE_TITLE_DESC", - "widgetLayoutParams": { - "margin": "0,30,0,0" - }, - "widgetData": { - "endIcon": { - "iconCode": "ICON_SMALL_DOWNWARD_GREY_ARROW", - "iconHeight": "12", - "iconWidth": "20" - }, - "title": { - "text": "Low credit bureau score", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#1A1A1A" - }, - "description": { - "text": "A high bureau score (typically above 700) is preferred for a loan to be approved. Low bureau score might be a result of previous defaults on loans or credit cards, high credit card limit utilization, irregular due payments, high unsecured debts, and high number of loan enquiries.\n\nTip: Regularly check your credit report and look for the above mentioned elements which are taking your score up or down. In case of any issues, try to fix it as soon as possible", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#787878" - } - } - }, - { - "widgetId": "expandableTitleDesc", - "widgetName": "EXPANDABLE_TITLE_DESC", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "endIcon": { - "iconCode": "ICON_SMALL_DOWNWARD_GREY_ARROW", - "iconHeight": "12", - "iconWidth": "20" - }, - "title": { - "text": "Lack of credit history", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#1A1A1A" - }, - "description": { - "text": "Having a long history in the credit bureau shows financial maturity and positively contributes to a healthy credit score.\n\nTip: Regular payments of long term loans and credit cards help in building a mature credit profile. It is good to start with a credit card and maintain low to medium credit limit utilization.", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#787878" - } - } - }, - { - "widgetId": "expandableTitleDesc", - "widgetName": "EXPANDABLE_TITLE_DESC", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "endIcon": { - "iconCode": "ICON_SMALL_DOWNWARD_GREY_ARROW", - "iconHeight": "12", - "iconWidth": "20" - }, - "title": { - "text": "Poor loan repayment history", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#1A1A1A" - }, - "description": { - "text": "Non-payment, late payments of your EMIs and credit card bills negatively affect your credit score.\n\nTip: Always pay your EMI and credit card dues on time. If you have any outstanding payments, clear them as soon as possible.", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#787878" - } - } - }, - { - "widgetId": "expandableTitleDesc", - "widgetName": "EXPANDABLE_TITLE_DESC", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "endIcon": { - "iconCode": "ICON_SMALL_DOWNWARD_GREY_ARROW", - "iconHeight": "12", - "iconWidth": "20" - }, - "title": { - "text": "High existing debts", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#1A1A1A" - }, - "description": { - "text": "Having a high number of existing debt obligations reduces your ability to have sufficient money left for further loan repayments.\n\nTip: Maintain a healthy debt-to-income ratio by assuring that your monthly debt obligations are not very high % of your income. Avoid very high EMI amounts.\n\nTip: Always pay your EMI and credit card dues on time. If you have any outstanding payments, clear them as soon as possible.", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#787878" - } - } - }, - { - "widgetId": "expandableTitleDesc", - "widgetName": "EXPANDABLE_TITLE_DESC", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "endIcon": { - "iconCode": "ICON_SMALL_DOWNWARD_GREY_ARROW", - "iconHeight": "12", - "iconWidth": "20" - }, - "title": { - "text": "High number of loan enquiries", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#1A1A1A" - }, - "description": { - "text": "Too many and too frequent loan enquiries are perceived as a sign of inability in managing your finances and thus constant need for credit.\n\nTip: Keep sufficient time period between your loan applications and try to complete your current obligations before applying for additional loans.\n\nTip: Maintain a healthy debt-to-income ratio by assuring that your monthly debt obligations are not very high % of your income. Avoid very high EMI amounts.\n\nTip: Always pay your EMI and credit card dues on time. If you have any outstanding payments, clear them as soon as possible.", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#787878" - } - } - } - ] - } - }, - "incomeVerificationResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "home", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": {} - }, - "trackerHeader": { - "title": "Income Verification", - "subtitle": "We need your details to give a loan offer", - "showSideTracker": true - }, - "metadata": { - "serviceProvider": "PERFIOS", - "returnUrl": "https://www.navi.com/" - } - }, - "content": { - "searchWidgetData": { - "widgetId": "city", - "widgetName": "LABEL_WITH_INPUT_SEARCH_WIDGET", - "widgetData": { - "title": "Bank name", - "isNewWidget": true, - "inputTextItemData": { - "hint": "Search your bank..", - "inputType": "text", - "maxCharLength": 50, - "actionAvailable": false, - "noResultText": "Bank not found", - "convertToCaps": false - }, - "infoCta": { - "cta": { - "title": "Change" - }, - "title": { - "text": "Change", - "span": [ - { - "spanColor": "#FF5732", - "fontName": "NAVI_BOLD", - "fontSize": 14 - } - ] - } - }, - "infoTextFieldData": { - "text": "*Use your income / salary account", - "textColor": "#6B6B6B", - "font": "NAVI_REGULAR", - "size": 10 - }, - "validation": [ - { - "name": "NOT_EMPTY", - "errorText": "Please select your bank" - } - ] - } - }, - "incomeVerificationTypesData": { - "title": "Select an option", - "verificationTypes": { - "otpBased": { - "id": "OTP", - "title": "OTP based verification", - "subTitle": "From RBI licensed Account Aggregator", - "cta": { - "title": "", - "url": "hl/homeLoanSteps/HL_ACCOUNT_AGGREGATOR", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "infoBottomSheetData": { - "widgets": [ - { - "widgetId": "title", - "widgetName": "TITLE_V2", - "widgetLayoutParams": { - "margin": "0, 0, 0, 0" - }, - "widgetData": { - "title": { - "text": "What is Account aggregator?", - "font": "NAVI_BOLD", - "size": 18, - "textColor": "#1A1A1A" - } - } - }, - { - "widgetId": "description", - "widgetName": "TITLE_V2", - "widgetLayoutParams": { - "margin": "0, 8, 0, 0" - }, - "widgetData": { - "title": { - "text": "It is an RBI licensed framework which helps to \nread and verify end-to-end bank statement with \nuser’s consent.", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "bulletPoints", - "widgetName": "NOTE_WITH_BULLET_POINTS", - "widgetLayoutParams": { - "margin": "0,16,0,0", - "backgroundColor": "#F5F5F5", - "cornerRadius": 8 - }, - "widgetData": { - "title": { - "text": "Why is this recommended?", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "infoList": [ - { - "text": "Quick and easy ", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#011A48", - "textDrawableData": { - "left": { - "iconCode": "ICON_HL_RED_TICK_SMALL" - } - } - }, - { - "text": "100% safe and secure", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#011A48", - "textDrawableData": { - "left": { - "iconCode": "ICON_HL_RED_TICK_SMALL" - } - } - } - ] - } - } - ], - "footer": { - "cta": { - "title": "Okay, got it", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - }, - "netBankingBased": { - "id": "NET_BANKING", - "title": "Use netbanking" - }, - "statementBased": { - "id": "STATEMENT_UPLOAD", - "title": "Upload bank statement", - "subTitle": "Last 12 months of your bank statement" - } - } - } - }, - "footer": { - "progress": 50, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_WIDGETIZED_INFO", - "parameters": [ - { - "key": "action", - "value": "FINANCIAL_DATA_STATUS" - }, - { - "key": "loanApplicationId", - "value": "02808d26-5396-462d-8aa8-67861f90bb4d" - }, - { - "key": "referenceId", - "value": "e30c49fa-a7c2-4ef2-98bb-6638c970ad17" - } - ], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "backCta": { - "title": "Back", - "url": "home", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "accountAggregatorResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "home", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": {} - }, - "trackerHeader": { - "title": "Income Verification", - "subtitle": "We need your details to give a loan offer", - "showSideTracker": true - } - }, - "content": { - "successCta": { - "url": "hl/homeLoanSteps/HL_INCOME_VERIFICATION" - }, - "failureCta": { - "url": "hl/homeLoanSteps/HL_INCOME_VERIFICATION" - }, - "changeBankCta": { - "url": "hl/homeLoanSteps/HL_INCOME_VERIFICATION" - } - }, - "footer": { - "progress": 50, - "backCta": { - "title": "Back", - "url": "hl/homeLoanSteps/HL_INCOME_VERIFICATION", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "nextCta": { - "title": "Next", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "applicantsScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "home", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Income Verification", - "subtitle": "We need your details to give a loan offer", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "Applicant", - "widgetName": "TITLE_STATUS_WITH_FOOTER_CARD", - "widgetLayoutParams": { - "margin": "0,16,0,0" - }, - "widgetData": { - "title": { - "text": "Sukriti Dhariwal", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "subTitle": { - "text": "(Applicant)", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "endIcon": { - "iconCode": "ICON_HL_MEDIUM_CIRCLE_GREEN_TICK", - "iconWidth": 24, - "iconHeight": 24 - }, - "cta": { - "url": "hl/homeLoanSteps/HL_INCOME_VERIFICATION", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "CoApplicant", - "widgetName": "TITLE_STATUS_WITH_FOOTER_CARD", - "widgetLayoutParams": { - "margin": "0,16,0,0" - }, - "widgetData": { - "title": { - "text": "Deeksha Srivastava", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "subTitle": { - "text": "(Co-Applicant)", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B" - }, - "endIcon": { - "iconCode": "ICON_RIGHT_ARROW_IN_ORANGE_CIRCLE", - "iconWidth": 24, - "iconHeight": 24 - }, - "cta": { - "url": "hl/homeLoanSteps/HL_INCOME_VERIFICATION", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - ] - }, - "footer": { - "progress": 75, - "backCta": { - "title": "Back", - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_KYC_DETAILS", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "documentUploadResponse2": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "home", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": {} - } - }, - "content": { - "title": "Sanction Plan", - "subTitle": "A document that certifies Construction Plans approved as per Municipal Bye laws from competent development authority", - "uploadDetails": { - "title": "Sanction Plan", - "maxSizeInMB": 10, - "maxDocuments": 5, - "validDocTypes": [ - ".pdf", - ".jpg", - ".jpeg", - ".png" - ], - "uploadedDocs": [ - ], - "rejectedTitle": "Download rejected documents", - "rejectedDocs": [ - { - "uri": "https://www.africau.edu/images/default/sample.pdf" - } - ] - }, - "notesList": [ - { - "text": "Your document file size should be smaller than 10MB", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#4D4D4D", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "Supported file formats: pdf, jpg, jpeg, png", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#4D4D4D", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - } - ], - "rejectionReason": { - "title": { - "text": "Reason for rejection:", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 12 - }, - "infoList": [ - { - "text": "Document contains incorrect details", - "font": "NAVI_SEMI_BOLD", - "textColor": "#444444", - "size": 12, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "Document was blurry", - "font": "NAVI_SEMI_BOLD", - "textColor": "#444444", - "size": 12, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - } - ], - "bgColor": "#F5F5F5" - }, - "approvedProperty": false - }, - "footer": { - "cta": { - "title": "Done", - "url": "hl/homeLoanIntro", - "parameters": [ - { - "key": "loanApplicationId", - "value": "0becbd50-404b-4869-9ea3-04ecaa325eeb" - }, - { - "key": "referenceId", - "value": "eb866c41-2a2f-4877-b194-208bd52afb36" - } - ], - "analyticsEventProperties": { - "name": "HL_Property_Doc_Upload_Submit", - "properties": { - "apf": "false", - "homeLoanType": "HL_NEW", - "doc_name": "HL_SANCTION_PLAN" - } - } - }, - "progress": 50 - } - }, - "documentUploadResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "home", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": {} - } - }, - "content": { - "title": "Sanction Plan", - "subTitle": "A document that certifies Construction Plans approved as per Municipal Bye laws from competent development authority", - "uploadDetails": { - "title": "Sanction Plan", - "maxSizeInMB": 10, - "maxDocuments": 5, - "validDocTypes": [ - ".pdf", - ".jpg", - ".jpeg", - ".png" - ], - "uploadedDocs": [ - ] - }, - "notesList": [ - { - "text": "Your document file size should be smaller than 10MB", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#4D4D4D", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "Supported file formats: pdf, jpg, jpeg, png", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#4D4D4D", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - } - ], - "notePrompt": { - "title": { - "text": "Note:", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 12 - }, - "infoList": [ - { - "text": "You can also submit the document later along with property documents", - "font": "NAVI_SEMI_BOLD", - "textColor": "#444444", - "size": 12 - } - ], - "bgColor": "#F5F5F5" - }, - "infoNotes": [ - { - "text": "For closed loans :", - "font": "NAVI_BOLD", - "textColor": "#444444", - "size": 10 - }, - { - "text": "Please submit NOC recieved from your bank/ lender.", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 10 - }, - { - "text": "For loans closing within 12 months :", - "font": "NAVI_BOLD", - "textColor": "#444444", - "size": 10 - }, - { - "text": "Please submit loan account statement/ repayment schedule recieved from your bank/ lender.", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 10 - } - ], - "bgColor": "#F5F5F5", - "approvedProperty": false - }, - "footer": { - "cta": { - "title": "Done", - "url": "hl/homeLoanIntro", - "parameters": [ - { - "key": "loanApplicationId", - "value": "0becbd50-404b-4869-9ea3-04ecaa325eeb" - }, - { - "key": "referenceId", - "value": "eb866c41-2a2f-4877-b194-208bd52afb36" - } - ], - "analyticsEventProperties": { - "name": "HL_Property_Doc_Upload_Submit", - "properties": { - "apf": "false", - "homeLoanType": "HL_NEW", - "doc_name": "HL_SANCTION_PLAN" - } - } - }, - "progress": 50 - } - }, - "documentsUploadStatusResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Upload documents", - "subtitle": "We need this for property verification", - "showSideTracker": true - } - }, - "content": { - "widgets": [ - { - "widgetId": "documentsNote", - "widgetName": "NOTE_WITH_BULLET_POINTS", - "widgetLayoutParams": { - "margin": "0, 8, 0, 0", - "backgroundColor": "#F5F5F5", - "cornerRadius": 8 - }, - "widgetData": { - "title": { - "text": "Note:", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 12 - }, - "infoList": [ - { - "text": "Your document file size should be smaller than 10MB", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 10, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "Supported file formats: pdf, jpg, jpeg, png", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 10, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - } - ] - } - }, - { - "widgetId": "uploadDocuments", - "widgetName": "EXPANDABLE_LIST_ITEMS_WITH_TAG", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "title": { - "text": "Construction 1/1", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#22223D", - "substringStyles": [ - { - "substring": "1/1", - "textColor": "#6B6B6B", - "font": "REGULAR", - "relativeSize": 0.834 - } - ] - }, - "endIcon": { - "iconCode": "ICON_SMALL_DOWNWARD_BLACK_ARROW", - "iconHeight": "24", - "iconWidth": "24" - }, - "tagData": { - "tagText": { - "text": "Uploaded", - "font": "NAVI_BOLD", - "size": 10, - "textColor": "#22A940" - }, - "backgroundColor": "#EAF8EF", - "cornerRadius": "100" - }, - "keyValueFields": [ - { - "key": { - "text": "Sanction Plan", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "value": { - "text": "Edit", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#FF5732" - }, - "tagData": { - "tagText": { - "text": "Uploaded", - "font": "NAVI_BOLD", - "size": 10, - "textColor": "#22A940" - }, - "backgroundColor": "#EAF8EF", - "cornerRadius": "100" - }, - "valueCta": { - "url": "hl/homeLoanSteps/HL_DOCUMENT_UPLOAD_SCREEN", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - } - } - ] - } - }, - { - "widgetId": "uploadDocuments", - "widgetName": "EXPANDABLE_LIST_ITEMS_WITH_TAG", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "title": { - "text": "Tax 0/1", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#22223D", - "substringStyles": [ - { - "substring": "0/1", - "textColor": "#6B6B6B", - "font": "REGULAR", - "relativeSize": 0.834 - } - ] - }, - "endIcon": { - "iconCode": "ICON_SMALL_DOWNWARD_BLACK_ARROW", - "iconHeight": "24", - "iconWidth": "24" - }, - "keyValueFields": [ - { - "key": { - "text": "Tax Receipt", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "value": { - "text": "Upload", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#FF5732" - }, - "valueCta": { - "url": "hl/homeLoanSteps/HL_DOCUMENT_UPLOAD_SCREEN", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - } - } - ] - } - }, - { - "widgetId": "uploadDocuments", - "widgetName": "EXPANDABLE_LIST_ITEMS_WITH_TAG", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "title": { - "text": "Ownership 1/4", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#22223D", - "substringStyles": [ - { - "substring": "0/1", - "textColor": "#6B6B6B", - "font": "REGULAR", - "relativeSize": 0.834 - } - ] - }, - "endIcon": { - "iconCode": "ICON_SMALL_DOWNWARD_BLACK_ARROW", - "iconHeight": "24", - "iconWidth": "24" - }, - "keyValueFields": [ - { - "key": { - "text": "Agreement to Sale", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "value": { - "text": "Edit", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#FF5732" - }, - "tagData": { - "tagText": { - "text": "Uploaded", - "font": "NAVI_BOLD", - "size": 10, - "textColor": "#22A940" - }, - "backgroundColor": "#EAF8EF", - "cornerRadius": "100" - }, - "valueCta": { - "url": "hl/homeLoanSteps/HL_DOCUMENT_UPLOAD_SCREEN", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - } - }, - { - "key": { - "text": "Revenue Document - Mutation Extract", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "value": { - "text": "Upload", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#FF5732" - }, - "valueCta": { - "url": "hl/homeLoanSteps/HL_DOCUMENT_UPLOAD_SCREEN", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - } - }, - { - "key": { - "text": "Encumbrance Certificate", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "value": { - "text": "Upload", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#FF5732" - }, - "valueCta": { - "url": "hl/homeLoanSteps/HL_DOCUMENT_UPLOAD_SCREEN", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - } - }, - { - "key": { - "text": "Title Deed", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#444444" - }, - "value": { - "text": "Upload", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#FF5732" - }, - "valueCta": { - "url": "hl/homeLoanSteps/HL_DOCUMENT_UPLOAD_SCREEN", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - } - } - ] - } - } - ] - }, - "footer": { - "progress": 50, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_COMMUNICATION_ADDRESS", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - }, - "backCta": { - "title": "Back", - "url": "hl/homeLoanIntro", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - }, - "loanCardData": { - "title": "Loan amount", - "subTitle": "\u20b9 1,00,00,000", - "viewDetailsCta": { - "title": "View details", - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - }, - "loanDetailsBottomSheetData": { - "widgets": [ - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,0,8,0" - }, - "widgetData": { - "startText": { - "text": "Loan details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#000000" - }, - "endText": { - "text": "Edit", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "endTextCta": { - "url": "hl/homeLoanSteps/HL_FORM_V2", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Loan amount", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "\u20b91,00,00,000", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Property cost", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "\u20b91,50,00,000", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Tenure", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "15 years", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "HorizontalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "8,24,8,0" - }, - "widgetData": { - "layoutHeight": 2, - "lineType": "HORIZONTAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "EmiDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "EMI details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#000000" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "EMI", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "\u20b941,667", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Interest rate", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "7.39%", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "HorizontalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "8,24,8,0" - }, - "widgetData": { - "layoutHeight": 2, - "lineType": "HORIZONTAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "downloadFSLetter", - "widgetName": "TITLE_WITH_END_ICON", - "widgetLayoutParams": { - "margin": "-8,0,-8,0" - }, - "widgetData": { - "title": { - "text": "Download financial sanction letter", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 14 - }, - "drawableData": { - "backgroundColor": "#FFFFFF" - }, - "endIcon": { - "iconCode": "ICON_RED_BORDER_DOWNLOAD", - "iconHeight": "24", - "iconWidth": "24" - }, - "cta": { - "type": "DOWNLOAD", - "title": "sanction.pdf", - "url": "https://www.africau.edu/images/default/sample.pdf", - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - } - } - } - ], - "footer": { - "cta": { - "title": "Okay, got it", - "parameters": [ - ], - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - } - } - } - } - } - }, - "howToSetupAutoPayScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - } - }, - "content": { - "widgets": [ - { - "widgetId": "widget1", - "widgetName": "TITLE_V2", - "widgetLayoutParams": { - "margin": "0, 8, 0, 0" - }, - "widgetData": { - "title": { - "text": "Auto-pay in 3 simple steps", - "font": "NAVI_BOLD", - "textColor": "#1A1A1A", - "size": 18 - } - } - }, - { - "widgetId": "autoPaySetupWidget", - "widgetName": "AUTOPAY_STEPS_WIDGET", - "widgetLayoutParams": { - "margin": "0,16,0,0" - }, - "widgetData": { - "steps": [ - { - "mainIcon": { - "iconCode": "ICON_HL_NET_BANKING" - }, - "title": { - "text": "Use \nNetbanking", - "size": 12, - "font": "REGULAR", - "textColor": "#1A1A1A" - } - }, - { - "mainIcon": { - "iconCode": "ICON_HL_ACCOUNT_TYPE" - }, - "title": { - "text": "Select \naccount type", - "size": 12, - "font": "REGULAR", - "textColor": "#1A1A1A" - } - }, - { - "mainIcon": { - "iconCode": "ICON_HL_VERIFY_OTP" - }, - "title": { - "text": "Verify \nwith OTP ", - "size": 12, - "font": "REGULAR", - "textColor": "#1A1A1A" - } - } - ] - } - }, - { - "widgetId": "benefits", - "widgetName": "ICON_WITH_TITLE", - "widgetLayoutParams": { - "margin": "0,32,0,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_BENEFITS", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Benefits", - "textColor": "#1A1A1A", - "font": "NAVI_BOLD", - "size": 16 - } - } - }, - { - "widgetId": "benefitsPoints", - "widgetName": "NOTE_WITH_BULLET_POINTS", - "widgetLayoutParams": { - "margin": "0, 8, 0, 0", - "backgroundColor": "#FFFFFF", - "cornerRadius": 8, - "rootPadding": "0, 8, 8, -20" - }, - "widgetData": { - "pointsPadding": true, - "listItemMargin": 12, - "infoList": [ - { - "text": "Avoid late fee", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 12, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "Improve your credit score", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 12, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "Timely payment of your EMIs", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 12, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "EMI limit up to ₹10 Lakhs", - "font": "NAVI_SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 12, - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - } - ] - } - }, - { - "widgetId": "safeAndSecure", - "widgetName": "ICON_WITH_TITLE", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_SECURITY_CHECK_ORANGE", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Safe & Secure", - "textColor": "#1A1A1A", - "font": "NAVI_BOLD", - "size": 16 - } - } - }, - { - "widgetId": "safe&SecurePoints", - "widgetName": "NOTE_WITH_BULLET_POINTS", - "widgetLayoutParams": { - "margin": "0, 8, 0, 0", - "backgroundColor": "#FFFFFF", - "rootPadding": "0, 8, 8, -20", - "cornerRadius": 8 - }, - "widgetData": { - "pointsPadding": true, - "listItemMargin": 12, - "infoList": [ - { - "text": "Auto-pay is managed by ", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - }, - "right": { - "iconCode": "ICON_HL_NPCI" - } - } - }, - { - "text": "Process is completed on your bank's website", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "We do not store your netbanking/debit card details", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - } - ] - } - } - ] - }, - "footer": { - "progress": 50, - "cta": { - "title": "Okay, got it", - "url": "hl/homeLoanSteps/HL_AUTOPAY_SCREEN", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "autoPayScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_CROSS_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "Repay smartly", - "subtitle": "Auto-pay setup is required to proceed", - "showSideTracker": true - } - }, - "content": { - "bankInfo": { - "bankId": "d91b2d94-1f25-4f7f-9113-5a254c10b89d", - "accountNumber": "1234567890", - "bankName": "ABHYUDAYA COOPERATIVE BANK LIMITED", - "status": "VERIFIED", - "source": "MANUAL" - }, - "failureCta": { - "url": "hl/homeLoanSteps/HL_AUTOPAY_SCREEN", - "parameters": [ - { - "key": "loanApplicationId", - "value": "b0e30959-917e-4e13-bab5-b7cd537d85c2" - }, - { - "key": "referenceId", - "value": "52ef7ff6-85aa-4427-acc9-9e70bc77851d" - }, - { - "key": "action", - "value": "AUTOPAY_SETUP" - } - ] - }, - "widgets": [ - { - "widgetId": "setupFailedWidget", - "widgetName": "TITLE_SUBTITLE_WITH_START_ICON_AND_TIMER", - "widgetLayoutParams": { - "margin": "0,8,0,0", - "backgroundColor": "#FFF3F3", - "cornerRadius": 8 - }, - "widgetData": { - "startIcon": { - "iconCode": "OUTLINED_INFO_ICON_RED", - "iconHeight": "24", - "iconWidth": "24" - }, - "title": { - "text": "Auto-pay setup failed", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#EF0000" - }, - "subTitle": { - "text": "Please try again in sometime \nor use another bank", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#4D4D4D" - }, - "timer": { - "timeInMinutes": 10, - "description": { - "text": "Please try again now", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#4D4D4D" - } - } - } - }, - { - "widgetId": "autoPayScheduleWidget", - "widgetName": "ELEVATED_LINE_ITEMS_WITH_DIVIDER", - "widgetLayoutParams": { - "margin": "0,16,0,0" - }, - "widgetData": { - "startText": { - "text": "Auto-pay schedule", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "endText": { - "text": "How to setup?", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "endTextCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "keyValueFields": [ - { - "key": { - "text": "EMI amount", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#6B6B6B" - }, - "value": { - "text": "₹ 6,250", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#444444" - } - }, - { - "key": { - "text": "Payment start date", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#6B6B6B" - }, - "value": { - "text": "5th Jul 2022", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#444444" - } - } - ] - } - }, - { - "widgetId": "bankDetailsWidget", - "widgetName": "ELEVATED_GENERIC_CARD_WITH_FOOTER_DATA", - "widgetLayoutParams": { - "margin": "0,24,0,0" - }, - "widgetData": { - "startText": { - "text": "Your bank details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "endText": { - "text": "Change bank", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "endTextCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "startIcon": { - "url": "https://play-lh.googleusercontent.com/uoc7m4EK68k5gdBMukSP96zCFz2vrkTKxftF1thq25A7ZHXmRouzPdT7yvRUJmf9Tcft=w480-h960-rw", - "iconHeight": "24", - "iconWidth": "24" - }, - "title": { - "text": "ABHYUDAYA COOPERATIVE BANK LIMITED", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#191919" - }, - "subTitle": { - "text": "1234567890", - "font": "NAVI_SEMI_BOLD", - "size": 12, - "textColor": "#6B6B6B", - "maskForAlfred": true - }, - "footerDescription": { - "text": "Success rate is low right now, you may have to try multiple times", - "font": "NAVI_SEMI_BOLD", - "size": 10, - "textColor": "#DF8F0C" - } - } - } - ] - }, - "footer": { - "progress": 50, - "nextCta": { - "title": "Next", - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "backCta": { - "title": "Back", - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "loanCardData": { - "title": "Loan amount", - "subTitle": "₹ 1,00,00,000", - "viewDetailsCta": { - "title": "View details", - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "loanDetailsBottomSheetData": { - "widgets": [ - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,0,8,0" - }, - "widgetData": { - "startText": { - "text": "Loan details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#000000" - }, - "endText": { - "text": "Edit", - "font": "NAVI_BOLD", - "size": 14, - "textColor": "#FF5732" - }, - "endTextCta": { - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Loan amount", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹1,00,00,000", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Property cost", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹1,50,00,000", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Tenure", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "15 years", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "HorizontalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "8,24,8,0" - }, - "widgetData": { - "layoutHeight": 2, - "lineType": "HORIZONTAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "EmiDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "EMI details", - "font": "NAVI_BOLD", - "size": 16, - "textColor": "#000000" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "EMI", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "₹41,667", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "LoanDetails", - "widgetName": "LIST_ITEM", - "widgetLayoutParams": { - "margin": "8,16,8,0" - }, - "widgetData": { - "startText": { - "text": "Interest rate", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#6B6B6B" - }, - "endText": { - "text": "7.39%", - "font": "NAVI_SEMI_BOLD", - "size": 14, - "textColor": "#191919" - } - } - }, - { - "widgetId": "HorizontalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetLayoutParams": { - "margin": "8,24,8,0" - }, - "widgetData": { - "layoutHeight": 2, - "lineType": "HORIZONTAL", - "lineProperty": "DASHED" - } - }, - { - "widgetId": "downloadFSLetter", - "widgetName": "TITLE_WITH_END_ICON", - "widgetLayoutParams": { - "margin": "-8,0,-8,0" - }, - "widgetData": { - "title": { - "text": "Download financial sanction letter", - "font": "NAVI_BOLD", - "textColor": "#FF5732", - "size": 14 - }, - "drawableData": { - "backgroundColor": "#FFFFFF" - }, - "endIcon": { - "iconCode": "ICON_RED_BORDER_DOWNLOAD", - "iconHeight": "24", - "iconWidth": "24" - }, - "cta": { - "type": "DOWNLOAD", - "title": "sanction.pdf", - "url": "https://www.africau.edu/images/default/sample.pdf", - "analyticsEventProperties": { - "name": "", - "properties": { - } - } - } - } - } - ], - "footer": { - "cta": { - "title": "Okay, got it", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - } - } - }, - "selfieVerificationScreen": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - }, - "trackerHeader": { - "title": "KYC", - "subtitle": "KYC is required to complete the process", - "showSideTracker": true - } - }, - "content": { - "data": { - "successCta": { - "url": "homeLoanTrackerV2", - "parameters": [ - { - "key": "loanApplicationId", - "value": "01ed7bfc-306c-4e69-87b8-4269d0cee710" - }, - { - "key": "referenceId", - "value": "e281e7f4-8943-470a-9547-ea8a6c811359" - } - ] - }, - "selfieSettingResponse": { - "provider": "HYPERVERGE", - "livenessMode": true, - "showInstructionsPage": true, - "faceCaptureTitle": "Selfie", - "livenessAPIParameters": [ - { - "value": "no", - "key": "allowEyesClosed" - } - ], - "uuid": "703a62e4-8f8f-414d-85b0-364cedfdb883" - }, - "failureCta": { - "url": "hl/homeLoanIntro", - "parameters": [ - { - "key": "action", - "value": "VERIFY_APPLICANT_AADHAAR" - }, - { - "key": "loanApplicationId", - "value": "01ed7bfc-306c-4e69-87b8-4269d0cee710" - }, - { - "key": "referenceId", - "value": "e281e7f4-8943-470a-9547-ea8a6c811359" - } - ] - } - }, - "permissionFailureData": { - "endIcon": { - "iconCode": "ICON_HL_SMALL_RED_WHITE_BG_RIGHT_ARROW", - "iconHeight": "24", - "iconWidth": "24" - }, - "title": { - "text": "Camera permission is mandatory to complete the process", - "font": "NAVI_BOLD", - "size": 12, - "textColor": "#191919" - }, - "subTitle": { - "text": "Phone settings > Apps > Navi > Permissions", - "font": "NAVI_SEMI_BOLD", - "size": 10, - "textColor": "#FF5732" - } - } - }, - "footer": { - "backCta": { - "title": "Back", - "url": "hl/homeLoanIntro", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "nextCta": { - "title": "Next", - "url": "" - }, - "progress": 50 - } - }, - "landingPageScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "home", - "analyticsEventProperties": { - "name": "New_HL_Landing_Back_Button_Clicked", - "properties": { - "login_status": "no", - "screen_name": "landing_page" - } - } - }, - "helpBottomSheet": { - "title": { - "text": "Need Help?", - "textColor": "#1A1A1A", - "font": "NAVI_BOLD", - "size": 18 - }, - "widgets": [ - { - "widgetId": "FAQ", - "widgetName": "ICON_WITH_TITLE", - "widgetLayoutParams": { - "margin": "0,0,0,24" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_HELP_FAQ", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "FAQs", - "textColor": "#000000", - "font": "NAVI_SEMI_BOLD", - "size": 14 - }, - "ctaData": { - "url": "menu/faq" - } - } - }, - { - "widgetId": "CHAT", - "widgetName": "ICON_WITH_TITLE", - "widgetLayoutParams": { - "margin": "0,0,0,24" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_HELP_CHAT", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Chat with us", - "textColor": "#000000", - "font": "NAVI_SEMI_BOLD", - "size": 14 - }, - "ctaData": { - "url": "chatInHouse", - "parameters": [ - { - "key": "CHAT_BOT_SCREEN_NAME", - "value": "HL_BANK_SELECTION_SCREEN" - } - ] - } - } - }, - { - "widgetId": "EMAIL", - "widgetName": "ICON_WITH_TITLE", - "widgetLayoutParams": { - "margin": "0,0,0,24" - }, - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_HELP_EMAIL", - "iconHeight": "16", - "iconWidth": "16" - }, - "title": { - "text": "Send E-mail", - "textColor": "#000000", - "font": "NAVI_SEMI_BOLD", - "size": 14 - }, - "ctaData": { - "url": "emailV2" - } - } - } - ] - } - } - }, - "content": { - "widgets": [ - { - "widgetId": "productIntro", - "widgetName": "PRODUCT_INTRO_WITH_BUTTON_WIDGET", - "widgetData": { - "title": { - "text": "Navi Home Loans", - "size": 14, - "font": "NAVI_REGULAR", - "textColor": "#000000", - "isSelected": false - }, - "subTitles": [ - { - "text": "Get loan sanctioned\nin 5 minutes", - "span": [ - { - "startSpan": 0, - "endSpan": 22, - "fontColor": "#191919", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 18.0 - }, - { - "startSpan": 23, - "endSpan": 32, - "fontColor": "#FF5732", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 18.0 - } - ], - "isSelected": false - }, - { - "text": "Get upto 90% of\nyour property cost", - "span": [ - { - "startSpan": 0, - "endSpan": 34, - "fontColor": "#191919", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 18.0 - }, - { - "startSpan": 4, - "endSpan": 12, - "fontColor": "#ff5732", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 18.0 - } - ], - "isSelected": false - }, - { - "text": "Get upto ₹5 crores\nstarting at 7.39%", - "span": [ - { - "startSpan": 0, - "endSpan": 36, - "fontColor": "#191919", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 18.0 - }, - { - "startSpan": 4, - "endSpan": 18, - "fontColor": "#ff5732", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 18.0 - } - ], - "isSelected": false - } - ], - "endIcon": { - "iconCode": "ICON_HL_HOME_WITH_COINS", - "iconHeight": "102", - "iconWidth": "102" - }, - "cta": { - "title": "Check loan offer", - "url": "REGISTRATION", - "parameters": [ - { - "key": "loanType", - "value": "HOME_LOAN" - }, - { - "key": "loanActionType", - "value": "HL_NEW" - } - ], - "analyticsEventProperties": { - "name": "New_HL_check_loan_offer_clicked", - "properties": { - "login_status": "no", - "screen_name": "landing_page", - "customerReferenceId": "null", - "position": "top" - } - } - }, - "titleSlideIntervalTimeInMillis": 2000, - "isNewWidget": true - }, - "widgetLayoutParams": { - "backgroundColor": "#ffffff", - "margin": "0,0,0,0", - "strokeWidth": 0 - } - }, - { - "widgetId": "sliderIndicatorWidget", - "widgetName": "SLIDER_WIDGET_WITH_DOTS_INDICATOR", - "widgetData": { - "sliderItems": [ - { - "title": { - "text": "Get a cashback upto ₹1.25 lakhs after loan disbursal", - "span": [ - { - "startSpan": 0, - "endSpan": 51, - "fontColor": "#444444", - "fontName": "NAVI_REGULAR", - "fontSize": 14.0 - }, - { - "startSpan": 6, - "endSpan": 31, - "fontColor": "#444444", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 14.0 - } - ], - "isSelected": false - }, - "widgetLayoutParams": { - "backgroundColor": "#EBE4FF", - "margin": "16,16,16,16", - "strokeWidth": 0 - }, - "startIcon": { - "iconCode": "ICON_GIFT", - "iconHeight": "48", - "iconWidth": "48" - } - }, - { - "title": { - "text": "Navi is an RBI registered NBFC", - "span": [ - { - "startSpan": 0, - "endSpan": 30, - "fontColor": "#444444", - "fontName": "NAVI_REGULAR", - "fontSize": 14.0 - }, - { - "startSpan": 11, - "endSpan": 30, - "fontColor": "#011a48", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 14.0 - } - ], - "isSelected": false - }, - "widgetLayoutParams": { - "backgroundColor": "#E6FFD8", - "margin": "16,16,16,16", - "strokeWidth": 0 - }, - "startIcon": { - "iconCode": "ICON_RBI", - "iconHeight": "48", - "iconWidth": "48" - } - }, - { - "title": { - "text": "Rate of interest is linked to REPO with no internal changes", - "span": [ - { - "startSpan": 0, - "endSpan": 59, - "fontColor": "#444444", - "fontName": "NAVI_REGULAR", - "fontSize": 14.0 - }, - { - "startSpan": 39, - "endSpan": 59, - "fontColor": "#011a48", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 14.0 - } - ], - "isSelected": false - }, - "widgetLayoutParams": { - "backgroundColor": "#EBE4FF", - "margin": "16,16,16,16", - "strokeWidth": 0 - }, - "startIcon": { - "iconCode": "ICON_MAGNIFIER", - "iconHeight": "48", - "iconWidth": "48" - } - } - ], - "bannerSlideIntervalTimeInMillis": 2000, - "bannerInitialDelayInMillis": 4000, - "isNewWidget": true - } - }, - { - "widgetId": "benefitsWidget", - "widgetName": "PRODUCT_BENEFITS_GRID_WIDGET", - "widgetData": { - "title": { - "text": "Navi benefits you will get", - "size": 18, - "font": "NAVI_BOLD", - "textColor": "#191919", - "isSelected": false - }, - "items": [ - { - "title": { - "text": "Loans upto 90% of \nproperty cost", - "size": 12, - "font": "NAVI_BOLD", - "textColor": "#444444", - "isSelected": false - }, - "subTitle": { - "text": "Know more", - "size": 12, - "font": "NAVI_SEMI_BOLD", - "textColor": "#ff5732", - "isSelected": false - }, - "topIcon": { - "url": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_6.png", - "iconHeight": "80", - "iconWidth": "80", - "aspectRatio": 0.7432 - }, - "cta": { - "url": "/bottomsheet", - "analyticsEventProperties": { - "name": "New_HL_Benefits_Know_More_Clicked", - "properties": { - "widget": "Loans upto 90% of \nproperty cost", - "login_status": "no", - "screen_name": "landing_page" - } - }, - "type": "BENEFITS_KNOW_MORE" - }, - "bottomSheet": { - "title": { - "text": "Loans upto 90% of property cost", - "size": 18, - "font": "NAVI_BOLD", - "textColor": "#191919", - "isSelected": false - }, - "subTitle": { - "text": "Pay minimum downpayment for your home loan! Navi can provide upto 90% of your property cost based on your eligibility.", - "size": 14, - "font": "NAVI_REGULAR", - "textColor": "#444444", - "isSelected": false - }, - "cta": { - "title": "Okay, got it!" - }, - "infoCard": { - "backgroundColor": "#F2F7FC", - "leftIcon": { - "iconCode": "NEW_GLOWING_BULB", - "isSelected": false - }, - "message": { - "text": "For example, if your property cost is 50 lakhs, Navi can fund the loan upto 45 lakhs!", - "size": 14, - "font": "NAVI_REGULAR", - "textColor": "#444444", - "isSelected": false - } - }, - "topIcon": { - "url": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_6.png", - "iconHeight": "80", - "iconWidth": "80" - } - }, - "isNewWidget": true - }, - { - "title": { - "text": "Flexible \nEMI plans", - "size": 12, - "font": "NAVI_BOLD", - "textColor": "#444444", - "isSelected": false - }, - "subTitle": { - "text": "Know more", - "size": 12, - "font": "NAVI_SEMI_BOLD", - "textColor": "#ff5732", - "isSelected": false - }, - "topIcon": { - "url": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_8.png", - "iconHeight": "80", - "iconWidth": "80", - "aspectRatio": 0.7432 - }, - "cta": { - "url": "/bottomsheet", - "analyticsEventProperties": { - "name": "New_HL_Benefits_Know_More_Clicked", - "properties": { - "widget": "Flexible \nEMI plans", - "login_status": "no", - "screen_name": "landing_page" - } - }, - "type": "BENEFITS_KNOW_MORE" - }, - "bottomSheet": { - "title": { - "text": "Flexible EMI plans", - "size": 18, - "font": "NAVI_BOLD", - "textColor": "#191919", - "isSelected": false - }, - "subTitle": { - "text": "Choose from a variety of flexible EMI plans. Navi provides plans like ‘EMI holiday’, ‘Pre EMI, ’Custom EMI' and ‘Tranche EMI'.", - "size": 14, - "font": "NAVI_REGULAR", - "textColor": "#444444", - "isSelected": false - }, - "cta": { - "title": "Okay, got it!" - }, - "infoCard": { - "backgroundColor": "#F2F7FC", - "leftIcon": { - "iconCode": "NEW_GLOWING_BULB", - "isSelected": false - }, - "message": { - "text": "For example, if you choose 'EMI holiday' you would not have to pay any EMI for 12 months after getting the loan.", - "size": 14, - "font": "NAVI_REGULAR", - "textColor": "#444444", - "isSelected": false - } - }, - "topIcon": { - "url": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_8.png", - "iconHeight": "80", - "iconWidth": "80" - } - }, - "isNewWidget": true - }, - { - "title": { - "text": "Digital and \nsecure process", - "size": 12, - "font": "NAVI_BOLD", - "textColor": "#444444", - "isSelected": false - }, - "subTitle": { - "text": "Know more", - "size": 12, - "font": "NAVI_SEMI_BOLD", - "textColor": "#ff5732", - "isSelected": false - }, - "topIcon": { - "url": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_14.png", - "iconHeight": "80", - "iconWidth": "80", - "aspectRatio": 0.7432 - }, - "cta": { - "url": "/bottomsheet", - "analyticsEventProperties": { - "name": "New_HL_Benefits_Know_More_Clicked", - "properties": { - "widget": "Digital and \nsecure process", - "login_status": "no", - "screen_name": "landing_page" - } - }, - "type": "BENEFITS_KNOW_MORE" - }, - "bottomSheet": { - "title": { - "text": "Digital and secure process", - "size": 18, - "font": "NAVI_BOLD", - "textColor": "#191919", - "isSelected": false - }, - "subTitle": { - "text": "Apply for your home loan in a quick, hassle-free & digital process. Navi is an RBI registered NBFC where your data is 100% secure.", - "size": 14, - "font": "NAVI_REGULAR", - "textColor": "#444444", - "isSelected": false - }, - "cta": { - "title": "Okay, got it!" - }, - "infoCard": { - "backgroundColor": "#F2F7FC", - "leftIcon": { - "iconCode": "NEW_GLOWING_BULB", - "isSelected": false - }, - "message": { - "text": "With completely digital process, you can get your sanction letter within 5 minutes. After loan disbursal, you can also pay your EMIs and access all your documents via the app.", - "size": 14, - "font": "NAVI_REGULAR", - "textColor": "#444444", - "isSelected": false - } - }, - "topIcon": { - "url": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_14.png", - "iconHeight": "80", - "iconWidth": "80" - } - }, - "isNewWidget": true - }, - { - "title": { - "text": "Zero processing \nfees", - "size": 12, - "font": "NAVI_BOLD", - "textColor": "#444444", - "isSelected": false - }, - "subTitle": { - "text": "Know more", - "size": 12, - "font": "NAVI_SEMI_BOLD", - "textColor": "#ff5732", - "isSelected": false - }, - "topIcon": { - "url": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_13.png", - "iconHeight": "80", - "iconWidth": "80", - "aspectRatio": 0.7432 - }, - "cta": { - "url": "/bottomsheet", - "analyticsEventProperties": { - "name": "New_HL_Benefits_Know_More_Clicked", - "properties": { - "widget": "Zero processing \nfees", - "login_status": "no", - "screen_name": "landing_page" - } - }, - "type": "BENEFITS_KNOW_MORE" - }, - "bottomSheet": { - "title": { - "text": "Zero processing fees", - "size": 18, - "font": "NAVI_BOLD", - "textColor": "#191919", - "isSelected": false - }, - "subTitle": { - "text": "Save on your additional charges as Navi does not charge any processing fees.", - "size": 14, - "font": "NAVI_REGULAR", - "textColor": "#444444", - "isSelected": false - }, - "cta": { - "title": "Okay, got it!" - }, - "infoCard": { - "backgroundColor": "#F2F7FC", - "leftIcon": { - "iconCode": "NEW_GLOWING_BULB", - "isSelected": false - }, - "message": { - "text": "There are no hidden charges and the application process is 100% free.", - "size": 14, - "font": "NAVI_REGULAR", - "textColor": "#444444", - "isSelected": false - } - }, - "topIcon": { - "url": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_13.png", - "iconHeight": "80", - "iconWidth": "80" - } - }, - "isNewWidget": true - } - ], - "spanCount": 2, - "isNewWidget": true - }, - "widgetLayoutParams": { - "backgroundColor": "#fafafa", - "margin": "16,16,16,16", - "strokeWidth": 0 - } - }, - { - "widgetId": "customersAndBuilderTrustWidget", - "widgetName": "TWO_INFO_CARDS_WITH_TITLE_WIDGET", - "widgetData": { - "title": { - "text": "Customers & builders trust us", - "size": 18, - "font": "NAVI_EXTRA_BOLD", - "textColor": "#191919", - "isSelected": false - }, - "loanDisbursedItem": { - "title": { - "text": "10K Crore+", - "span": [ - { - "startSpan": 0, - "endSpan": 10, - "fontColor": "#011A48", - "fontName": "NAVI_BOLD", - "fontSize": 16.0 - }, - { - "startSpan": 0, - "endSpan": 3, - "fontColor": "#011A48", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 24.0 - } - ], - "isSelected": false - }, - "subTitle": { - "text": "LOAN AMOUNT DISBURSED", - "size": 10, - "font": "NAVI_BOLD", - "textColor": "#6B6B6B", - "isSelected": false - }, - "topIcon": { - "iconCode": "ICON_LOAN_DISBURSED", - "iconHeight": "96", - "iconWidth": "96" - }, - "isNewWidget": true - }, - "loanApplicationsItem": { - "title": { - "text": "25L+", - "span": [ - { - "startSpan": 0, - "endSpan": 4, - "fontColor": "#011A48", - "fontName": "NAVI_BOLD", - "fontSize": 16.0 - }, - { - "startSpan": 0, - "endSpan": 3, - "fontColor": "#011A48", - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": 24.0 - } - ], - "isSelected": false - }, - "subTitle": { - "text": "LOAN APPLICATIONS", - "size": 10, - "font": "NAVI_BOLD", - "textColor": "#6B6B6B", - "isSelected": false - }, - "topIcon": { - "iconCode": "ICON_LOAN_APPLICATIONS", - "iconHeight": "88", - "iconWidth": "88" - }, - "isNewWidget": true - }, - "isNewWidget": true - }, - "widgetLayoutParams": { - "rootPadding": "16,16,16,16", - "backgroundColor": "#FFFFFF", - "strokeWidth": 0 - } - }, - { - "widgetId": "trustedBuildersWidget", - "widgetName": "TRUSTED_BUILDERS_WIDGET", - "widgetData": { - "title": { - "text": "400+ properties", - "size": 24, - "font": "NAVI_BOLD", - "textColor": "#011A48", - "isSelected": false - }, - "subTitle": { - "text": "pre-approved with trusted builders", - "size": 16, - "font": "NAVI_REGULAR", - "textColor": "#011A48", - "isSelected": false - }, - "bgImageCode": "HL_BUILDERS_WIDGET_BG", - "builderInfo": { - "builderIcons": [ - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_31.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_7.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_12.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_11.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_15.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_16.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_17.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_18.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/shriram_logos.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/incor_logo.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/silverky_logo.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/olympia.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/brigade_logo.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/vtp_logo.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/prime_lifespace_logo.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/tvs_emerald_logo.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/wadhwa_logo.png", - "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/suntech_logo.png" - ], - "iconHeight": "40", - "iconWidth": "40", - "aspectRatio": 0.7432 - }, - "isNewWidget": true - }, - "widgetLayoutParams": { - "rootPadding": "0,0,0,0", - "backgroundColor": "#fafafa", - "strokeWidth": 0 - } - }, - { - "widgetId": "understandProcessVideoWidget", - "widgetName": "UNDERSTAND_PROCESS_VIDEO_WIDGET", - "widgetData": { - "videoThumbnail": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/home_video_thumbnail.png", - "playIcon": { - "iconCode": "ICON_PLAY_VIDEO", - "iconHeight": "40", - "iconWidth": "40" - }, - "videoDurationBG": "#A6FFFFFF", - "videoDuration": { - "text": "07:14", - "size": 12, - "font": "NAVI_REGULAR", - "textColor": "#000000", - "isSelected": false - }, - "title": { - "text": "Understand Navi Homeloan", - "size": 14, - "font": "NAVI_REGULAR", - "textColor": "#191919", - "isSelected": false - }, - "cta": { - "title": "Understand Navi Homeloan", - "url": "view_video", - "parameters": [ - { - "key": "videoId", - "value": "bero5mMAWJg" - } - ], - "analyticsEventProperties": { - "name": "New_HL_Video_Play_Start", - "properties": { - "login_status": "no", - "screen_name": "landing_page" - } - } - }, - "isNewWidget": true - }, - "widgetLayoutParams": { - "rootPadding": "16,16,16,16", - "backgroundColor": "#ffffff", - "strokeWidth": 0 - } - }, - { - "widgetId": "appliedUsers", - "widgetName": "APPLIED_USER_COUNT_WIDGET", - "widgetData": { - "title": { - "text": "10.5K+ customers applied for Navi home loan in the past 10 days", - "span": [ - { - "startSpan": 0, - "endSpan": 63, - "fontColor": "#444444", - "fontName": "NAVI_REGULAR", - "fontSize": 12.0 - }, - { - "startSpan": 0, - "endSpan": 16, - "fontColor": "#444444", - "fontName": "NAVI_BOLD", - "fontSize": 12.0 - } - ], - "isSelected": false - }, - "appliedCount": "10.5K", - "firstUserImageUrl": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_20.png", - "secondUserImageUrl": "https://navi-assets-prod.s3.ap-south-1.amazonaws.com/icons/navi.com/hl/image_21.png", - "isNewWidget": true - }, - "widgetLayoutParams": { - "backgroundColor": "#fafafa", - "strokeWidth": 0 - } - } - ] - }, - "footer": { - "cta": { - "title": "Check loan offer", - "url": "REGISTRATION", - "parameters": [ - { - "key": "loanType", - "value": "HOME_LOAN" - }, - { - "key": "loanActionType", - "value": "HL_NEW" - } - ], - "analyticsEventProperties": { - "name": "New_HL_check_loan_offer_clicked", - "properties": { - "login_status": "no", - "screen_name": "landing_page", - "customerReferenceId": "null", - "position": "bottom" - } - } - } - } - }, - "fullScreenErrorResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "home", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": {} - } - }, - "content": { - "errorIcon": { - "iconCode": "ICON_IN_PROGRESS", - "iconHeight": 64, - "iconWidth": 64 - }, - "errorTitle": { - "text": "Account could not be verified!", - "font": "NAVI_HEADLINE_REGULAR", - "size": 16, - "textColor": "#191919" - }, - "errorSubTitle": { - "text": "Please proceed with uploading bank statement\nto successfully verify your account", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444", - "alignment": "CENTER" - } - }, - "footer": { - "cta": { - "title": "Retry", - "url": "hl/homeLoanSteps/HL_WIDGETIZED_INFO", - "parameters": [] - } - } - }, - "insufficientBankDetailsScreenResponseError": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanSteps/HL_FORM_SEARCH", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - } - }, - "content": { - "topIcon": { - "iconCode": "LARGE_ERROR_ICON", - "iconHeight": "64", - "iconWidth": "64" - }, - "screenTitle": { - "text": "Please provide the bank statements for", - "font": "TT_REGULAR", - "size": 12, - "textColor": "#1A1A1A" - }, - "screenSubTitle": { - "text": "Jan 2023 - Mar 2023, \nMay 2023 - June 2023 and \nOct 2023", - "textColor": "#EF0000", - "font": "TT_SEMI_BOLD", - "size": 16, - "lineSpacing": 24, - "substringStyles": [ - { - "font": "TT_MEDIUM", - "textColor": "#191919", - "substring": "and" - } - ] - }, - "screenMessage": { - "text": "We were able to retrieve these from \nstatements from your bank.", - "font": "TT_MEDIUM", - "size": 14, - "lineSpacing": 22, - "textColor": "#444444" - }, - "bankList": [ - { - "bankName": { - "text": "HDFC ****3737", - "font": "TT_MEDIUM", - "size": 14, - "textColor": "#191919" - }, - "bankDetailPeriod": { - "text": "Jan 2023 - Apr 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#191919" - }, - "bankIcon": { - "url": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/HDFC.png", - "iconHeight": "40", - "iconWidth": "40" - }, - "monthlyStatusList": [ - { - "text": "Jan 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Feb 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Mar 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Apr 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "May 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "June 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - } - ], - "successStyle": { - "text": "Success", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#191919" - } - }, - { - "bankName": { - "text": "SBI ****3737", - "font": "TT_MEDIUM", - "size": 14, - "textColor": "#191919" - }, - "bankDetailPeriod": { - "text": " May 2023 - June 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#191919" - }, - "bankIcon": { - "url": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/SBI.png", - "iconHeight": "40", - "iconWidth": "40" - }, - "monthlyStatusList": [ - { - "text": "Jan 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Feb 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Mar 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Apr 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "May 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "June 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - } - ], - "successStyle": { - "text": "Success", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#191919" - } - } - ], - "noDataResponse": { - "noDataIcon": { - "iconCode": "NO_DATA_ERROR_ICON", - "iconHeight": "222", - "iconWidth": "222" - } - }, - "errorBottomSheetData": { - "iconCode": "RED_TICK_MARK_24", - "title": { - "text": "Name does not match", - "font": "TT_MEDIUM", - "size": 18, - "textColor": "#1A1A1A" - }, - "subTitle": { - "text": "The name as per your bank account does not match with the name as per your PAN. Please upload correct bank statement.", - "font": "TT_REGULAR", - "size": 14, - "textColor": "#444444" - }, - "footer": { - "cta": { - "title": "Okay got it", - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - }, - "footer": { - "cta": { - "title": "+ Add bank", - "url": "hl/homeLoanSteps/HL_FORM_SEARCH", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "insufficientBankDetailsScreenResponse": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanSteps/HL_FORM_SEARCH", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - } - }, - "content": { - "topIcon": { - "iconCode": "LARGE_ERROR_ICON", - "iconHeight": "64", - "iconWidth": "64" - }, - "screenTitle": { - "text": "Please provide the bank statements for", - "font": "TT_REGULAR", - "size": 12, - "textColor": "#1A1A1A" - }, - "screenSubTitle": { - "text": "Jan 2023 - Mar 2023, \nMay 2023 - June 2023 and \nOct 2023", - "textColor": "#EF0000", - "font": "TT_SEMI_BOLD", - "size": 16, - "lineSpacing": 24, - "substringStyles": [ - { - "font": "TT_MEDIUM", - "textColor": "#191919", - "substring": "and" - } - ] - }, - "screenMessage": { - "text": "We were able to retrieve these from \nstatements from your bank.", - "font": "TT_MEDIUM", - "size": 14, - "lineSpacing": 22, - "textColor": "#444444" - }, - "bankList": [ - { - "bankName": { - "text": "HDFC ****3737", - "font": "TT_MEDIUM", - "size": 14, - "textColor": "#191919" - }, - "bankDetailPeriod": { - "text": "Jan 2023 - Apr 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#191919" - }, - "bankIcon": { - "url": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/HDFC.png", - "iconHeight": "40", - "iconWidth": "40" - }, - "monthlyStatusList": [ - { - "text": "Jan 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Feb 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Mar 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Apr 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "May 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "June 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - } - ], - "successStyle": { - "text": "Success", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#191919" - } - }, - { - "bankName": { - "text": "SBI ****3737", - "font": "TT_MEDIUM", - "size": 14, - "textColor": "#191919" - }, - "bankDetailPeriod": { - "text": " May 2023 - June 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#191919" - }, - "bankIcon": { - "url": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/SBI.png", - "iconHeight": "40", - "iconWidth": "40" - }, - "monthlyStatusList": [ - { - "text": "Jan 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Feb 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Mar 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "Apr 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "May 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - }, - { - "text": "June 2023", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#444444" - } - ], - "successStyle": { - "text": "Success", - "font": "NAVI_BODY_REGULAR", - "size": 12, - "textColor": "#191919" - } - } - ], - "noDataResponse": { - "noDataIcon": { - "iconCode": "NO_DATA_ERROR_ICON", - "iconHeight": "222", - "iconWidth": "222" - } - } - }, - "footer": { - "cta": { - "title": "+ Add bank", - "url": "hl/homeLoanSteps/HL_FORM_SEARCH", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "insufficientBankDetailsScreenNoData": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanSteps/HL_FORM_SEARCH", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "centerText": "Home Loan", - "helpBottomSheet": { - } - } - }, - "content": { - "topIcon": { - "iconCode": "LARGE_ERROR_ICON", - "iconHeight": "64", - "iconWidth": "64" - }, - "screenTitle": { - "text": "Could not fetch any \nbank statements", - "font": "TT_SEMI_BOLD", - "size": 16, - "textColor": "#191919" - }, - "screenSubTitle": { - "text": "Please try to add bank again", - "textColor": "#1A1A1A", - "font": "TT_REGULAR", - "size": 12 - }, - "noDataResponse": { - "noDataIcon": { - "iconCode": "NO_DATA_ERROR_ICON", - "iconHeight": "222", - "iconWidth": "222" - } - } - }, - "footer": { - "cta": { - "title": "+ Add bank", - "url": "hl/homeLoanSteps/HL_FORM_SEARCH", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - }, - "homeLoanLoaderResponseForFragment": { - "requestType": "GENERATE_IPA", - "successCta": { - "url": "hl/homeLoanSteps/HL_WIDGETIZED_INFO" - }, - "failureCta": { - "url": "hl/homeLoanIntro" - }, - "verificationFailureCta": { - "url": "hl/homeLoanIntro" - }, - "loaderPageTimeOutData": { - "title": { - "text": "Sorry we couldn't process your request", - "textColor": "#191919", - "font": "NAVI_HEADLINE_REGULAR", - "size": 16 - }, - "subTitle": { - "text": "Please try again after sometime", - "textColor": "#444444", - "font": "NAVI_BODY_REGULAR", - "size": 14 - }, - "footer": { - "cta": { - "title": "Retry", - "url": "hl/homeLoanSteps/HL_INCOME_VERIFICATION", - "parameters": [] - } - }, - "hideDivider": false - } - }, - "loaderPollingDetails": { - "requestId": "bd73ff33-1126-4953-b633-fd384d184879", - "status": "PENDING", - "requestType": "GENERATE_SL", - "customerReferenceId": "bf930354-8046-4e6b-a3dd-b82deb02fcd5", - "requestConfig": { - "initialDelay": 2, - "interval": 5, - "multiplyFactor": 1.0, - "numOfRetries": 2 - }, - "statusString": "PENDING", - "pending": true, - "notificationPath": "2023-10-05-09" - }, - "supportedBanks": { - "preferredBanks": [ - { - "name": "AXIS BANK", - "code": "UTIB", - "serviceable": true, - "preferred": true, - "message": "Supported", - "iconUrl": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/Axis.png", - "title": "AXIS", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "998", - "aaEnabled": false, - "aaHlFinarkeinEnabled": true, - "aaFinarkeinFipId": "fip@finbank" - }, - { - "name": "BANK OF BARODA", - "code": "BARB", - "serviceable": true, - "preferred": true, - "message": "Supported", - "iconUrl": "https://cdn.np.navi-assets.com/bank-icons/baroda_light_4.png", - "title": "BoB", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "8", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false, - "aaFinarkeinFipId": "fip@finbank" - }, - { - "name": "HDFC BANK", - "code": "HDFC", - "serviceable": true, - "preferred": true, - "message": "Supported", - "iconUrl": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/HDFC.png", - "title": "HDFC", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "20", - "aaFipId": "hdfc", - "aaEnabled": false, - "aaHlFinarkeinEnabled": true, - "aaFinarkeinFipId": "fip@finbank" - }, - { - "name": "ICICI BANK LIMITED", - "code": "ICIC", - "serviceable": true, - "preferred": true, - "message": "Supported", - "iconUrl": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/Icici.png", - "title": "ICICI", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "22", - "aaFipId": "icic", - "aaEnabled": true, - "aaHlFinarkeinEnabled": true, - "aaFinarkeinFipId": "fip@finbank" - }, - { - "name": "STATE BANK OF INDIA", - "code": "SBIN", - "serviceable": true, - "preferred": true, - "message": "Supported", - "iconUrl": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/SBI.png", - "title": "SBI", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "35", - "aaEnabled": false, - "aaHlFinarkeinEnabled": true, - "aaFinarkeinFipId": "SBI-FIP-ID" - } - ], - "allSupportedBanks": [ - { - "name": "ABHYUDAYA COOPERATIVE BANK LIMITED", - "code": "ABHY", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": true, - "pdfUploadEnabled": true, - "institutionId": "998", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "AHMEDABAD MERCANTILE COOPERATIVE BANK", - "code": "AMCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "998", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "AHMEDNAGAR MERCHANTS CO-OP BANK LTD", - "code": "AMDN", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "395", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "AIRTEL PAYMENTS BANK LIMITED", - "code": "AIRP", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "267", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "AKOLA JANATA COMMERCIAL COOPERATIVE BANK", - "code": "AKJB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "342", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "ALLAHABAD BANK", - "code": "ALLA", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "4", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "ALMORA URBAN COOPERATIVE BANK LIMITED", - "code": "AUCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "945", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "AMBARNATH JAIHIND COOP BANK LTD AMBARNATH", - "code": "AJHC", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "248", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "AMERICAN EXPRESS BANK", - "code": "AMEX", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "5", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "ANDHRA BANK", - "code": "ANDB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "6", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "ANDHRA PRAGATHI GRAMEENA BANK", - "code": "APGB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "499", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "APNA SAHAKARI BANK LIMITED", - "code": "ASBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "504", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "AU SMALL FINANCE BANK LIMITED", - "code": "AUBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "196", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "AUSTRALIA AND NEW ZEALAND BANKING GROUP LIMITED", - "code": "ANZB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "12110", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "AXIS BANK", - "code": "UTIB", - "serviceable": true, - "preferred": true, - "message": "Supported", - "iconUrl": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/Axis.png", - "title": "AXIS", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "998", - "aaEnabled": false, - "aaHlFinarkeinEnabled": true, - "aaFinarkeinFipId": "fip@finbank" - }, - { - "name": "B N P PARIBAS", - "code": "BNPA", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "7", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "BANDHAN BANK LIMITED", - "code": "BDBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "156", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "BANK OF BAHARAIN AND KUWAIT BSC", - "code": "BBKM", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "840", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "BANK OF BARODA", - "code": "BARB", - "serviceable": true, - "preferred": true, - "message": "Supported", - "iconUrl": "https://cdn.np.navi-assets.com/bank-icons/baroda_light_4.png", - "title": "BoB", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "8", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false, - "aaFinarkeinFipId": "fip@finbank" - }, - { - "name": "BANK OF INDIA", - "code": "BKID", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "9", - "aaFipId": "BOI-FIP", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "BANK OF MAHARASHTRA", - "code": "MAHB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "10", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "BARCLAYS BANK", - "code": "BARC", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "73", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "BASSEIN CATHOLIC COOPERATIVE BANK LIMITED", - "code": "BACB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "387", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "BHAGINI NIVEDITA SAHAKARI BANK LTD PUNE", - "code": "BNSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "694", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "BHARAT COOPERATIVE BANK MUMBAI LIMITED", - "code": "BCBM", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "122", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "CANARA BANK", - "code": "CNRB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "title": "Canara", - "netBankingEnabled": false, - "pdfUploadEnabled": false, - "aaEnabled": true, - "aaHlFinarkeinEnabled": false - }, - { - "name": "CAPITAL SMALL FINANCE BANK LIMITED", - "code": "CLBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "222", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "CENTRAL BANK OF INDIA", - "code": "CBIN", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "12", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "CITI BANK", - "code": "CITI", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "CITIZEN CREDIT COOPERATIVE BANK LIMITED", - "code": "CCBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "385", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "CITY UNION BANK LIMITED", - "code": "CIUB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "57", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "CORPORATION BANK", - "code": "CORP", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "15", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "CSB BANK LIMITED", - "code": "CSBK", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "111", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "DBS BANK INDIA LIMITED", - "code": "DBSS", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "16", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "DCB BANK LIMITED", - "code": "DCBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "18", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "DENA BANK", - "code": "BKDN", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "17", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "DEOGIRI NAGARI SAHAKARI BANK LTD. AURANGABAD", - "code": "DEOB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "635", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "DEUSTCHE BANK", - "code": "DEUT", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "49", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "DHANALAKSHMI BANK", - "code": "DLXB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "71", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "DMK JAOLI BANK", - "code": "DMKJ", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "596", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "DOMBIVLI NAGARI SAHAKARI BANK LIMITED", - "code": "DNSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "192", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "DURGAPUR STEEL PEOPLES CO-OPERATIVE BANK LTD", - "code": "DURG", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "933", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "EQUITAS SMALL FINANCE BANK LIMITED", - "code": "ESFB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "224", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "ESAF SMALL FINANCE BANK LIMITED", - "code": "ESMF", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "589", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "FINCARE SMALL FINANCE BANK LTD", - "code": "FSFB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "592", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "FINO PAYMENTS BANK", - "code": "FINO", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "388", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "FINVU BANK LTD.", - "code": "finv", - "serviceable": true, - "preferred": false, - "message": "Supported", - "title": "FINU", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "998", - "aaEnabled": false, - "aaHlFinarkeinEnabled": true, - "aaFinarkeinFipId": "BARB0KIMXXX" - }, - { - "name": "G P PARSIK BANK", - "code": "PJSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "173", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "GS MAHANAGAR CO-OPERATIVE BANK LIMITED, MUMBAI", - "code": "MCBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "400", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "HDFC BANK", - "code": "HDFC", - "serviceable": true, - "preferred": true, - "message": "Supported", - "iconUrl": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/HDFC.png", - "title": "HDFC", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "20", - "aaFipId": "hdfc", - "aaEnabled": false, - "aaHlFinarkeinEnabled": true, - "aaFinarkeinFipId": "fip@finbank" - }, - { - "name": "HSBC BANK", - "code": "HSBC", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "21", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "ICICI BANK LIMITED", - "code": "ICIC", - "serviceable": true, - "preferred": true, - "message": "Supported", - "iconUrl": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/Icici.png", - "title": "ICICI", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "22", - "aaFipId": "icic", - "aaEnabled": true, - "aaHlFinarkeinEnabled": true, - "aaFinarkeinFipId": "fip@finbank" - }, - { - "name": "IDBI BANK", - "code": "IBKL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "23", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "INDIA POST PAYMENT BANK", - "code": "IPOS", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "807", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "INDIAN OVERSEAS BANK", - "code": "IOBA", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "25", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "INDUSIND BANK", - "code": "INDB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "26", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "JALGAON JANATA SAHAKARI BANK LIMITED", - "code": "JJSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "115", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "JANA SMALL FINANCE BANK LTD", - "code": "JSFB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "538", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "JANAKALYAN SAHAKARI BANK LIMITED", - "code": "JSBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "466", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "JANASEVA SAHAKARI BANK LIMITED", - "code": "JANA", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "251", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "JANATA SAHAKARI BANK LIMITED", - "code": "JSBP", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "158", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "KALLAPPANNA AWADE ICHALKARANJI JANATA SAHAKARI BANK LIMITED", - "code": "KAIJ", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "412", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "KALUPUR COMMERCIAL COOPERATIVE BANK", - "code": "KCCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "154", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "KALYAN JANATA SAHAKARI BANK", - "code": "KJSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "343", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "KARNATAKA BANK LIMITED", - "code": "KARB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "51", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "KARNATAKA VIKAS GRAMEENA BANK", - "code": "KVGB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "533", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "KARUR VYSYA BANK", - "code": "KVBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "50", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "KEB HANA BANK", - "code": "KOEX", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "754", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "KERALA GRAMIN BANK", - "code": "KLGB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "539", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "KOZHIKODE DISTRICT COOPERATIAVE BANK LTD", - "code": "KDCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "12271", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "LAXMI VILAS BANK", - "code": "LAVB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "77", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "MAHARASHTRA STATE COOPERATIVE BANK", - "code": "MSCI", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "971", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "MILLENNIUM BANK", - "code": "MLNM", - "serviceable": true, - "preferred": false, - "message": "Supported", - "title": "MILLENIUM", - "netBankingEnabled": false, - "pdfUploadEnabled": false, - "aaEnabled": false, - "aaHlFinarkeinEnabled": true, - "aaFinarkeinFipId": "fip@finbankk" - }, - { - "name": "MAHARASHTRA GRAMIN BANK", - "code": "MAHG", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "175", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "MAHESH SAHAKARI BANK LTD PUNE", - "code": "MSBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "620", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "NAGAR URBAN CO OPERATIVE BANK", - "code": "NUCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "392", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "NAGPUR NAGARIK SAHAKARI BANK LIMITED", - "code": "NGSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "147", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "NAV JEEVAN CO OP BANK LTD", - "code": "NJBK", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "572", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "NEW INDIA COOPERATIVE BANK LIMITED", - "code": "NICB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "178", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "NKGSB COOPERATIVE BANK LIMITED", - "code": "NKGS", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "139", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "NORTH EAST SMALL FINANCE BANK LIMITED", - "code": "NESF", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "775", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "NSDL PAYMENTS BANK LIMITED", - "code": "NSPB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "12476", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "NUTAN NAGARIK SAHAKARI BANK LIMITED", - "code": "NNSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "376", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "ORIENTAL BANK OF COMMERCE", - "code": "ORBC", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "29", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "PAYTM PAYMENTS BANK LTD", - "code": "PYTM", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "268", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "PRAGATHI KRISHNA GRAMIN BANK", - "code": "PKGB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "884", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "PRIME COOPERATIVE BANK LIMITED", - "code": "PMEC", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "520", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "PUNJAB AND SIND BANK", - "code": "PSIB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "31", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "PASCHIM BANGA GRAMIN BANK", - "code": "pgb", - "serviceable": true, - "preferred": false, - "message": "Supported", - "title": "PGB", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "998", - "aaEnabled": false, - "aaHlFinarkeinEnabled": true, - "aaFinarkeinFipId": "PBG-FIP" - }, - { - "name": "RABOBANK INTERNATIONAL", - "code": "RABO", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "557", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "RAJARAMBAPU SAHAKARI BANK LIMITED", - "code": "RRBP", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "585", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "RAJASTHAN MARUDHARA GRAMIN BANK", - "code": "RMGB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "390", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "RAJGURUNAGAR SAHAKARI BANK LIMITED", - "code": "RSBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "707", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "RAJKOT NAGRIK SAHAKARI BANK LIMITED", - "code": "RNSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "608", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "RBL BANK LIMITED", - "code": "RATN", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "81", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SAHEBRAO DESHMUKH COOPERATIVE BANK LIMITED", - "code": "SAHE", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "600", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SAMARTH SAHAKARI BANK LTD", - "code": "SBLS", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "948", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SANT SOPANKAKA SAHAKARI BANK LTD", - "code": "SANT", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "369", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SARASWAT COOPERATIVE BANK LIMITED", - "code": "SRCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "72", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SBM BANK INDIA LIMITED", - "code": "STCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "12047", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SHIKSHAK SAHAKARI BANK LIMITED", - "code": "SKSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "828", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SHINHAN BANK", - "code": "SHBK", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "711", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SHIVALIK MERCANTILE CO OPERATIVE BANK LTD", - "code": "SMCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "389", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SHRI CHHATRAPATI RAJASHRI SHAHU URBAN COOPERATIVE BANK LIMITED", - "code": "CRUB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "259", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SIR M VISVESVARAYA CO OPERATIVE BANK LTD", - "code": "MVCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "12272", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SOLAPUR JANATA SAHAKARI BANK LIMITED", - "code": "SJSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "391", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SOUTH INDIAN BANK", - "code": "SIBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "52", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "STATE BANK OF INDIA", - "code": "SBIN", - "serviceable": true, - "preferred": true, - "message": "Supported", - "iconUrl": "https://prod-navi-tnc-privacy-policy-resources.s3.ap-south-1.amazonaws.com/icons/SBI.png", - "title": "SBI", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "35", - "aaEnabled": false, - "aaHlFinarkeinEnabled": true, - "aaFinarkeinFipId": "SBI-FIP-ID" - }, - { - "name": "SURAT NATIONAL COOPERATIVE BANK LIMITED", - "code": "SUNB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "464", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SURYODAY SMALL FINANCE BANK LIMITED", - "code": "SURY", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "507", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SUTEX COOPERATIVE BANK LIMITED", - "code": "SUTB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "92", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SYNDICATE BANK", - "code": "SYNB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "41", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SARASPUR NAGRIK CO OPERATIVE BANK LTD SARASPUR", - "code": "SNBK", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "185", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SATARA SAHAKARI BANK LTD", - "code": "TSSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "181", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "SHRI VEERSHAIV CO OP BANK LTD", - "code": "SVSH", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "518", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "TAMILNAD MERCANTILE BANK LIMITED", - "code": "TMBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "75", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "TELANGANA STATE COOP APEX BANK", - "code": "TSAB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "853", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "TEXTILE TRADERS CO-OPERATIVE BANK LIMITED", - "code": "TTCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "401", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE AKOLA DISTRICT CENTRAL COOPERATIVE BANK", - "code": "ADCC", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "28", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE ANDHRA PRADESH STATE COOPERATIVE BANK LIMITED", - "code": "APBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "864", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE BARAMATI SAHAKARI BANK LTD", - "code": "BARA", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "567", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE COSMOS CO OPERATIVE BANK LIMITED", - "code": "COSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "83", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE DELHI STATE COOPERATIVE BANK LIMITED", - "code": "DLSC", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "805", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE GADCHIROLI DISTRICT CENTRAL COOPERATIVE BANK LIMITED", - "code": "GDCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "12378", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE GREATER BOMBAY COOPERATIVE BANK LIMITED", - "code": "GBCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "265", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE GUJARAT STATE COOPERATIVE BANK LIMITED", - "code": "GSCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "530", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE HASTI COOP BANK LTD", - "code": "HCBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "637", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE JALGAON PEOPELS COOPERATIVE BANK LIMITED", - "code": "JPCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "509", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE KANGRA COOPERATIVE BANK LIMITED", - "code": "KANG", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "225", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE KARAD URBAN COOPERATIVE BANK LIMITED", - "code": "KUCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "176", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE KARANATAKA STATE COOPERATIVE APEX BANK LIMITED", - "code": "KSCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "568", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE MEHSANA URBAN COOPERATIVE BANK", - "code": "MSNU", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "91", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE MUMBAI DISTRICT CENTRAL COOPERATIVE BANK LIMITED", - "code": "MDCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "801", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE MUNICIPAL COOPERATIVE BANK LIMITED", - "code": "MUBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "575", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE NAINITAL BANK LIMITED", - "code": "NTBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "166", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE NAVNIRMAN CO-OPERATIVE BANK LIMITED", - "code": "NVNM", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "197", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE NILAMBUR CO OPERATIVE URBAN BANK LTD NILAMBUR", - "code": "NCUB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "12052", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE PANDHARPUR URBAN CO OP. BANK LTD. PANDHARPUR", - "code": "PUCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "194", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE SEVA VIKAS COOPERATIVE BANK LIMITED", - "code": "SVBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "179", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE SINDHUDURG DISTRICT CENTRAL COOP BANK LTD", - "code": "SIDC", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "974", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE SURAT DISTRICT COOPERATIVE BANK LIMITED", - "code": "SDCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "473", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE SURATH PEOPLES COOPERATIVE BANK LIMITED", - "code": "SPCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "244", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE TAMIL NADU STATE APEX COOPERATIVE BANK", - "code": "TNSC", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "594", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE THANE BHARAT SAHAKARI BANK LIMITED", - "code": "TBSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "226", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE THANE DISTRICT CENTRAL COOPERATIVE BANK LIMITED", - "code": "TDCB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "752", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE VARACHHA COOPERATIVE BANK LIMITED", - "code": "VARA", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "157", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE VISHWESHWAR SAHAKARI BANK LIMITED", - "code": "VSBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "457", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE WEST BENGAL STATE COOPERATIVE BANK", - "code": "WBSC", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "12445", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE ZOROASTRIAN COOPERATIVE BANK LIMITED", - "code": "ZCBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "172", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THRISSUR DISTRICT CO-OPERATIVE BANK LTD", - "code": "THRS", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "821", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "TJSB SAHAKARI BANK LTD", - "code": "TJSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "90", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "TUMKUR GRAIN MERCHANTS COOPERATIVE BANK LIMITED", - "code": "TGMB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "512", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE AJARA URBAN CO OP BANK LTD AJARA", - "code": "AJAR", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "877", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE KERALA STATE CO OPERATIVE BANK LTD", - "code": "KSBK", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "12200", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE MALKAPUR URBAN CO OPERATIVE BANK LTD MALKAPUR", - "code": "MKPB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "783", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE MUSLIM CO-OPERATIVE BANK LTD", - "code": "MSLM", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "824", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE PUSAD URBAN COOPERATIVE BANK LTD PUSAD", - "code": "PUSD", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "257", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "THE VIJAY CO OPERATIVE BANK LIMITED", - "code": "VCOB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "519", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "UCO BANK", - "code": "UCBA", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "42", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "UNION BANK OF INDIA", - "code": "UBIN", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "43", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "UNITED BANK OF INDIA", - "code": "UTBI", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "44", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "UNIVERSAL BANK", - "code": "UB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": false, - "aaFipId": "finsharebank", - "aaEnabled": true, - "aaHlFinarkeinEnabled": false - }, - { - "name": "UTKARSH SMALL FINANCE BANK", - "code": "UTKS", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "465", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "VASAI JANATA SAHAKARI BANK LTD", - "code": "VASJ", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "590", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "VASAI VIKAS SAHAKARI BANK LIMITED", - "code": "VVSB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "302", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "VIJAYA BANK", - "code": "VIJB", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "45", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - }, - { - "name": "ZILA SAHAKRI BANK LIMITED GHAZIABAD", - "code": "ZSBL", - "serviceable": true, - "preferred": false, - "message": "Supported", - "netBankingEnabled": false, - "pdfUploadEnabled": true, - "institutionId": "822", - "aaEnabled": false, - "aaHlFinarkeinEnabled": false - } - ] - }, - "serviceProviderWebViewUrl": { - "ctx": { - "journeyId": "73439e3b-41e2-473d-8a16-39a11ef47cec", - "journeyType": "HL_NEW", - "customerReferenceId": "64de037e-9764-4dc5-aea8-fb281d0fafef", - "productCode": "HL-01", - "loanApplication": { - "referenceId": "73439e3b-41e2-473d-8a16-39a11ef47cec", - "accountNumber": "028076629", - "status": "DRAFT", - "loanApplicationType": "HL_FRESH_OFFER" - }, - "primaryApplicant": { - "referenceId": "64de037e-9764-4dc5-aea8-fb281d0fafef", - "mobileNumber": "6666666501", - "name": "akshay kumar", - "pan": "JJJJJ6666R", - "dateOfBirth": "1997-12-12", - "monthlyIncome": 100000.0, - "employmentType": "SALARIED", - "companyName": "NAV (BHARAT) GINNING AND GENERAL MILLS LIMITED", - "personalEmail": { - "email": "axasu@gmail.com", - "verified": false - }, - "allDetailsAvailable": true, - "otpVerificationStatus": "NOT_VERIFIED", - "epfoDetails": { - "uanReferenceId": "5ce3d5b3-f5de-4b5f-9824-0d26a5ee02f9", - "uanLinkedPhoneNumber": "6666666501", - "karzaStatus": "UAN_FOUND", - "createdAt": "2023-11-25T16:54:20.832", - "uan": "100261125475", - "employmentVerificationDetails": { - "latestEpfHistory": [ - ], - "employmentVerificationMode": "UAN", - "verified": false - }, - "verificationData": [ - { - "status": "FAILURE", - "createdAt": "2023-11-25T16:54:20.816" - }, - { - "status": "REJECTED", - "createdAt": "2023-11-25T16:54:20.989" - } - ], - "epfoVerified": false - }, - "active": false, - "panVerified": true, - "workAddress": { - "addressString": "" - }, - "permanentAddress": { - "addressString": "" - }, - "correspondenceAddress": { - "addressString": "" - }, - "bankStatementMetaData": { - "digitapUrlData": { - }, - "verificationUrl": "https://demo.perfios.com//KuberaVault/insights/gl/45a4a869-8467-4dd5-9257-c1d639e9571e", - "verificationData": [ - { - "referenceId": "3364d91d-0ff0-4ce2-a12c-cd96d3a9f0b0", - "processingType": "STATEMENT", - "serviceProvider": "PERFIOS", - "status": "PENDING", - "verificationMetaData": [ - ], - "createdAt": "2023-11-25T16:57:04.00134", - "updatedAt": "2023-11-25T16:57:04.001341", - "initiatedBy": "APP", - "failureReasons": [ - ] - } - ] - }, - "eligibleForDeletion": true, - "kycDetail": { - "CKYC": { - "verificationStatus": "REJECTED", - "validationStatus": "REJECTED", - "createdAt": "2023-11-25T16:54:21.032" - } - }, - "applicantDocuments": [ - ], - "employerCategory": "UNCATEGORIZED", - "additionalDetails": { - }, - "userConsents": { - "EPFO_NUMBER_NOT_LINKED": { - "createdAt": "2023-11-25T16:54:20.857", - "consentStatus": "NO" - } - }, - "userDeclaredClosedObligations": { - }, - "panVerificationStatus": "VERIFIED", - "guarantor": false - }, - "collaterals": { - "propertyId": 121, - "propertyCity": "Bengaluru", - "propertyName": "MilanautomationMiguelautomationproject OvykFmhgpydjKJq", - "towerName": "OvykFmhgpydjKJq", - "projectReferenceId": "5ce48e0e-3a0a-46e0-b550-dc3dedcb2c03", - "developerReferenceId": "019aa96e-9cea-455c-83a9-5ff73aa93eaa", - "developerName": "GarfieldautomationAureliaautomationbuilderGroup", - "propertyReferenceId": "c4ce2c36-dd28-4a2e-813b-aac12b7614bd", - "propertyValue": 10000000, - "propertyOptionType": "FLAT", - "projectName": "MilanautomationMiguelautomationproject", - "address": { - "line2": "doqxMd", - "line3": "Karnataka", - "city": "Bangalore", - "state": "Karnataka", - "pinCode": "560076", - "addressString": "doqxMd, Karnataka, Bangalore, Karnataka - 560076" - }, - "purchaseType": "BUILDER_PURCHASE", - "propertyPreApproved": false, - "propertyCityServiceable": true - }, - "coApplicants": [ - ], - "city": "Bengaluru", - "offerGenerated": false, - "homeLoanStageStatuses": { - }, - "hasDocumentsSubmitted": "PENDING", - "createdAt": "2023-11-25T16:53:46.717", - "journeyVersion": "0.1.7", - "mandateDetails": [ - ], - "repaymentBankAccounts": [ - ], - "contactRMEnabled": false - }, - "status": "SUCCESS", - "errors": [ - ] - }, - "apiPollingResponse": { - "requestId": "3a8a5de2-e483-459c-a090-8eb40cffa30f", - "status": "FAILURE", - "requestType": "APPLICANT_FINANCIAL_DATA_STATUS", - "success": false, - "failure": true - }, - "perfiosApiResponse": { - "ctx": { - "journeyId": "79ad50b5-f907-42c6-9026-907d73766da4", - "journeyType": "HL_NEW", - "customerReferenceId": "5f953de5-2097-460b-9293-b7923041033d", - "productCode": "HL-01", - "loanApplication": { - "referenceId": "79ad50b5-f907-42c6-9026-907d73766da4", - "accountNumber": "022451180", - "status": "DRAFT", - "loanApplicationType": "HL_FRESH_OFFER" - }, - "primaryApplicant": { - "referenceId": "5f953de5-2097-460b-9293-b7923041033d", - "mobileNumber": "6666666005", - "name": "Akshay", - "pan": "CQCPK6767K", - "dateOfBirth": "1990-01-01", - "monthlyIncome": 500000.0, - "employmentType": "SALARIED", - "companyName": "NAVI ELECTRONICS PRIVATE LIMITED", - "personalEmail": { - "email": "abc@gmail.com", - "verified": false - }, - "allDetailsAvailable": true, - "otpVerificationStatus": "NOT_VERIFIED", - "epfoDetails": { - "uanReferenceId": "7264b603-25e7-4974-81bc-174629f395d9", - "uanLinkedPhoneNumber": "6666666005", - "karzaStatus": "UAN_FOUND", - "createdAt": "2023-12-15T07:01:44.47", - "uan": "100261125475", - "verificationData": [ - { - "status": "FAILURE", - "createdAt": "2023-12-15T07:01:44.402" - } - ], - "epfoVerified": false - }, - "active": false, - "panVerified": true, - "workAddress": { - "addressString": "" - }, - "permanentAddress": { - "addressString": "" - }, - "correspondenceAddress": { - "addressString": "" - }, - "bankStatementMetaData": { - "digitapUrlData": { - }, - "verificationUrl": "https://demo.perfios.com//KuberaVault/insights/gl/11b6a8d6-2580-4058-bc81-e7251baaa2ff", - "verificationData": [ - { - "referenceId": "3238881e-eb68-42a7-a34d-ca16a26bfba2", - "processingType": "STATEMENT", - "serviceProvider": "PERFIOS", - "status": "PENDING", - "verificationMetaData": [ - ], - "createdAt": "2023-12-15T07:02:03.092139", - "updatedAt": "2023-12-15T07:02:03.092141", - "initiatedBy": "APP", - "failureReasons": [ - ] - } - ] - }, - "eligibleForDeletion": true, - "kycDetail": { - "CKYC": { - "verificationStatus": "REJECTED", - "validationStatus": "REJECTED", - "createdAt": "2023-12-15T07:01:44.777" - } - }, - "applicantDocuments": [ - ], - "employerCategory": "UNCATEGORIZED", - "additionalDetails": { - }, - "userConsents": { - "EPFO_NUMBER_NOT_LINKED": { - "createdAt": "2023-12-15T07:01:44.478", - "consentStatus": "NO" - } - }, - "userDeclaredClosedObligations": { - }, - "panVerificationStatus": "VERIFIED", - "guarantor": false - }, - "collaterals": { - "propertyCity": "Bengaluru", - "propertyOptionType": "NOT_DECIDED", - "address": { - "city": "Bengaluru", - "addressString": "Bengaluru, " - }, - "propertyPreApproved": false, - "propertyCityServiceable": true - }, - "coApplicants": [ - ], - "city": "Bengaluru", - "offerGenerated": false, - "homeLoanStageStatuses": { - }, - "hasDocumentsSubmitted": "PENDING", - "createdAt": "2023-12-15T07:01:10.077", - "journeyVersion": "0.1.7", - "mandateDetails": [ - ], - "repaymentBankAccounts": [ - ], - "contactRMEnabled": false - }, - "statementUploadInstructionsData": { - "topBackCta": { - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "screenTitle": { - "text": "Upload bank statements", - "font": "TT_REGULAR", - "size": 12, - "textColor": "#191919" - }, - "fromDateText": { - "text": "From Nov 2022", - "textColor": "#191919", - "font": "TT_SEMI_BOLD", - "size": 20, - "lineSpacing": 24, - "substringStyles": [ - { - "font": "TT_MEDIUM", - "textColor": "#FF5732", - "substring": "Nov 2022" - } - ] - }, - "toDateText": { - "text": "to Nov 2023", - "textColor": "#191919", - "font": "TT_SEMI_BOLD", - "size": 20, - "lineSpacing": 24, - "substringStyles": [ - { - "font": "TT_MEDIUM", - "textColor": "#FF5732", - "substring": "Nov 2023" - } - ] - }, - "doInfoData": { - "icon": { - "iconCode": "ICON_HL_SMALL_CIRCLE_GREEN_TICK", - "iconHeight": "20", - "iconWidth": "20" - }, - "title": { - "text": "Do’s", - "font": "TT_SEMI_BOLD", - "size": 20, - "textColor": "#191919" - }, - "instructionsList": [ - "Download the bank statements from your net banking portal.", - "Upload the bank statement in its original format.", - "For multiple files from the same or different banks, upload them successively in a single session." - ] - }, - "doNotInfoData": { - "icon": { - "iconCode": "RED_BG_CROSS", - "iconHeight": "20", - "iconWidth": "20" - }, - "title": { - "text": "Don’ts", - "font": "TT_SEMI_BOLD", - "size": 20, - "textColor": "#191919" - }, - "instructionsList": [ - "In the case of password-protected files, don’t remove the password.", - "Don’t change the name of the file.", - "For multiple files from the same or multiple banks, don’t merge them" - ] - }, - "footer": { - "cta": { - "title": "Upload bank statement", - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - }, - "rectangularInfoCardData": { - "message": { - "text": "Please use your income / salary account", - "font": "TT_REGULAR", - "size": 12, - "textColor": "#4D4D4D" - }, - "backgroundColor": "#FFF8EC", - "icon": { - "iconCode": "ICON_INFO_SIMPLE", - "iconHeight": "16", - "iconWidth": "16" - } - } - }, - "errorBottomSheetData": { - "iconCode": "RED_TICK_MARK_24", - "title": { - "text": "files seems to be incorrect, make sure the following has been resolved:", - "font": "TT_MEDIUM", - "size": 16, - "textColor": "#191919" - }, - "infoList": [ - { - "text": "In the case of password-protected files, Don’t remove the password", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#191919", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "Don’t change the name of the file", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#191919", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - }, - { - "text": "In case of multiple files from the same or multiple banks, don’t merge them", - "font": "NAVI_REGULAR", - "size": 14, - "textColor": "#191919", - "textDrawableData": { - "left": { - "iconCode": "ICON_EXTRA_SMALL_BULLET_DOT" - } - } - } - ], - "rectangularInfoCardData": { - "message": { - "text": "You have only 3 attempts remaining", - "font": "TT_REGULAR", - "size": 14, - "textColor": "#191919", - "substringStyles": [ - { - "font": "TT_MEDIUM", - "textColor": "#191919", - "substring": "3 attempts" - } - ] - }, - "backgroundColor": "#FFF9E4" - }, - "footer": { - "cta": { - "title": "Okay got it", - "url": "", - "parameters": [], - "analyticsEventProperties": { - "name": "", - "properties": {} - } - } - } - } - } - }, - "introScreenPreApprovedUser": { - "header": { - "navigationHeader": { - "iconCode": "ICON_ARROW_LEFT_BLUE", - "backCta": { - "url": "hl/homeLoanIntermediate/HL_LANDING_PAGE", - "analyticsEventProperties": { - "name": "New_HL_Top_Back_Button_Clicked", - "properties": { - "screenName": "Static_Status_Tracker_Service" - } - } - } - } - }, - "content": { - "title": "Pre-approved Home Loan worth", - "subTitle": "INR 50,00,000", - "isPreApproved": true, - "widgets": [ - { - "widgetId": "PropertyDetails", - "widgetName": "LOAN_STEP_ITEM", - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_HOME_CIRCLE_GRAY", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Property details", - "textColor": "#000000", - "size": 16, - "font": "NAVI_BOLD", - "maskForAlfred": false, - "lineSpacing": 0 - }, - "subTitle": { - "text": "Enter your property city & details", - "textColor": "#444444", - "size": 12, - "font": "NAVI_REGULAR", - "maskForAlfred": false, - "lineSpacing": 0 - }, - "isNewWidget": true - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetData": { - "layoutHeight": 36, - "lineType": "VERTICAL", - "lineProperty": "DASHED", - "isNewWidget": true - }, - "widgetLayoutParams": { - "margin": "20,0,0,0", - "strokeWidth": 0 - } - }, - { - "widgetId": "BasicDetails", - "widgetName": "LOAN_STEP_ITEM", - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_PERSON_CIRCLE_GRAY", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Basic details", - "textColor": "#000000", - "size": 16, - "font": "NAVI_BOLD", - "maskForAlfred": false, - "lineSpacing": 0 - }, - "subTitle": { - "text": "Enter personal & employment details", - "textColor": "#444444", - "size": 12, - "font": "NAVI_REGULAR", - "maskForAlfred": false, - "lineSpacing": 0 - }, - "isNewWidget": true - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetData": { - "layoutHeight": 36, - "lineType": "VERTICAL", - "lineProperty": "DASHED", - "isNewWidget": true - }, - "widgetLayoutParams": { - "margin": "20,0,0,0", - "strokeWidth": 0 - } - }, - { - "widgetId": "IncomeVerification", - "widgetName": "LOAN_STEP_ITEM", - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_WALLET_CIRCLE_GRAY", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Income verification", - "textColor": "#000000", - "size": 16, - "font": "NAVI_BOLD", - "maskForAlfred": false, - "lineSpacing": 0 - }, - "subTitle": { - "text": "Share your bank statements", - "textColor": "#444444", - "size": 12, - "font": "NAVI_REGULAR", - "maskForAlfred": false, - "lineSpacing": 0 - }, - "isNewWidget": true - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetData": { - "layoutHeight": 36, - "lineType": "VERTICAL", - "lineProperty": "DASHED", - "isNewWidget": true - }, - "widgetLayoutParams": { - "margin": "20,0,0,0", - "strokeWidth": 0 - } - }, - { - "widgetId": "LoanOffer", - "widgetName": "TAG", - "widgetData": { - "title": { - "text": "LOAN APPROVAL", - "textColor": "#011a48", - "size": 12, - "font": "NAVI_EXTRA_BOLD", - "maskForAlfred": false, - "lineSpacing": 0 - }, - "tagLayoutParams": { - "rootPadding": "8,4,8,4", - "backgroundColor": "#FFF2EF", - "cornerRadius": 24, - "strokeWidth": 0 - }, - "isNewWidget": true - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetData": { - "layoutHeight": 36, - "lineType": "VERTICAL", - "lineProperty": "DASHED", - "isNewWidget": true - }, - "widgetLayoutParams": { - "margin": "20,0,0,0", - "strokeWidth": 0 - } - }, - { - "widgetId": "FinalApproval", - "widgetName": "LOAN_STEP_ITEM", - "widgetData": { - "startIcon": { - "iconCode": "ICON_HL_FINGERPRINT_CIRCLE_GRAY", - "iconHeight": "40", - "iconWidth": "40" - }, - "title": { - "text": "Final approval", - "textColor": "#000000", - "size": 16, - "font": "NAVI_BOLD", - "maskForAlfred": false, - "lineSpacing": 0 - }, - "subTitle": { - "text": "Complete KYC & upload documents", - "textColor": "#444444", - "size": 12, - "font": "NAVI_REGULAR", - "maskForAlfred": false, - "lineSpacing": 0 - }, - "isNewWidget": true - } - }, - { - "widgetId": "VerticalDashedLine", - "widgetName": "STRAIGHT_LINE", - "widgetData": { - "layoutHeight": 36, - "lineType": "VERTICAL", - "lineProperty": "DASHED", - "isNewWidget": true - }, - "widgetLayoutParams": { - "margin": "20,0,0,0", - "strokeWidth": 0 - } - }, - { - "widgetId": "LoanDisbursal", - "widgetName": "TAG", - "widgetData": { - "title": { - "text": "LOAN DISBURSAL", - "textColor": "#011a48", - "size": 12, - "font": "NAVI_EXTRA_BOLD", - "maskForAlfred": false, - "lineSpacing": 0 - }, - "tagLayoutParams": { - "rootPadding": "8,4,8,4", - "backgroundColor": "#FFF2EF", - "cornerRadius": 24, - "strokeWidth": 0 - }, - "isNewWidget": true - } - } - ], - "poweredByTitle": { - "text": "Powered by", - "textColor": "#6B6B6B", - "size": 8, - "fonI t": "NAVI_REGULAR", - "maskForAlfred": false, - "lineSpacing": 0 - }, - "poweredByIcon": { - "iconCode": "ICON_FINSERV_LOGO_PURPLE", - "iconHeight": "11", - "iconWidth": "89" - }, - "disclaimerCheckBox": { - "text": "By proceeding, I agree to NFS Home Loan Privacy Policy and NFS Home Loan Terms of Use", - "span": [ - { - "startSpan": 0, - "endSpan": 85, - "fontColor": "#6B6B6B", - "fontName": "TT_REGULAR", - "fontSize": 12.0, - "underline": false - }, - { - "startSpan": 26, - "endSpan": 54, - "fontColor": "#6B6B6B", - "fontName": "TT_MEDIUM", - "fontSize": 12.0, - "underline": true, - "action": { - "url": "webUrl", - "parameters": [ - { - "key": "url", - "value": "https://public-assets.prod.navi-tech.in/navi-website-assests/docs/Home_Loan_App_Privacy_Policy%5B09-08-2023%5D.pdf" - } - ], - "metaData": { - "clicked": { - "eventName": "hl_pre_sub_module_pp_click" - } - } - } - }, - { - "startSpan": 59, - "endSpan": 85, - "fontColor": "#6B6B6B", - "fontName": "TT_MEDIUM", - "fontSize": 12.0, - "underline": true, - "action": { - "url": "webUrl", - "parameters": [ - { - "key": "url", - "value": "https://public-assets.prod.navi-tech.in/navi-website-assests/docs/Home_Loan_App_T%26Cs%5B09-08-2023%5D.pdf" - } - ], - "metaData": { - "clicked": { - "eventName": "hl_pre_sub_module_tou_click" - } - } - } - } - ] - } - }, - "footer": { - "cta": { - "title": "Check Your Offer", - "url": "hl/homeLoanSteps/HL_FORM", - "parameters": [ - { - "key": "action", - "value": "PERSONAL_DETAILS" - }, - { - "key": "referenceId", - "value": "1ab49cc2-1f32-4bce-add2-a3cf88843fbc" - } - ], - "analyticsEventProperties": { - "name": "New_HL_Tracker_Submit", - "properties": { - "deeplink": "https://m.navi.com/MoFm0B4Ohzb", - "screenName": "Static_Status_Tracker_Service", - "customerReferenceId": "1ab49cc2-1f32-4bce-add2-a3cf88843fbc", - "user_consent": "true" - } - } - } - } - } -} - diff --git a/android/navi-insurance/build.gradle b/android/navi-insurance/build.gradle index 1c8d565f85..b0fde4cb34 100644 --- a/android/navi-insurance/build.gradle +++ b/android/navi-insurance/build.gradle @@ -49,14 +49,6 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - buildConfigField 'String', 'GI_RAZORPAY_KEY', formatString('rzp_test_vBmFshr0H06Hoe') - buildConfigField 'String', 'GOOGLE_MAPS_KEY', formatString('AIzaSyD-7-YhOAzX4VJfVLsHUz8KEn-1MGJq46o') - manifestPlaceholders = [ - GOOGLE_MAPS_KEY: "AIzaSyD-7-YhOAzX4VJfVLsHUz8KEn-1MGJq46o" - ] - } qa { isDefault true dimension "app" @@ -66,14 +58,6 @@ android { GOOGLE_MAPS_KEY: "AIzaSyD-7-YhOAzX4VJfVLsHUz8KEn-1MGJq46o" ] } - mock { - dimension "app" - buildConfigField 'String', 'GI_RAZORPAY_KEY', formatString('rzp_test_vBmFshr0H06Hoe') - buildConfigField 'String', 'GOOGLE_MAPS_KEY', formatString('AIzaSyD-7-YhOAzX4VJfVLsHUz8KEn-1MGJq46o') - manifestPlaceholders = [ - GOOGLE_MAPS_KEY: "AIzaSyD-7-YhOAzX4VJfVLsHUz8KEn-1MGJq46o" - ] - } prod { dimension "app" if (project.hasProperty('GI_RAZORPAY_KEY') && project.hasProperty('GOOGLE_MAPS_KEY')) { diff --git a/android/navi-insurance/src/dev/res/raw/mock_api.json b/android/navi-insurance/src/dev/res/raw/mock_api.json deleted file mode 100644 index 60b1161c51..0000000000 --- a/android/navi-insurance/src/dev/res/raw/mock_api.json +++ /dev/null @@ -1,14184 +0,0 @@ -{ - "dashboardResponse": { - "headerWidget": [], - "contentWidget": [ - { - "widgetId": "freeInsuranceSuccessWidget", - "widgetName": "FREE_INSURANCE_SUCCESS_WIDGET", - "widgetLayoutParams": { - "backgroundColor": "#E2F0FF" - }, - "widgetData": { - "iconCode": "ICON_EXPIRED", - "title": { - "text": "Offer expiring soon", - "textColor": "#FF5732", - "font": "BOLD", - "size": 14 - }, - "description": { - "text": "Your health security is\ngetting over in 7 DAYS ", - "textColor": "#011A48", - "font": "REGULAR", - "size": 16, - "substringStyles": [ - { - "substring": "health security", - "font": "EXTRA_BOLD" - }, - { - "substring": " 7 DAYS", - "font": "EXTRA_BOLD", - "textColor": "#FF5732" - } - ] - }, - "footerText": { - "text": "We will cover for", - "textColor": "#4B4968", - "font": "BOLD", - "size": 12 - }, - "diseaseAnimationId": "disease_lottie", - "successAnimationId": "shield_animation", - "cta": { - "url": "gi/insurance_container/payment_review_screen", - "parameters": [ - { - "key": "policyId", - "value": "G-RA002KLG" - }, - { - "key": "quoteId", - "value": "370470a3ff4a4f448fdba622c34d09b9" - }, - { - "key": "applicationType", - "value": "FREE_INSURANCE" - }, - { - "key": "days_left", - "value": "7" - }, - { - "key": "widget_id", - "value": "insurance:dashboard:fi:safety_shield" - }, - { - "key": "pageName", - "value": "LANDING_PAGE" - } - ] - }, - "backgroundGradient": { - "startGradientColor": "#FFFFFF", - "endGradientColor": "#FFEBE7", - "angle": 180, - "orientation": "TOP_BOTTOM" - }, - "metaData": { - "clicked": { - "eventName": "dashboard_card_click", - "parameters": { - "days_left": "7", - "widget_id": "insurance:dashboard:fi:safety_shield" - } - } - } - } - }, - { - "widgetId": "PRODUCT_CLICK_CARD_CAROUSAL_WIDGET", - "widgetName": "PRODUCT_CLICK_CARD_CAROUSAL_WIDGET", - "widgetLayoutParams": { - "rootPadding": "0,32,0,0", - "margin": "0,0,0,0" - }, - "widgetData": { - "gradient": { - "startGradientColor": "#FFEBE7", - "endGradientColor": "#FFFFFF", - "orientation": "TOP_BOTTOM" - }, - "carousalItems": [ - { - "cta": { - "url": "gi/payment_review_activity", - "parameters": [ - { - "key": "policyId", - "value": "G-RA002KLG" - } - ], - "analyticsEventProperties": { - "name": "dashboard_card_click", - "properties": { - "days_left": "7", - "button_id": "Extend Validity", - "screenName": "Dashboard", - "widget_id": "insurance:dashboard:fi:top_carousel" - } - } - }, - "itemStyle": { - "cornerRadius": "8,8,8,8", - "backgroundColor": "#FFFFFF" - }, - "itemTag": { - "itemTagText": { - "text": "EXTEND VALIDITY", - "textColor": "#FFFFFF", - "font": "EXTRA_BOLD", - "size": 10 - }, - "itemTagStyle": { - "cornerRadius": "8,0,0,8", - "backgroundColor": "#F7B500" - } - }, - "imageWidth": 44, - "itemImage": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/extend_validity.png" - }, - "title": { - "text": "Get insured for 1 year\n@ ₹276 ₹235/month", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 12, - "substringStyles": [ - { - "substring": "₹276", - "relativeSize": 0.83, - "font": "SEMI_BOLD", - "textColor": "#6B6B6B", - "shouldStrikeOff": true - }, - { - "substring": "₹235", - "relativeSize": 1.3333, - "font": "EXTRA_BOLD", - "textColor": "#1A1A1A" - }, - { - "substring": "/month", - "relativeSize": 0.83, - "font": "SEMI_BOLD", - "textColor": "#6B6B6B" - } - ] - }, - "titleTag": { - "titleTagText": { - "text": "10% OFF", - "textColor": "#22A940", - "font": "BOLD", - "size": 10 - }, - "titleTagStyle": { - "backgroundColor": "#E6FFD8", - "borderRadius": "9" - } - }, - "itemButton": { - "itemButtonText": { - "text": "Pay now", - "textColor": "#FFFFFF", - "font": "BOLD", - "size": 14 - }, - "itemButtonStyle": { - "backgroundColor": "#FF5732", - "borderRadius": "20" - } - } - }, - { - "cta": { - "url": "gi/view_video", - "parameters": [ - { - "key": "videoId", - "value": "49FHqmczVWI" - }, - { - "key": "SCREEN_NAME", - "value": "dashboard" - }, - { - "key": "DAYS_LEFT", - "value": "7" - } - ], - "analyticsEventProperties": { - "name": "dashboard_card_click", - "properties": { - "days_left": "7", - "screenName": "Dashboard", - "widget_id": "insurance:dashboard:fi:video_clicked" - } - } - }, - "itemStyle": { - "cornerRadius": "8,8,8,8", - "backgroundColor": "#FFFFFF" - }, - "itemTag": { - "itemTagText": { - "text": "MUST WATCH", - "textColor": "#FFFFFF", - "font": "EXTRA_BOLD", - "size": 10 - }, - "itemTagStyle": { - "cornerRadius": "8,0,0,8", - "backgroundColor": "#CA6100" - } - }, - "imageWidth": 64, - "itemImage": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/video_thumbnail.png" - }, - "title": { - "text": "How & where to use this?", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "titleTag": { - "titleTagText": { - "text": "50K+ views", - "textColor": "#CA6100", - "font": "BOLD", - "size": 10 - }, - "titleTagStyle": { - "backgroundColor": "#FFE8A7", - "borderRadius": "9" - } - }, - "itemButton": { - "itemButtonText": { - "text": "Watch", - "textColor": "#FF5732", - "font": "BOLD", - "size": 14 - }, - "itemButtonStyle": { - "backgroundColor": "#F5F5F5", - "borderRadius": "20" - } - } - }, - { - "cta": { - "url": "gi/free_insurance/fi_calendar", - "parameters": [ - { - "key": "policyId", - "value": "G-RA002KLG" - }, - { - "key": "selectedTabPosition", - "value": "0" - } - ], - "analyticsEventProperties": { - "name": "dashboard_card_click", - "properties": { - "days_left": "7", - "button_id": "Try Now", - "screenName": "Dashboard", - "widget_id": "insurance:dashboard:fi:top_carousel" - } - } - }, - "itemStyle": { - "cornerRadius": "8,8,8,8", - "backgroundColor": "#FFFFFF" - }, - "itemTag": { - "itemTagText": { - "text": "EXCLUSIVE", - "textColor": "#FFFFFF", - "font": "EXTRA_BOLD", - "size": 10 - }, - "itemTagStyle": { - "cornerRadius": "8,0,0,8", - "backgroundColor": "#22A940" - } - }, - "imageWidth": 52, - "itemImage": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/gift_box.png" - }, - "title": { - "text": "Get a gift box, health\ncheckups & more", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 12 - }, - "titleTag": { - "titleTagText": { - "text": "FREE", - "textColor": "#22A940", - "font": "BOLD", - "size": 10 - }, - "titleTagStyle": { - "backgroundColor": "#E6FFD8", - "borderRadius": "9" - } - }, - "itemButton": { - "itemButtonText": { - "text": "Try now", - "textColor": "#FFFFFF", - "font": "BOLD", - "size": 14 - }, - "itemButtonStyle": { - "backgroundColor": "#FF5732", - "borderRadius": "20" - } - } - } - ] - } - }, - { - "widgetId": "", - "widgetName": "SEPARATOR", - "widgetData": { - "height": 24, - "bgColor": "#FFFFFF" - } - }, - { - "widgetId": "", - "widgetName": "PRODUCT_HEADER_WIDGET", - "widgetLayoutParams": {}, - "widgetData": { - "text": "My Active Plans", - "subText": "01" - } - }, - { - "widgetId": "", - "widgetName": "SEPARATOR", - "widgetData": { - "height": 24, - "bgColor": "#FFFFFF" - } - }, - { - "widgetId": "EMPTY_PRODUCT_WIDGET", - "widgetName": "EMPTY_PRODUCT_WIDGET", - "widgetLayoutParams": {}, - "widgetData": { - "items": [ - { - "header": { - "bgColor": "#F1F2F4", - "text": "HEALTH INSURANCE" - }, - "content": { - "iconUrl": "https://navi-sa-assets.s3.ap-south-1.amazonaws.com/dashboard/gi/Health_Risk_Dashboard.png", - "title": "You don’t have any policy but, here’s why you need one", - "description": { - "text": "Answer few questions and know it for yourself." - } - }, - "actionData": { - "screenName": "Dashboard", - "url": "gi/insurance_container/payment_review_screen", - "title": "Let’s Start", - "parameters": [ - { - "key": "type", - "value": "HRS" - } - ], - "metaData": { - "clicked": { - "eventName": "dashboard_card_click", - "parameters": { - "widget_id": "insurance:dashboard:HRC", - "widget_name": "EmptyProductWidget", - "button_identifier": "Let’s Start" - } - } - } - } - } - ], - "visibleItem": 1.0 - } - }, - { - "widgetId": "seperator1", - "widgetName": "SEPARATOR_WIDGET", - "widgetData": { - "container": { - "bgColor": "#FFFFFF", - "height": 36 - }, - "separator": { - "bgColor": "#F5F5F5", - "height": 4, - "margin": { - "startDp": 0, - "endDp": 0, - "topDp": 32, - "bottomDp": 0 - } - } - } - }, - { - "widgetId": "HORIZONTAL_STORY_LIST_WIDGET", - "widgetName": "HORIZONTAL_STORY_LIST_WIDGET", - "widgetLayoutParams": { - "margin": "14,12,14,0" - }, - "widgetData": { - "listItems": [ - { - "title": { - "text": "Pre & Post Hospitalisation", - "textColor": "#444444", - "font": "SEMI_BOLD", - "size": 14 - }, - "itemState": "NOT_OPENED", - "image": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v4/benefit_explainer/video_explainer/story_icon/Group+37089.png", - "aspectRatio": "1.0" - }, - "storyWidget": { - "widgetName": "VIDEO_WITH_TITLE_SUBTITLE_STORY", - "widgetData": { - "header": { - "title": { - "text": "Benefits" - }, - "rightIcon": { - "iconCode": "CROSS_WHITE", - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "gi_benfexplainer_videoplay_close", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - } - } - }, - "footer": { - "title": { - "text": "Pre and Post Hospitalisation" - }, - "subTitle": { - "text": "Expenses from 90 days before hospitalisation are covered, Expenses of 180 days after hospitalisation are also covered" - }, - "tag": { - "text": "Included" - } - }, - "video": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v4/benefit_explainer/video_explainer/story_videos/Pre+%26+Post+Hospitalisation-wJmLHcPQrOY.mp4", - "type": "mp4", - "events": { - "playback_started": { - "name": "gi_benfexplainer_videoplay_view", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - } - } - } - }, - "clickEvent": { - "name": "gi_benfexplainer_mainpage_video_click", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - }, - "leftTapEvent": { - "name": "gi_benfexplainer_videoplay_left_tap", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - }, - "rightTapEvent": { - "name": "gi_benfexplainer_videoplay_right_tap", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - }, - { - "title": { - "text": "Organ Donation", - "textColor": "#444444", - "font": "SEMI_BOLD", - "size": 14 - }, - "itemState": "NOT_OPENED", - "image": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v4/benefit_explainer/video_explainer/story_icon/Group+37090.png", - "aspectRatio": "1.0" - }, - "storyWidget": { - "widgetName": "VIDEO_WITH_TITLE_SUBTITLE_STORY", - "widgetData": { - "header": { - "title": { - "text": "Benefits" - }, - "rightIcon": { - "iconCode": "CROSS_WHITE", - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "gi_benfexplainer_videoplay_close", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - } - } - }, - "footer": { - "title": { - "text": "Organ Donation" - }, - "subTitle": { - "text": "Medical and surgical expenses of the organ donor" - }, - "tag": { - "text": "Included" - } - }, - "video": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v4/benefit_explainer/video_explainer/story_videos/Organ+Donation-FFAfpeHEYck.mp4", - "type": "mp4", - "events": { - "playback_started": { - "name": "gi_benfexplainer_videoplay_view", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - } - } - } - }, - "clickEvent": { - "name": "gi_benfexplainer_mainpage_video_click", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - }, - "leftTapEvent": { - "name": "gi_benfexplainer_videoplay_left_tap", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - }, - "rightTapEvent": { - "name": "gi_benfexplainer_videoplay_right_tap", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - }, - { - "title": { - "text": "100% Hospitalisation Bill Covered", - "textColor": "#444444", - "font": "SEMI_BOLD", - "size": 14 - }, - "itemState": "NOT_OPENED", - "image": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v4/benefit_explainer/video_explainer/story_icon/Group+37091.png", - "aspectRatio": "1.0" - }, - "storyWidget": { - "widgetName": "VIDEO_WITH_TITLE_SUBTITLE_STORY", - "widgetData": { - "header": { - "title": { - "text": "Benefits" - }, - "rightIcon": { - "iconCode": "CROSS_WHITE", - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "gi_benfexplainer_videoplay_close", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - } - } - }, - "footer": { - "title": { - "text": "100% Hospitalisation Bill Covered" - }, - "subTitle": { - "text": "All planned and unplanned hospitalisations are 100% covered by Navi, Expenses from the date of admission are covered, Charges up to the date of discharge are covered, No hidden terms & conditions" - }, - "tag": { - "text": "Included" - } - }, - "video": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v4/benefit_explainer/video_explainer/story_videos/100%25+Hospitalisation+Bill+Covered-O1stjwLD6q8.mp4", - "type": "mp4", - "events": { - "playback_started": { - "name": "gi_benfexplainer_videoplay_view", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - } - } - } - }, - "clickEvent": { - "name": "gi_benfexplainer_mainpage_video_click", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - }, - "leftTapEvent": { - "name": "gi_benfexplainer_videoplay_left_tap", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - }, - "rightTapEvent": { - "name": "gi_benfexplainer_videoplay_right_tap", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - }, - { - "title": { - "text": "Day Care", - "textColor": "#444444", - "font": "SEMI_BOLD", - "size": 14 - }, - "itemState": "NOT_OPENED", - "image": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v4/benefit_explainer/video_explainer/story_icon/Group+37092.png", - "aspectRatio": "1.0" - }, - "storyWidget": { - "widgetName": "VIDEO_WITH_TITLE_SUBTITLE_STORY", - "widgetData": { - "header": { - "title": { - "text": "Benefits" - }, - "rightIcon": { - "iconCode": "CROSS_WHITE", - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "gi_benfexplainer_videoplay_close", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - } - } - }, - "footer": { - "title": { - "text": "Day Care" - }, - "subTitle": { - "text": "For Hospitalisations that are less than 24 hours, For example procedures like biopsy, dialysis, angiography etc" - }, - "tag": { - "text": "Included" - } - }, - "video": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v4/benefit_explainer/video_explainer/story_videos/Day+Care-MStw3mdak60.mp4", - "type": "mp4", - "events": { - "playback_started": { - "name": "gi_benfexplainer_videoplay_view", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - } - } - } - }, - "clickEvent": { - "name": "gi_benfexplainer_mainpage_video_click", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - }, - "leftTapEvent": { - "name": "gi_benfexplainer_videoplay_left_tap", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - }, - "rightTapEvent": { - "name": "gi_benfexplainer_videoplay_right_tap", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - }, - { - "title": { - "text": "Modern Treatments", - "textColor": "#444444", - "font": "SEMI_BOLD", - "size": 14 - }, - "itemState": "NOT_OPENED", - "image": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v4/benefit_explainer/video_explainer/story_icon/Group+37093.png", - "aspectRatio": "1.0" - }, - "storyWidget": { - "widgetName": "VIDEO_WITH_TITLE_SUBTITLE_STORY", - "widgetData": { - "header": { - "title": { - "text": "Benefits" - }, - "rightIcon": { - "iconCode": "CROSS_WHITE", - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "gi_benfexplainer_videoplay_close", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - } - } - }, - "footer": { - "title": { - "text": "Modern Treatments" - }, - "subTitle": { - "text": "Advanced medical procedures are covered, For example robotic surgeries, stem cell therapy, oral chemotherapy etc" - }, - "tag": { - "text": "Included" - } - }, - "video": { - "url": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v4/benefit_explainer/video_explainer/story_videos/Modern+Treatments-szZLeTls9K0.mp4", - "type": "mp4", - "events": { - "playback_started": { - "name": "gi_benfexplainer_videoplay_view", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - } - } - } - }, - "clickEvent": { - "name": "gi_benfexplainer_mainpage_video_click", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - }, - "leftTapEvent": { - "name": "gi_benfexplainer_videoplay_left_tap", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - }, - "rightTapEvent": { - "name": "gi_benfexplainer_videoplay_right_tap", - "properties": { - "benefit_name": "test benefit", - "widget_id": "test widget" - } - } - } - ], - "onFinishCta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "gi/insurance_container/policy_benefits_screen", - "analyticsEvent": "HI_btn_click_quote_view_benefits_NAVHLIP22133V012122_1_PLAN_7", - "parameters": [ - { - "key": "tabId", - "value": "included" - }, - { - "key": "planId", - "value": "NAVHLIP22133V012122_1_PLAN_7" - }, - { - "key": "benefitsType", - "value": "POLICY" - } - ], - "analyticsEventProperties": { - "name": "gi_benfexplainer_mainpage_benefit_viewall_click", - "properties": { - "plan_id": "NAVHLIP22133V012122_1_PLAN_7", - "screen_name": "gi_lp", - "widget_id": "tab_id" - } - } - }, - "title": { - "leftText": { - "text": "Policy benefits", - "textColor": "#22223D", - "font": "NAVI_EXTRA_BOLD", - "size": 16 - }, - "rightText": { - "text": "Learn more", - "textColor": "#FF5732", - "font": "BOLD", - "size": 14, - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "gi/insurance_container/policy_benefits_screen", - "analyticsEvent": "HI_btn_click_quote_view_benefits_NAVHLIP22133V012122_1_PLAN_7", - "parameters": [ - { - "key": "tabId", - "value": "included" - }, - { - "key": "planId", - "value": "NAVHLIP22133V012122_1_PLAN_7" - }, - { - "key": "benefitsType", - "value": "POLICY" - } - ], - "analyticsEventProperties": { - "name": "gi_benfexplainer_mainpage_benefit_viewall_click", - "properties": { - "plan_id": "NAVHLIP22133V012122_1_PLAN_7", - "screen_name": "gi_lp", - "widget_id": "tab_id" - } - } - } - } - }, - "borderColorOpenedState": { - "startGradientColor": "#E3E5E5", - "endGradientColor": "#E3E5E5", - "angle": 270 - }, - "borderColorNotOpenedState": { - "startGradientColor": "#FF8368", - "endGradientColor": "#F9502A", - "angle": 270 - } - } - }, - { - "widgetId": "seperator1.1", - "widgetName": "SEPARATOR_WIDGET", - "widgetData": { - "container": { - "bgColor": "#FFFFFF", - "height": 28 - } - } - }, - { - "widgetId": "insuranceBenefitsImageBannerWidget", - "widgetName": "IMAGE_BANNER_WIDGET", - "widgetData": { - "titleV2": { - "text": "Added Benefits", - "span": [ - { - "startSpan": 0, - "endSpan": 14, - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#22223D", - "fontSize": "16" - } - ] - }, - "label": { - "item": { - "text": "Free", - "span": [ - { - "startSpan": 0, - "endSpan": 4, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#EA9E0B", - "fontSize": "12" - } - ] - }, - "bgColor": "#FAF3EB" - }, - "aspectRatio": 0.4594, - "banners": [ - { - "imageUrl": "https://navi-sa-assets.s3.ap-south-1.amazonaws.com/dashboard/gi/full_body_checkup.png", - "actionData": { - "url": "show_bottomsheet/bottomsheet_select_policy", - "parameters": [ - { - "key": "selectPolicy", - "value": "{\"policies\":[{\"policyId\":\"G-RA002KLG\",\"sumInsured\":200000,\"numberOfMembersInsured\":1,\"status\":\"ACTIVE\"}],\"actionData\":{\"url\":\"gi/dashboard/web_view\",\"title\":\"Continue\",\"parameters\":[{\"key\":\"POLICY_BENEFIT_TYPE\",\"value\":\"OPD\"}],\"metaData\":{\"clicked\":{\"eventName\":\"dashboard_card_click\",\"parameters\":{\"widget_id\":\"insurance:dashboard:added_benefits_bottomsheet\",\"button_identifier\":\"Continue\"}}}}}" - } - ] - }, - "metaData": { - "clicked": { - "eventName": "dashboard_card_click", - "parameters": { - "button_identifier": "Book Now", - "widget_id": "insurance:dashboard:carousel_full_body_check_up" - } - }, - "viewed": { - "eventName": "dashboard_card_view", - "parameters": { - "widget_id": "insurance:dashboard:carousel_full_body_check_up" - } - } - } - }, - { - "imageUrl": "https://navi-sa-assets.s3.ap-south-1.amazonaws.com/dashboard/gi/free_con.png", - "actionData": { - "url": "show_bottomsheet/bottomsheet_select_policy", - "parameters": [ - { - "key": "selectPolicy", - "value": "{\"policies\":[{\"policyId\":\"G-RA002KLG\",\"sumInsured\":200000,\"numberOfMembersInsured\":1,\"status\":\"ACTIVE\"}],\"actionData\":{\"url\":\"gi/dashboard/web_view\",\"title\":\"Continue\",\"parameters\":[{\"key\":\"POLICY_BENEFIT_TYPE\",\"value\":\"OC\"}],\"metaData\":{\"clicked\":{\"eventName\":\"dashboard_card_click\",\"parameters\":{\"widget_id\":\"insurance:dashboard:added_benefits_bottomsheet\",\"button_identifier\":\"Continue\"}}}}}" - } - ] - }, - "metaData": { - "clicked": { - "eventName": "dashboard_card_click", - "parameters": { - "button_identifier": "Book Now", - "widget_id": "insurance:dashboard:carousel_unlimited_online_consult" - } - }, - "viewed": { - "eventName": "dashboard_card_view", - "parameters": { - "widget_id": "insurance:dashboard:carousel_unlimited_online_consult" - } - } - } - } - ], - "scrollTime": 3 - } - }, - { - "widgetId": "seperator2", - "widgetName": "SEPARATOR_WIDGET", - "widgetData": { - "container": { - "bgColor": "#FFFFFF", - "height": 28 - } - } - }, - { - "widgetId": "insuranceJourneyWidget", - "widgetName": "ELEVATED_ICON_WIDGET", - "widgetData": { - "title": "Health Insurance", - "items": [ - { - "label": { - "text": "IN PROGRESS", - "bgColor": "#F7B500" - }, - "productUrl": "SHIELD", - "title": "New\nPolicy", - "actionData": { - "screenName": "NaviApp_HomePage_HI_NewPolicy_Clicked", - "url": "gi/fresh_policy_form/form", - "parameters": [ - { - "key": "type", - "value": "FRESH_POLICY" - }, - { - "key": "applicationType", - "value": "FRESH_POLICY" - }, - { - "key": "openIntroBackendFlag", - "value": false - }, - { - "key": "preQuoteId", - "value": "062b7083-2af4-4e28-b246-c4f5d8eea417" - }, - { - "key": "landingPageVersion", - "value": "3" - } - ], - "metaData": { - "clicked": { - "eventName": "home_page_card_click", - "parameters": { - "widget_id": "gi:journey_card:SUB_PRODUCT_FRESH_POLICY", - "widget_name": "HOME_PRODUCT_WIDGET", - "button_identifier": "New\nPolicy" - } - } - } - } - }, - { - "productUrl": "UMBRELLA", - "title": "Super\ntop-up", - "actionData": { - "screenName": "NaviApp_HomePage_HI_Supertop-up_Clicked", - "url": "gi/super_top_up_form/form", - "parameters": [ - { - "key": "applicationType", - "value": "SUPER_TOP_UP" - } - ], - "metaData": { - "clicked": { - "eventName": "home_page_card_click", - "parameters": { - "widget_id": "gi:journey_card:SUB_PRODUCT_SUPER_TOP_UP", - "widget_name": "HOME_PRODUCT_WIDGET", - "button_identifier": "Super\ntop-up" - } - } - } - } - }, - { - "productUrl": "PORT", - "title": "Port health\ninsurance", - "actionData": { - "screenName": "NaviApp_HomePage_HI_Porthealthinsurance_Clicked", - "url": "gi/porting_form/form", - "parameters": [ - { - "key": "applicationType", - "value": "EXTERNAL_PORTING" - } - ], - "metaData": { - "clicked": { - "eventName": "home_page_card_click", - "parameters": { - "widget_id": "gi:journey_card:SUB_PRODUCT_EXTERNAL_PORTING", - "widget_name": "HOME_PRODUCT_WIDGET", - "button_identifier": "Port health\ninsurance" - } - } - } - } - } - ], - "metaData": {} - } - }, - { - "widgetId": "lookingForHospitalsWidget", - "widgetName": "HOME_PRODUCT_WIDGET", - "widgetData": { - "productDetails": { - "title": { - "text": "Looking for hospitals?", - "span": [ - { - "startSpan": 0, - "endSpan": 22, - "fontName": "NAVI_EXTRA_BOLD", - "fontColor": "#22223D", - "fontSize": "16" - } - ] - }, - "subtitle": { - "text": "11,000+ Cashless Hospitals", - "span": [ - { - "startSpan": 0, - "endSpan": 26, - "fontName": "NAVI_REGULAR", - "fontColor": "#4B4968", - "fontSize": "12" - } - ] - }, - "actionData": { - "url": "gi/hospitals", - "title": "View All", - "titleColor": "#011A48", - "bgColor": "#FFFFFF" - }, - "imageUrl": "INSURANCE_HOSPITAL", - "imagePadding": { - "startDp": 0, - "endDp": 8, - "topDp": 0, - "bottomDp": 8 - }, - "gradient": { - "startGradientColor": "#E4F4F8", - "endGradientColor": "#AEDCEA", - "angle": 0, - "orientation": "TL_BR" - } - }, - "productStrategy": { - "item": { - "text": "Cashless claims • 99% claim settlement • Top hospitals", - "span": [ - { - "startSpan": 0, - "endSpan": 58, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#FFFFFF", - "fontSize": "10" - } - ] - }, - "bgColor": "#425F94" - }, - "metaData": { - "clicked": { - "eventName": "dashboard_card_click", - "parameters": { - "button_identifier": "View All", - "widget_id": "insurance:dashboard:banner_10000plus_hospitals" - } - }, - "viewed": { - "eventName": "dashboard_card_view", - "parameters": { - "widget_id": "insurance:dashboard:banner_10000plus_hospitals" - } - } - } - } - }, - { - "widgetId": "seperator3", - "widgetName": "SEPARATOR_WIDGET", - "widgetData": { - "container": { - "bgColor": "#FFFFFF", - "height": 36 - }, - "separator": { - "bgColor": "#F5F5F5", - "height": 4, - "margin": { - "startDp": 0, - "endDp": 0, - "topDp": 16, - "bottomDp": 0 - } - } - } - }, - { - "widgetId": "referWidget", - "widgetName": "HOME_PRODUCT_WIDGET", - "widgetData": { - "productDetails": { - "title": { - "text": "Become Health Warrior", - "span": [ - { - "startSpan": 0, - "endSpan": 21, - "fontName": "NAVI_BOLD", - "fontColor": "#ff5732", - "fontSize": "16" - } - ] - }, - "subtitle": { - "text": "Safeguard your friends & family", - "span": [ - { - "startSpan": 0, - "endSpan": 21, - "fontName": "NAVI_SEMI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": "12" - } - ] - }, - "actionData": { - "url": "gi/insurance_share_sheet", - "title": "Refer Now", - "titleColor": "#FFFFFF", - "bgColor": "#011A48" - }, - "imageUrl": "INSURANCE_HAND_SHIELD", - "imagePadding": { - "startDp": 0, - "endDp": 16, - "topDp": 0, - "bottomDp": 16 - } - }, - "metaData": { - "viewed": { - "eventName": "dashboard_card_view", - "parameters": { - "widget_id": "insurance:dashboard:referral_card" - } - } - } - } - }, - { - "widgetId": "seperator4", - "widgetName": "SEPARATOR_WIDGET", - "widgetData": { - "container": { - "bgColor": "#FFFFFF", - "height": 30 - } - } - }, - { - "widgetId": "eiaWidget", - "widgetName": "TEXT_WITH_UNDERLINE", - "widgetData": { - "item": { - "text": "Have an eIA number?", - "span": [ - { - "startSpan": 0, - "endSpan": 19, - "fontName": "NAVI_BOLD", - "fontColor": "#6B6B6B", - "fontSize": "14", - "underline": true - } - ] - }, - "actionData": { - "url": "gi/dashboard/eia_detail" - }, - "metaData": { - "clicked": { - "eventName": "eia_link_click", - "parameters": { - "widget_id": "dashboard:insurance:eiaWidget", - "widget_name": "TEXT_WITH_UNDERLINE", - "button_identifier": "Have an eIA number?" - } - } - } - } - }, - { - "widgetId": "seperator5", - "widgetName": "SEPARATOR_WIDGET", - "widgetData": { - "container": { - "bgColor": "#FFFFFF", - "height": 58 - } - } - } - ], - "footerWidget": [], - "metaData": {} - }, - "paymentReviewScreen": { - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Review & Pay", - "textColor": "#000000", - "font": "REGULAR", - "size": 14 - }, - "titleAlign": "CENTER", - "leftIcon": { - "iconCode": "LEFT_ARROW_WITH_PADDING", - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "HI_ar3_toolbar_close", - "properties": { - "pageType": "{pageType}" - } - } - } - }, - "rightIcon": { - "iconCode": "RED_TEXT_HELP_ICON", - "cta": { - "type": "HELP_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "gi_journey_help_click", - "properties": { - "applicationType": "FRESH_POLICY", - "screenName": "mandatory_question_page", - "relationShipType": "null" - } - } - } - } - } - } - ], - "content": [ - { - "widgetId": "TITLE_WIDGET", - "widgetName": "TITLE_WIDGET", - "widgetData": { - "title": { - "text": "Payment methods", - "textColor": "#000000", - "font": "BOLD", - "size": 16, - "cta": {} - } - }, - "widgetLayoutParams": { - "rootPadding": "0,24,16,8" - } - }, - { - "widgetId": "CB_WITH_RB_CARD_WIDGET", - "widgetName": "CB_WITH_RB_CARD_WIDGET", - "widgetData": { - "items": [ - { - "title": { - "text": "Premium for June 2023", - "textColor": "#444444", - "font": "REGULAR", - "size": 14, - "cta": {} - }, - "subTitle": { - "text": "₹251", - "textColor": "#191919", - "font": "SEMI_BOLD", - "size": 16, - "cta": {} - }, - "selected": true, - "selectedCardState": { - "borderRadius": 12, - "strokeColor": "#FF5732", - "strokeWidth": 1, - "backgroundColor": "#FFFFFF", - "elevation": 4 - }, - "unSelectedCardState": { - "borderRadius": 12, - "strokeColor": "#E3E5E5", - "strokeWidth": 1, - "backgroundColor": "#FFFFFF", - "elevation": 4 - }, - "showDivider": true, - "checkBoxData": { - "checked": true, - "checkedState": { - "title": { - "text": "Setup autopay & win upto ₹1,000! Know more", - "textColor": "#444444", - "font": "REGULAR", - "size": 12, - "substringStyles": [ - { - "substring": "Know more", - "font": "SEMI_BOLD", - "underline": true - } - ], - "cta": { - "url": "gi/incentivise_autopay/incentivise_autopay_fragment", - "parameters": [ - { - "key": "pageType", - "value": "SUMMARY_V2" - }, - { - "key": "overrideBackPress", - "value": "true" - }, - { - "key": "data", - "value": "{\"header\":{\"headerIcon\":{\"iconCode\":\"ICON_PLANT_SAD\"},\"title\":{\"text\":\"You'll miss a chance to win reward of ₹500\",\"textColor\":\"#011A48\",\"font\":\"BOLD\",\"size\":12,\"substringStyles\":[{\"substring\":\"₹500\",\"relativeSize\":1.16,\"textColor\":\"#F7B500\"}]}},\"title\":{\"text\":\"Are you sure you want to exit?\",\"textColor\":\"#191919\",\"font\":\"BOLD\",\"size\":18},\"subTitle\":{\"text\":\"Don't miss out on your limited time reward! Finish autopay setup to claim it.\",\"textColor\":\"#444444\",\"font\":\"REGULAR\",\"size\":14,\"substringStyles\":[{\"substring\":\"limited time\",\"textColor\":\"#FF5732\"}]},\"leftButton\":{\"title\":\"Exit\",\"type\":\"USE_ROOT_DEEPLINK_NAVIGATOR\",\"url\":\"home\"},\"rightButton\":{\"title\":\"Cancel\",\"type\":\"DISMISS_BOTTOMSHEET\"}}" - }, - { - "key": "url", - "value": "gi/bottom_sheet/autopay_setup_back_bottom_sheet" - } - ] - } - }, - "bannerData": { - "icon": { - "iconCode": "RIGHT_CONFETTI_POP_ICON" - }, - "title": { - "text": "Earn upto ₹1,000 cashback", - "textColor": "#2A0038", - "font": "MEDIUM", - "size": 12 - }, - "backgroundColor": "#EDECFF", - "cta": { - "type": "OPTION_SELECTED", - "title": "₹400" - } - }, - "cta": null - }, - "unCheckedState": { - "title": { - "text": "Setup autopay & win upto ₹1,000! Know more", - "textColor": "#444444", - "font": "REGULAR", - "size": 12, - "substringStyles": [ - { - "substring": "Know more", - "font": "MEDIUM" - } - ] - }, - "bannerData": { - "icon": { - "iconCode": "ICON_SAD_FLOWER_POT" - }, - "title": { - "text": "Don’t miss out upto ₹1,000 cashback", - "textColor": "#2A0038", - "font": "MEDIUM", - "size": 12 - }, - "backgroundColor": "#F5F5F5", - "cta": {} - }, - "cta": { - "url": "gi/bottom_sheet/autopay_setup_back_bottom_sheet", - "parameters": [ - { - "key": "contentDataJsonString", - "value": "{\"header\":{\"headerIcon\":{\"iconCode\":\"ICON_PLANT_SAD\"},\"title\":{\"text\":\"You'll miss a chance to win reward of ₹500\",\"textColor\":\"#011A48\",\"font\":\"BOLD\",\"size\":12,\"substringStyles\":[{\"substring\":\"₹500\",\"relativeSize\":1.16,\"textColor\":\"#F7B500\"}]}},\"title\":{\"text\":\"Are you sure you want to exit?\",\"textColor\":\"#191919\",\"font\":\"BOLD\",\"size\":18},\"subTitle\":{\"text\":\"Don't miss out on your limited time reward! Finish autopay setup to claim it.\",\"textColor\":\"#444444\",\"font\":\"REGULAR\",\"size\":14,\"substringStyles\":[{\"substring\":\"limited time\",\"textColor\":\"#FF5732\"}]},\"leftButton\":{\"title\":\"Exit\",\"type\":\"USE_ROOT_DEEPLINK_NAVIGATOR\",\"url\":\"home\"},\"rightButton\":{\"title\":\"Cancel\",\"type\":\"DISMISS_BOTTOMSHEET\"}}" - } - ] - } - } - }, - "clickableData": { - "type": "OPTION_SELECTED", - "title": "₹251" - } - }, - { - "title": { - "text": " Remaining premium (Apr’23-Jan’24)", - "textColor": "#444444", - "font": "REGULAR", - "size": 14, - "cta": {} - }, - "subTitle": { - "text": "₹355", - "textColor": "#191919", - "font": "SEMI_BOLD", - "size": 16, - "cta": {} - }, - "selected": false, - "selectedCardState": { - "borderRadius": 12, - "strokeColor": "#FF5732", - "strokeWidth": 1, - "backgroundColor": "#FFFFFF", - "elevation": 4 - }, - "unSelectedCardState": { - "borderRadius": 12, - "strokeColor": "#E3E5E5", - "strokeWidth": 1, - "backgroundColor": "#FFFFFF", - "elevation": 4 - }, - "showDivider": false, - "checkBoxData": null, - "clickableData": { - "type": "OPTION_SELECTED", - "title": "₹355" - } - } - ] - } - } - ], - "footer": [ - { - "widgetId": "FOOTER_WITH_TITLE_SUBTITLE", - "widgetName": "FOOTER_WITH_TITLE_SUBTITLE", - "widgetData": { - "rightButton": { - "text": "Pay now", - "textColor": "#FFFFFF", - "font": "SEMI_BOLD", - "size": 14, - "cta": {} - }, - "title": { - "text": "₹251", - "textColor": "#000000", - "font": "SEMI_BOLD", - "size": 18, - "cta": {} - } - } - } - ], - "pageLayoutParams": { - "pageBackgroundColor": "#FAFAFA" - } - }, - "aadhaarPollingResponse": { - "continuePolling": true - }, - "aadhaarVerificationResponse": { - "pollingData": { - "pollingInterval": 6000, - "pollingTitle": { - "text": "TESTTTT KYC verification in progress.", - "font": "BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "pollingTimeOutData": { - "timeOutDuration": 8000, - "timeOutTitle": { - "text": "KYC verification in progress. We will update you shortly.", - "font": "BOLD", - "size": 16, - "textColor": "#1A1A1A" - }, - "timeOutIconCode": "SPLIT_COLOR_HOUR_GLASS", - "timeOutCta": { - "title": "Ok, got it!", - "type": "USE_ROOT_DEEPLINK_NAVIGATOR", - "url": "HOME/DASHBOARD/Insurance" - }, - "stopPolling": true - } - }, - "kycReferenceId": "" - }, - "AnnualRenewal": { - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "showDivider": true, - "titleAlign": "CENTER", - "title": { - "text": "Review", - "textColor": "#000000", - "font": "REGULAR", - "size": 14, - "alignment": "CENTER" - }, - "leftIcon": { - "iconCode": "LEFT_ARROW_WITH_PADDING", - "cta": { - "type": "RENEWAL_BACK_BOTTOM_SHEET", - "parameters": [ - { - "key": "bottomSheetData", - "value": "{\"title\":\"Are you sure you want\\nto go back?\",\"subtitle\":\"You will lose your progress if you go back\",\"leftButton\":{\"text\":\"Go back\",\"textColor\":null,\"bgColor\":null,\"font\":null,\"gradient\":null,\"size\":null,\"colorPalette\":null,\"action\":null,\"actionText\":null,\"actionTextColor\":null,\"cta\":{\"type\":\"API_CALL\",\"parameters\":[{\"key\":\"preQuoteId\",\"value\":\"b050a3ce-c9e2-424e-8280-66bce4f91798\"}]},\"highlightFontType\":null,\"alignment\":null,\"shouldStrikeOff\":null,\"masked\":null,\"substringStyles\":null,\"textDrawableData\":null,\"letterSpacing\":null,\"gravity\":null},\"rightButton\":{\"text\":\"Stay here\",\"textColor\":null,\"bgColor\":null,\"font\":null,\"gradient\":null,\"size\":null,\"colorPalette\":null,\"action\":null,\"actionText\":null,\"actionTextColor\":null,\"cta\":{\"type\":\"DISMISS_BOTTOM_SHEET\"},\"highlightFontType\":null,\"alignment\":null,\"shouldStrikeOff\":null,\"masked\":null,\"substringStyles\":null,\"textDrawableData\":null,\"letterSpacing\":null,\"gravity\":null}}" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_back_click", - "properties": { - "screen_name": "renew_policy_renewal" - } - } - } - }, - "rightIcon": { - "iconCode": "RED_TEXT_HELP_ICON", - "cta": { - "type": "HELP_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "HI_ar3_help_click", - "properties": { - "screen_name": "renew_policy_renewal" - } - } - } - } - } - } - ], - "content": [ - { - "widgetId": "TEXT_DISPLAY_WIDGET", - "widgetName": "TEXT_DISPLAY_WIDGET", - "widgetLayoutParams": { - "margin": "16,32,16,0" - }, - "widgetData": { - "title": { - "text": "Review your policy", - "textColor": "#191919", - "font": "BOLD", - "size": 16 - } - } - }, - { - "widgetId": "SECTION_WITH_ITEMS_WIDGET_V2", - "widgetName": "SECTION_WITH_ITEMS_WIDGET_V2", - "widgetLayoutParams": { - "margin": "16,16,16,0" - }, - "widgetData": { - "headerIcon": { - "iconCode": "CIRCULAR_MEMBERS_ICON" - }, - "header": { - "leftText": { - "text": "Insured members", - "textColor": "#191919", - "font": "BOLD", - "size": 14 - }, - "rightText": { - "text": "Edit", - "textColor": "#FF5732", - "font": "BOLD", - "size": 14, - "cta": { - "analyticsEventProperties": { - "name": "HI_ar3_reviewpage_editmembers_click", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - }, - "items": [ - { - "leftText": { - "text": "Test self male", - "textColor": "#585757", - "font": "REGULAR", - "size": 14 - }, - "rightText": { - "text": "33 years", - "textColor": "#585757", - "font": "SEMI_BOLD", - "size": 14 - }, - "layoutParams": { - "backgroundColor": "#E6FFD8", - "borderRadius": "50" - }, - "rightIcon": { - "iconCode": "OUTLINED_DELETE_ICON", - "cta": { - "type": "DELETE_MEMBER_BOTTOM_SHEET", - "parameters": [ - { - "key": "data", - "value": "{\"title\":{\"text\":\"Remove Test self male\"},\"description\":{\"text\":\"Are you sure you want to remove TEST SELF MALE from the policy?\\n\\nRemoved member will not be able to avail any benefits of this policy\",\"textColor\":\"#444444\",\"font\":\"REGULAR\",\"size\":14},\"primaryCta\":{\"title\":\"Yes\",\"type\":\"TRANSITION_API\",\"parameters\":[{\"key\":\"transition\",\"value\":\"DELETE_MEMBER_TRANSITION\"},{\"key\":\"memberId\",\"value\":\"d618288341684fbfb4b47d1a1dac0c51\"}]},\"secondaryCta\":{\"title\":\"No\",\"type\":\"DISMISS_BOTTOM_SHEET\"}}" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_reviewpage_deletemember_click", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - }, - { - "leftText": { - "text": "Test", - "textColor": "#585757", - "font": "REGULAR", - "size": 14 - }, - "tag": { - "text": "New", - "textColor": "#22A940", - "font": "BOLD", - "size": 10 - }, - "rightText": { - "text": "22 years", - "textColor": "#585757", - "font": "SEMI_BOLD", - "size": 14 - }, - "layoutParams": { - "backgroundColor": "#E6FFD8", - "borderRadius": "50" - }, - "rightIcon": { - "iconCode": "OUTLINED_DELETE_ICON", - "cta": { - "type": "DELETE_MEMBER_BOTTOM_SHEET", - "parameters": [ - { - "key": "data", - "value": "{\"title\":{\"text\":\"Remove Test\"},\"description\":{\"text\":\"Are you sure you want to remove test from the policy?\\n\\nRemoved member will not be able to avail any benefits of this policy\",\"textColor\":\"#444444\",\"font\":\"REGULAR\",\"size\":14},\"primaryCta\":{\"title\":\"Yes\",\"type\":\"TRANSITION_API\",\"parameters\":[{\"key\":\"transition\",\"value\":\"DELETE_MEMBER_TRANSITION\"},{\"key\":\"memberId\",\"value\":\"8b2c3a89-c959-427f-898e-686a58c98e2b\"}]},\"secondaryCta\":{\"title\":\"No\",\"type\":\"DISMISS_BOTTOM_SHEET\"}}" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_reviewpage_deletemember_click", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - } - ], - "footer": { - "text": "Add Members", - "textColor": "#FF5732", - "font": "EXTRA_BOLD", - "size": 14, - "cta": { - "type": "TRANSITION_API", - "parameters": [ - { - "key": "transition", - "value": "ADD_MEMBER_TRANSITION" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_reviewpage_addmember_click", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - }, - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_FILLED_PLUS_ICON" - } - } - } - } - }, - { - "widgetId": "SECTION_ITEMS_WITH_SLIDE_SELECTOR_WIDGET", - "widgetName": "SECTION_ITEMS_WITH_SLIDE_SELECTOR_WIDGET", - "widgetLayoutParams": { - "margin": "16,16,16,0" - }, - "widgetData": { - "state": "INITIAL", - "initialState": { - "items": [ - { - "leftText": { - "text": "Total cover", - "textColor": "#6B6B6B", - "font": "REGULAR", - "size": 14 - }, - "rightText": { - "text": "₹ 10,00,000", - "textColor": "#585757", - "font": "SEMI_BOLD", - "size": 14 - } - }, - { - "leftText": { - "text": "Base cover", - "textColor": "#6B6B6B", - "font": "REGULAR", - "size": 14 - }, - "tag": { - "text": "Updated", - "textColor": "#22A940", - "font": "BOLD", - "size": 10 - }, - "rightText": { - "text": "₹ 10,00,000", - "textColor": "#585757", - "font": "SEMI_BOLD", - "size": 14 - }, - "layoutParams": { - "backgroundColor": "#E6FFD8", - "borderRadius": "50" - } - } - ] - }, - "editableState": { - "sliderProgressData": { - "amountMapping": { - "200000": { - "valueInWords": "₹ 2 Lakhs", - "tag": "₹ 2 Lakhs", - "premiumAmount": "₹ 539" - }, - "300000": { - "valueInWords": "₹ 3 Lakhs", - "tag": "₹ 3 Lakhs", - "premiumAmount": "₹ 622" - }, - "400000": { - "valueInWords": "₹ 4 Lakhs", - "tag": "₹ 4 Lakhs", - "premiumAmount": "₹ 705" - }, - "500000": { - "valueInWords": "₹ 5 Lakhs", - "tag": "₹ 5 Lakhs", - "premiumAmount": "₹ 777" - }, - "600000": { - "valueInWords": "₹ 6 Lakhs", - "tag": "₹ 6 Lakhs", - "premiumAmount": "₹ 831" - }, - "700000": { - "valueInWords": "₹ 7 Lakhs", - "tag": "₹ 7 Lakhs", - "premiumAmount": "₹ 886" - }, - "800000": { - "valueInWords": "₹ 8 Lakhs", - "tag": "₹ 8 Lakhs", - "premiumAmount": "₹ 922" - }, - "900000": { - "valueInWords": "₹ 9 Lakhs", - "tag": "₹ 9 Lakhs", - "premiumAmount": "₹ 958" - }, - "1000000": { - "valueInWords": "₹ 10 Lakhs", - "tag": "Current cover", - "premiumAmount": "₹ 994" - }, - "1500000": { - "valueInWords": "₹ 15 Lakhs", - "tag": "₹ 15 Lakhs", - "premiumAmount": "₹ 1139" - }, - "2000000": { - "valueInWords": "₹ 20 Lakhs", - "tag": "₹ 20 Lakhs", - "premiumAmount": "₹ 1247" - }, - "2500000": { - "valueInWords": "₹ 25 Lakhs", - "tag": "₹ 25 Lakhs", - "premiumAmount": "₹ 1319" - }, - "5000000": { - "valueInWords": "₹ 50 Lakhs", - "tag": "₹ 50 Lakhs", - "premiumAmount": "₹ 1572" - }, - "7500000": { - "valueInWords": "₹ 75 Lakhs", - "tag": "₹ 75 Lakhs", - "premiumAmount": "₹ 1717" - }, - "10000000": { - "valueInWords": "₹ 1 Crore", - "tag": "₹ 1 Crore", - "premiumAmount": "₹ 1861" - } - } - }, - "sliderList": [ - { - "widgetKey": "existingSumInsuredValueWidgetKey", - "leftText": { - "text": "₹ 10 Lakhs", - "textColor": "#191919", - "font": "EXTRA_BOLD", - "size": 20 - }, - "tooltipData": { - "title": { - "text": "Slide to change", - "textColor": "#F0F5FC", - "font": "SEMI_BOLD", - "size": 12 - }, - "backgroundColor": "#011A48" - }, - "selectedValue": 1000000, - "amountList": [ - 200000, - 300000, - 400000, - 500000, - 600000, - 700000, - 800000, - 900000, - 1000000, - 1500000, - 2000000, - 2500000, - 5000000, - 7500000, - 10000000 - ], - "defaultSelection": 600000 - } - ], - "showDottedDivider": true, - "title": { - "text": "Current Monthly Premium", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 12 - }, - "subTitle": { - "text": "₹ 994", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 12 - }, - "updatedTitle": { - "text": "Updated Monthly Premium", - "textColor": "#22A940", - "font": "SEMI_BOLD", - "size": 12 - } - }, - "headerIcon": { - "iconCode": "CIRCULAR_MONEY_ICON" - }, - "header": { - "leftText": { - "text": "Cover Amount", - "textColor": "#191919", - "font": "BOLD", - "size": 14 - }, - "rightText": { - "text": "Edit", - "textColor": "#FF5732", - "font": "BOLD", - "size": 14, - "cta": { - "title": "Done", - "type": "EDIT_ANNUAL_RENEWAL_INSURED_DETAILS", - "analyticsEventProperties": { - "name": "HI_ar3_reviewpage_coverdone_click", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - }, - "initialStateCta": { - "analyticsEventProperties": { - "name": "HI_ar3_reviewpage_editcover_click", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - }, - "cardProperties": { - "borderRadius": 16 - } - } - }, - { - "widgetId": "renewSummaryScreen", - "widgetName": "SECTIONS_WITH_ITEMS_WIDGET", - "widgetData": { - "sections": [ - { - "header": { - "leftText": { - "text": "Insurance tenure", - "textColor": "#191919", - "font": "BOLD", - "size": 14, - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_INSURANCE_TENURE_ICON" - } - } - }, - "rightText": { - "text": "1 Year", - "textColor": "#6B6B6B", - "font": "BOLD", - "size": 14 - } - } - } - ] - } - }, - { - "widgetId": "renewSummaryScreen", - "widgetName": "SECTIONS_WITH_ITEMS_WIDGET", - "widgetData": { - "header": { - "leftText": { - "text": "Benefits", - "font": "BOLD", - "size": 16 - } - }, - "sections": [ - { - "header": { - "leftText": { - "text": "6+ Health Benefits", - "textColor": "#191919", - "font": "BOLD", - "size": 14, - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_BENEFITS_ICON" - } - } - } - }, - "items": [ - { - "leftText": { - "text": "100% of hospital bill covered", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "Free Yearly Lab Test", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "Unlimited Online Consultations", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "View all benefits", - "textColor": "#FF5732", - "font": "BOLD", - "size": 14, - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "quote_benefits", - "parameters": [ - { - "key": "source", - "value": "ANNUAL_RENEWAL_FORM" - }, - { - "key": "preQuoteId", - "value": "b050a3ce-c9e2-424e-8280-66bce4f91798" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_reviewpage_viewallbenefits_click", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - }, - "rightText": { - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "quote_benefits", - "parameters": [ - { - "key": "source", - "value": "ANNUAL_RENEWAL_FORM" - }, - { - "key": "preQuoteId", - "value": "b050a3ce-c9e2-424e-8280-66bce4f91798" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_reviewpage_viewallbenefits_click", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - }, - "textDrawableData": { - "right": { - "iconCode": "RIGHT_ARROW_ORANGE_ICON" - } - } - }, - "layoutParams": { - "margin": "16,16,16,0" - } - } - ] - }, - { - "header": { - "leftText": { - "text": "Waiting Period", - "textColor": "#191919", - "font": "BOLD", - "size": 14, - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_WAITING_PERIOD_ICON" - } - } - } - }, - "items": [ - { - "leftText": { - "text": "Existing members", - "textColor": "#444444", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,24,16,0" - } - }, - { - "leftText": { - "text": "Pre-Existing disease", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "0 Year", - "textColor": "#585757", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "Specified disease procedure", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "0 Year", - "textColor": "#585757", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - }, - "showDivider": "true" - }, - { - "leftText": { - "text": "test", - "textColor": "#444444", - "font": "SEMI_BOLD", - "size": 14 - }, - "tag": { - "text": "New", - "textColor": "#22A940", - "font": "BOLD", - "size": 12 - }, - "layoutParams": { - "margin": "16,24,16,0" - } - }, - { - "leftText": { - "text": "Pre-Existing disease waiting period", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "12 Month", - "textColor": "#585757", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "Non accidental waiting period", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "15 Day", - "textColor": "#585757", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "Specified disease procedure", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "12 Month", - "textColor": "#585757", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - } - ] - } - ] - } - } - ], - "footer": [ - { - "widgetId": "FOOTER_WITH_TWO_BUTTONS_NEW", - "widgetName": "FOOTER_WITH_TWO_BUTTONS_NEW", - "widgetData": { - "buttonList": [ - { - "title": { - "text": "Continue" - }, - "cta": { - "type": "TRANSITION_API", - "parameters": [ - { - "key": "transition", - "value": "NEXT" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_reviewpage_continue_click", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - ] - } - } - ], - "metadata": { - "pageType": "review_policy", - "analyticsInitEventName": "HI_event_init_screen_ar3_review_page", - "preQuoteId": "b050a3ce-c9e2-424e-8280-66bce4f91798" - }, - "pageLayoutParams": { - "pageBackgroundColor": "#F1F1F1" - } - }, - "claimsTab": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "leftIcon": { - "colorPalette": { - "icon": "#FF5732" - }, - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "rightIcon": { - "colorPalette": { - "icon": "#FF5732" - }, - "iconCode": "RED_TEXT_HELP_ICON", - "action": { - "type": "HELP_BOTTOM_SHEET", - "data": { - "phone": "080-46820599" - } - } - }, - "showDivider": false - } - } - ], - "content": [ - { - "widgetName": "VIEW_PAGER_TAB_LAYOUT", - "widgetData": { - "tabs": [ - { - "title": { - "text": "Cashless Claim" - }, - "analyticsEvent": { - "name": "HI_claims_select_faq_cashless" - }, - "screen": { - "url": "claim_faq", - "parameters": { - "type": { - "type": "String", - "data": "FREE_INSURANCE_CASHLESS" - }, - "policyId": { - "type": "String", - "data": "RA002H5Q" - } - } - }, - "selected": true - }, - { - "title": { - "text": "Reimbursement" - }, - "analyticsEvent": { - "name": "HI_claims_select_faq_reimbursement" - }, - "screen": { - "url": "claim_faq", - "parameters": { - "type": { - "type": "String", - "data": "FREE_INSURANCE_REIMBURSEMENT" - }, - "policyId": { - "type": "String", - "data": "RA002H5Q" - } - } - }, - "selected": false - } - ] - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetData": { - "button": { - "colorPalette": { - "background": "#FF5732" - }, - "properties": { - "borderRadius": 24 - }, - "title": { - "text": "Raise a claim now" - } - }, - "cta": {} - } - } - ] - }, - "claimsFaq": { - "content": [ - { - "widgetName": "BANNER_WIDGET", - "widgetData": { - "bannerUrl": "https://i.postimg.cc/zXfqFSsy/Group-36985.png", - "action": { - "analyticsEvent": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:cashless_claims", - "button_id": "Watch now cashless claims" - } - } - } - }, - "widgetId": "bannerWidget" - }, - { - "widgetName": "LIST_CARD_WIDGET", - "widgetData": { - "header": { - "title": { - "text": "Documents" - } - }, - "detailsItems": [ - { - "title": { - "text": "Pan card of Radha" - }, - "leftIcon": { - "iconCode": "DOT_ICON" - } - }, - { - "title": { - "text": "Aadhaar Card of Patient" - }, - "leftIcon": { - "iconCode": "DOT_ICON" - } - }, - { - "title": { - "text": "Previous consultation reports" - }, - "subTitle": { - "text": "1. Doctor prescription or recommendation\n2. Test reports and scans (if any)" - }, - "leftIcon": { - "iconCode": "DOT_ICON" - } - } - ] - } - }, - { - "widgetName": "STEPS_LIST_VIEW", - "widgetData": { - "header": { - "title": { - "text": "Steps to avail cashless treatment" - } - }, - "items": [ - { - "title": { - "text": "Visit your nearest Navi network hospital. Find hospital", - "actionText": "Find hospital", - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "hospital_search" - } - } - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_1.png" - } - }, - { - "title": { - "text": "Find insurance TPA desk and inform them about admission" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_2.png" - } - }, - { - "title": { - "text": "Keep your policy card and identity proof ready for hospital reference" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_3.png" - } - }, - { - "title": { - "text": "Get an initial approval as per policy within 20 minutes" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_4.png" - } - }, - { - "title": { - "text": "Cashless claim is approved and disbursed to the hospital" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_5.png" - } - }, - { - "title": { - "text": "On discharge, hospital will submit us the final documents" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_6.png" - } - }, - { - "title": { - "text": "Any amount above approved amount will be paid by you at discharge" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_7.png" - } - } - ] - } - } - ] - }, - "reimburseFaq": { - "content": [ - { - "widgetName": "BANNER_WIDGET", - "widgetId": "bannerWidget", - "widgetData": { - "bannerUrl": "https://i.postimg.cc/BvBzzRD4/Group-36985-1.png", - "action": { - "analyticsEvent": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:cashless_claims", - "button_id": "Watch now cashless claims" - } - } - } - } - }, - { - "widgetName": "EXPANDABLE_LIST_CARD_WIDGET", - "widgetData": { - "header": { - "title": { - "text": "Documents" - } - }, - "items": [ - { - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_identity.png" - }, - "title": { - "text": "Identity Proof" - }, - "rightIconCollapsed": { - "iconCode": "COLLAPSED_ICON" - }, - "rightIconExpanded": { - "iconCode": "EXPANDED_ICON" - }, - "expandedWidget": { - "widgetName": "TEXT_ITEM_LIST", - "widgetData": { - "items": [ - { - "title": { - "text": "Pan card of Radha" - }, - "leftIcon": { - "iconCode": "DOT_ICON" - } - }, - { - "title": { - "text": "Aadhaar Card of Patient" - }, - "leftIcon": { - "iconCode": "DOT_ICON" - } - } - ] - } - } - }, - { - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_doc.png" - }, - "title": { - "text": "Treatment Documents" - }, - "rightIconCollapsed": { - "iconCode": "COLLAPSED_ICON" - }, - "rightIconExpanded": { - "iconCode": "EXPANDED_ICON" - }, - "expandedWidget": { - "widgetName": "TEXT_ITEM_LIST", - "widgetData": { - "items": [ - { - "title": { - "text": "Hospital discharge summary" - }, - "leftIcon": { - "iconCode": "DOT_ICON" - } - }, - { - "title": { - "text": "Hospital bill and receipt" - }, - "leftIcon": { - "iconCode": "DOT_ICON" - } - }, - { - "title": { - "text": "Test Reports and Scans" - }, - "leftIcon": { - "iconCode": "DOT_ICON" - } - }, - { - "title": { - "text": "Pharmacy and other bills before and after hospitalisation" - }, - "leftIcon": { - "iconCode": "DOT_ICON" - } - } - ] - } - } - }, - { - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_bank.png" - }, - "title": { - "text": "Bank Account Details" - }, - "rightIconCollapsed": { - "iconCode": "COLLAPSED_ICON" - }, - "rightIconExpanded": { - "iconCode": "EXPANDED_ICON" - }, - "expandedWidget": { - "widgetName": "TEXT_ITEM_LIST", - "widgetData": { - "items": [ - { - "title": { - "text": "Radha’s Account Number and IFSC Code" - }, - "leftIcon": { - "iconCode": "DOT_ICON" - } - } - ] - } - } - } - ] - } - }, - { - "widgetName": "STEPS_LIST_VIEW", - "widgetData": { - "header": { - "title": { - "text": "Steps to avail reimbursement" - } - }, - "items": [ - { - "title": { - "text": "Apply for Reimbursement on Navi App" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_1.png" - } - }, - { - "title": { - "text": "Upload all necessary documents" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_2.png" - } - }, - { - "title": { - "text": "Provide your bank account details" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_3.png" - } - }, - { - "title": { - "text": "Submit your claim" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_4.png" - } - }, - { - "title": { - "text": "If any documents are missing, we might ask you to re-upload or upload additional documents" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_5.png" - } - }, - { - "title": { - "text": "We process claims in 4 hours if all documents are present" - }, - "leftIcon": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/gi_navi_icons/ic_6.png" - } - } - ] - } - } - ] - }, - "freeInsuranceLandingPageFinal": { - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetData": { - "leftIcon": { - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "gi_fi_back_button_click", - "properties": { - "screen_name": "fi_explanation" - } - } - }, - "iconCode": "LEFT_ARROW_WITH_PADDING" - }, - "rightIcon": { - "cta": { - "type": "HELP_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "gi_fi_help_button_click", - "properties": { - "screen_name": "fi_explanation" - } - } - }, - "iconCode": "RED_TEXT_HELP_ICON" - }, - "titleAlign": "CENTER", - "showDivider": false - }, - "widgetName": "TOOLBAR_WIDGET" - } - ], - "content": [ - { - "widgetId": "centeredTitleSubtitleDescWidget", - "widgetData": { - "title": { - "font": "BOLD", - "size": 20, - "text": "Congratulations", - "textColor": "#444444", - "textDrawableData": { - "left": { - "iconCode": "LEFT_CONFETTI_POP_ICON" - }, - "right": { - "iconCode": "RIGHT_CONFETTI_POP_ICON" - } - } - }, - "subtitle": { - "font": "SEMI_BOLD", - "size": 14, - "text": "You have earned Health Insurance for 30 Days", - "textColor": "#6B6B6B" - }, - "description": { - "font": "EXTRA_BOLD", - "size": 14, - "text": "Fully paid by Navi!", - "textColor": "#444444" - } - }, - "widgetName": "CENTERED_TITLE_SUBTITLE_DESC_WIDGET", - "widgetLayoutParams": { - "margin": "28,32,28,0" - } - }, - { - "widgetId": "policyDetailsCardWidget", - "widgetData": { - "topIconCode": "NEW_NAVI_LOGO_IN_WHITE_CARD", - "cardProperties": { - "gradient": { - "orientation": "TL_BR", - "endGradientColor": "#A181FF", - "startGradientColor": "#C4C8FF", - "middleGradientColor": "#B6AAFF" - }, - "elevation": 0, - "strokeColor": "#CACFFE", - "strokeWidth": 1, - "borderRadius": 12 - }, - "validUptoTitle": { - "font": "SEMI_BOLD", - "size": 10, - "text": "Valid Upto", - "textColor": "#4B4968" - }, - "validUptoValue": { - "font": "EXTRA_BOLD", - "size": 10, - "text": "30 Oct'23", - "textColor": "#FFFFFF" - }, - "stampLottieCode": "policy_stamp_anim", - "totalCoverTitle": { - "font": "SEMI_BOLD", - "size": 10, - "text": "Total cover", - "textColor": "#4B4968" - }, - "totalCoverValue": { - "font": "EXTRA_BOLD", - "size": 20, - "text": "₹2,00,000", - "textColor": "#FFFFFF" - }, - "policyHolderTitle": { - "font": "SEMI_BOLD", - "size": 10, - "text": "Policy holder", - "textColor": "#4B4968" - }, - "policyHolderValue": { - "font": "EXTRA_BOLD", - "size": 10, - "text": "Vdhs", - "textColor": "#FFFFFF" - }, - "shimmerLottieCode": "policy_card_shimmer_anim" - }, - "widgetName": "POLICY_DETAILS_CARD_WIDGET" - }, - { - "widgetId": "productClickCardWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "parameters": [ - { - "key": "videoId", - "value": "OSUjGMPJCOA" - } - ], - "analyticsEventProperties": { - "name": "gi_fi_where_to_use_video_click", - "properties": { - "screen_name": "fi_explanation" - } - } - }, - "title": { - "font": "BOLD", - "size": 12, - "text": "Where to use this?", - "textColor": "#191919" - }, - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/landing_page/free_insurance/video_thumbnail.png", - "subtitle": { - "font": "BOLD", - "size": 12, - "text": "Watch now", - "textColor": "#FF5732" - }, - "rightIconCode": "RIGHT_ARROW_WITH_TRANSLUCENT_BACKGROUND", - "cardProperties": { - "elevation": 0, - "borderRadius": 8, - "backgroundColor": "#0D000000" - }, - "overlayIconCode": "TRANSLUCENT_VIDEO_OVERLAY" - }, - "widgetName": "PRODUCT_CLICK_CARD_WIDGET", - "widgetLayoutParams": { - "margin": "36,12,36,20" - } - }, - { - "widgetId": "1", - "widgetData": { - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/landing_page/free_insurance/1.png", - "aspectRatio": 7.2 - }, - "widgetName": "SINGLE_IMAGE_WIDGET" - }, - { - "widgetId": "2", - "widgetData": { - "cta": { - "url": "gi/view_video", - "parameters": [ - { - "key": "videoId", - "value": "OSUjGMPJCOA" - } - ], - "analyticsEventProperties": { - "name": "gi_fi_explain_page_benefit_video_click", - "properties": { - "screen_name": "fi_explanation", - "benefit_name": "diseases_covered" - } - } - }, - "type": "TYPE_LOTTIE", - "imageUrl": "disease_name_shuffle_anim", - "aspectRatio": 2.589928 - }, - "widgetName": "SINGLE_IMAGE_WIDGET" - }, - { - "widgetId": "3", - "widgetData": { - "cta": { - "url": "gi/view_video", - "parameters": [ - { - "key": "videoId", - "value": "OSUjGMPJCOA" - } - ], - "analyticsEventProperties": { - "name": "gi_fi_explain_page_benefit_video_click", - "properties": { - "screen_name": "fi_explanation", - "benefit_name": "hospital_bills" - } - } - }, - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/landing_page/free_insurance/3.png", - "aspectRatio": 2.093023 - }, - "widgetName": "SINGLE_IMAGE_WIDGET" - }, - { - "widgetId": "4", - "widgetData": { - "cta": { - "url": "gi/view_video", - "parameters": [ - { - "key": "videoId", - "value": "OSUjGMPJCOA" - } - ], - "analyticsEventProperties": { - "name": "gi_fi_explain_page_benefit_video_click", - "properties": { - "screen_name": "fi_explanation", - "benefit_name": "cashless_hospitals" - } - } - }, - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/landing_page/free_insurance/4.png", - "aspectRatio": 2.4489796 - }, - "widgetName": "SINGLE_IMAGE_WIDGET" - }, - { - "widgetId": "5", - "widgetData": { - "cta": { - "url": "gi/view_video", - "parameters": [ - { - "key": "videoId", - "value": "OSUjGMPJCOA" - } - ], - "analyticsEventProperties": { - "name": "gi_fi_explain_page_benefit_video_click", - "properties": { - "screen_name": "fi_explanation", - "benefit_name": "annual_lab_tests" - } - } - }, - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/landing_page/free_insurance/5.png", - "aspectRatio": 2.093023 - }, - "widgetName": "SINGLE_IMAGE_WIDGET" - }, - { - "widgetId": "6", - "widgetData": { - "cta": { - "url": "policy_benefits_screen", - "type": "NAVIGATE_TO_NEW_SCREEN", - "parameters": [ - { - "key": "benefitsType", - "value": "FREE_INSURANCE" - } - ], - "analyticsEventProperties": { - "name": "gi_fi_explain_page_benefit_view_all_click" - } - }, - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/landing_page/free_insurance/6.png", - "aspectRatio": 3.6 - }, - "widgetName": "SINGLE_IMAGE_WIDGET" - }, - { - "widgetId": "insuranceBenefitsImageBannerWidget", - "widgetData": { - "label": { - "item": { - "span": [ - { - "endSpan": 4, - "fontName": "NAVI_SEMI_BOLD", - "fontSize": "12", - "fontColor": "#EA9E0B", - "startSpan": 0 - } - ], - "text": "Free" - }, - "bgColor": "#FAF3EB" - }, - "banners": [ - { - "imageUrl": "https://navi-sa-assets.s3.ap-south-1.amazonaws.com/dashboard/gi/full_body_checkup.png", - "metaData": { - "viewed": { - "eventName": "gi_fi_landing_page_card_view", - "parameters": { - "widget_id": "insurance:dashboard:carousel_full_body_check_up" - } - }, - "clicked": { - "eventName": "gi_fi_landing_page_card_click", - "parameters": { - "widget_id": "insurance:dashboard:carousel_full_body_check_up", - "button_identifier": "Book Now" - } - } - }, - "actionData": { - "url": "benefits_web_view", - "type": "NAVIGATE_TO_NEW_SCREEN", - "parameters": [ - { - "key": "benefitType", - "value": "OPD" - }, - { - "key": "policyId", - "value": "175490e20db44eb0b51ce2551d20d760" - } - ] - } - }, - { - "imageUrl": "https://navi-sa-assets.s3.ap-south-1.amazonaws.com/dashboard/gi/free_con.png", - "metaData": { - "viewed": { - "eventName": "gi_fi_landing_page_card_view", - "parameters": { - "widget_id": "insurance:fi:carousel_unlimited_online_consult" - } - }, - "clicked": { - "eventName": "gi_fi_landing_page_card_click", - "parameters": { - "widget_id": "insurance:dashboard:carousel_unlimited_online_consult", - "button_identifier": "Book Now" - } - } - }, - "actionData": { - "url": "benefits_web_view", - "type": "NAVIGATE_TO_NEW_SCREEN", - "parameters": [ - { - "key": "benefitType", - "value": "OC" - }, - { - "key": "policyId", - "value": "175490e20db44eb0b51ce2551d20d760" - } - ] - } - }, - { - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/landing_page/free_insurance/how_healthy_are_you.png", - "metaData": { - "viewed": { - "eventName": "gi_fi_landing_page_card_view", - "parameters": { - "widget_id": "insurance:fi:carousel_hra" - } - }, - "clicked": { - "eventName": "gi_fi_landing_page_card_click", - "parameters": { - "widget_id": "insurance:fi:carousel_hra", - "button_identifier": "Book Now" - } - } - }, - "actionData": { - "url": "gi/hrs/questionPage", - "parameters": [ - { - "key": "type", - "value": "HRS" - }, - { - "key": "isFreeInsurance", - "value": "true" - } - ] - } - } - ], - "titleV2": { - "span": [ - { - "endSpan": 14, - "fontName": "NAVI_EXTRA_BOLD", - "fontSize": "16", - "fontColor": "#22223D", - "startSpan": 0 - } - ], - "text": "Exclusive for you" - }, - "scrollTime": 3, - "aspectRatio": 0.4594 - }, - "widgetName": "IMAGE_BANNER_WIDGET" - }, - { - "widgetId": "9", - "widgetData": { - "cta": { - "url": "static_page", - "type": "NAVIGATE_TO_NEW_SCREEN", - "parameters": [ - { - "key": "pageType", - "value": "FI_WHY_HI_STATIC_PAGE" - } - ], - "analyticsEventProperties": { - "name": "gi_fi_explain_page_why_health_insurance" - } - }, - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/landing_page/free_insurance/9.png", - "aspectRatio": 1.809045 - }, - "widgetName": "SINGLE_IMAGE_WIDGET", - "widgetLayoutParams": { - "margin": "0,16,0,0" - } - }, - { - "widgetId": "8", - "widgetData": { - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/landing_page/free_insurance/8.png", - "aspectRatio": 2.181818 - }, - "widgetName": "SINGLE_IMAGE_WIDGET", - "widgetLayoutParams": { - "margin": "0,16,0,0" - } - }, - { - "widgetId": "andLastlyTitleWidget", - "widgetData": { - "title": { - "font": "EXTRA_BOLD", - "size": 36, - "text": "And lastly...", - "textColor": "#26717F98" - } - }, - "widgetName": "TITLE_WIDGET", - "widgetLayoutParams": { - "rootPadding": "16,32,16,0" - } - }, - { - "widgetId": "7", - "widgetData": { - "cta": { - "url": "claim_info/navi_viewpager", - "type": "NAVIGATE_TO_NEW_SCREEN", - "parameters": [ - { - "key": "type", - "value": "free_insurance" - } - ], - "analyticsEventProperties": { - "name": "gi_fi_explain_page_how_to_claim_click" - } - }, - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/landing_page/free_insurance/7.png", - "aspectRatio": 1.578947 - }, - "widgetName": "SINGLE_IMAGE_WIDGET", - "widgetLayoutParams": { - "margin": "0,4,0,0" - } - }, - { - "widgetId": "faqTitleWidget", - "widgetData": { - "title": { - "font": "EXTRA_BOLD", - "size": 16, - "text": "Frequently \nasked questions?", - "textColor": "#011A48" - } - }, - "widgetName": "TITLE_WIDGET", - "widgetLayoutParams": { - "rootPadding": "16,36,16,0", - "backgroundColor": "#EEF8FF" - } - }, - { - "widgetId": "checkHealthScoreWidget", - "widgetData": { - "itemList": [ - { - "cta": { - "analyticsEventProperties": { - "name": "gi_fi_explain_page_faq_selected", - "properties": { - "question_id": "1" - } - } - }, - "title": { - "font": "SEMI_BOLD", - "size": 14, - "text": "How do I use health insurance?", - "textColor": "#191919" - }, - "footerText": { - "font": "SEMI_BOLD", - "size": 12, - "text": "For more details you can write us to\ninsurance@navi.com ", - "textColor": "#444444", - "substringStyles": [ - { - "substring": "insurance@navi.com", - "textColor": "#FF5732", - "substringCta": { - "type": "USE_ROOT_DEEPLINK_NAVIGATOR", - "url": "openEmail", - "parameters": [ - { - "key": "emailId", - "value": "insurance.help@navi.com" - }, - { - "key": "emailSubject", - "value": "Query regarding free insurance" - }, - { - "key": "chooserTitle", - "value": "Send E-mail" - } - ] - } - } - ] - }, - "isExpanded": false, - "description": { - "font": "SEMI_BOLD", - "size": 12, - "text": "You can use this insurance as a trial insurance till validity. This months premium has been paid by us and to continue using the benefits you have to pay the next months premium before policy expires.", - "textColor": "#191919", - "substringStyles": [ - { - "font": "BOLD", - "substring": "trial insurance" - } - ] - } - }, - { - "cta": { - "analyticsEventProperties": { - "name": "gi_fi_explain_page_faq_selected", - "properties": { - "question_id": "2" - } - } - }, - "title": { - "font": "SEMI_BOLD", - "size": 14, - "text": "Where can I use health cover?", - "textColor": "#191919" - }, - "footerText": { - "font": "SEMI_BOLD", - "size": 12, - "text": "For more details you can write us to\ninsurance@navi.com ", - "textColor": "#444444", - "substringStyles": [ - { - "substring": "insurance@navi.com", - "textColor": "#FF5732" - } - ] - }, - "isExpanded": false, - "description": { - "font": "SEMI_BOLD", - "size": 12, - "text": "You can use this insurance as a trial insurance till validity. This months premium has been paid by us and to continue using the benefits you have to pay the next months premium before policy expires.", - "textColor": "#191919", - "substringStyles": [ - { - "font": "BOLD", - "substring": "trial insurance" - } - ] - } - }, - { - "cta": { - "analyticsEventProperties": { - "name": "gi_fi_explain_page_faq_selected", - "properties": { - "question_id": "3" - } - } - }, - "title": { - "font": "SEMI_BOLD", - "size": 14, - "text": "What is the validity of health cover?", - "textColor": "#191919" - }, - "footerText": { - "cta": { - }, - "font": "SEMI_BOLD", - "size": 12, - "text": "For more details you can write us to\ninsurance@navi.com ", - "textColor": "#444444", - "substringStyles": [ - { - "substring": "insurance@navi.com", - "textColor": "#FF5732" - } - ] - }, - "isExpanded": true, - "description": { - "font": "SEMI_BOLD", - "size": 12, - "text": "You can use this insurance as a trial insurance till validity. This months premium has been paid by us and to continue using the benefits you have to pay the next months premium before policy expires.", - "textColor": "#191919", - "substringStyles": [ - { - "font": "BOLD", - "substring": "trial insurance" - } - ] - } - } - ] - }, - "widgetName": "ACCORDIAN_LIST_WIDGET", - "widgetLayoutParams": { - "rootPadding": "12,12,12,110", - "backgroundColor": "#EEF8FF" - } - } - ], - "pageLayoutParams": { - "gradientProperties": { - "orientation": "TOP_BOTTOM", - "endGradientColor": "#EBEAFF", - "startGradientColor": "#FFFFFF" - }, - "pageBackgroundColor": "#FFFFFF" - } - }, - "freeInsuranceBenefits": { - "headerWidget": [], - "contentWidget": [ - { - "widgetId": "bestInClassBenefitsTitleWidget", - "widgetData": { - "title": { - "font": "BOLD", - "size": 16, - "text": "Best-in-class benefits", - "textColor": "#000000" - } - }, - "widgetName": "TITLE_WIDGET", - "widgetLayoutParams": { - "margin": "20,24,20,20" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "100% Hospital Bill Covered", - "parameters": [ - { - "key": "videoId", - "value": "OSUjGMPJCOA" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info_100%_hospital_bill_covered", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "100% Hospital Bill Covered", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "100% Hospitalisation Bill Covered", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/hundred_hospital_bill.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "We cover your entire hospitalisation bill without any hidden terms and conditions!" - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,16" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "Unlimited Online Consultations", - "parameters": [ - { - "key": "videoId", - "value": "d82Hc6faZ-A" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info_unlimited_online_consultations", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Unlimited Online Consultations", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "Unlimited Online Doctor Consultation", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/online_doctor_consultations.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "You get unlimited online doctor consultations from the top doctors of the country, anytime and anywhere" - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,16" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "Hospitalisation at Home", - "parameters": [ - { - "key": "videoId", - "value": "noCeyTAgDt8" - } - ], - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Hospitalisation at Home", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "Home hospitalization", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/home_hospitalisation.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "We cover for all hospitalisation in the comfort of your home, in case of no bed availability in the hospital or the person is unable to visit the hospital due to illness." - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,16" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "Pre & Post hospitalisation", - "parameters": [ - { - "key": "videoId", - "value": "yRD62xlTY6A" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info_pre_post_hospitalisation", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Pre & Post hospitalisation", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "Pre & Post hospitalisation", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/pre_post_hospitalisation.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "We cover all your medical expenses from 90 days prior to hospitalisation to 180 days post hospitalisation" - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,16" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "Organ Donation", - "parameters": [ - { - "key": "videoId", - "value": "Tb9M6FyiTCo" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info_organ_donation", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Organ Donation", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "Organ Donation", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/organ_donation.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "We cover medical and surgical expenses of the organ donor." - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,16" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "Day Care", - "parameters": [ - { - "key": "videoId", - "value": "yXMWiMtci-0" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info_Day_Care", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Day Care", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "Day Care", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/day_care_treatment.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "We cover costs for all hospitalisation(procedure and medical technologies) for less than 24 hours such as biopsy, eye surgery, etc" - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,20" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "Non Payable Expenses", - "parameters": [ - { - "key": "videoId", - "value": "FCmi_EuvPWw" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Non Payable Expenses", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "Non Payable Expenses", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/non_payable_expenses.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "We cover costs for items used during treatment that are not directly part of treatment such a ECG electrodes, masks etc" - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,20" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "Road Ambulance", - "parameters": [ - { - "key": "videoId", - "value": "nGabtAYOvEI" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Road Ambulance", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "Road Ambulance", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/road_ambulance.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "We cover for entire ambulance expenses in case of emergencies" - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,20" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "Annual Health CheckUp", - "parameters": [ - { - "key": "videoId", - "value": "Jq67EpP-v1c" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Annual Health CheckUp", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "Annual Health CheckUp", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/annual_health_checkup.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "We provide an annual free lab test right at your doorstep for all members older than 17 years" - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,20" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "Air Ambulance", - "parameters": [ - { - "key": "videoId", - "value": "AfSTFkZP4Oo" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Air Ambulance", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "Air Ambulance", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/air_ambulance.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "We will cover cost up to Rs. 5 Lakh incurred towards the transfer of the Insured Person having Emergency Medical Condition to the nearest Hospital with adequate emergency facilities. In an Air Ambulance, for Emergency Care will be covered " - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,20" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "Additional Sum Insured", - "parameters": [ - { - "key": "videoId", - "value": "0jc3zpCchCU" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Additional Sum Insured for Accidental Injury", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "Additional Sum Insured for Accidental injury", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/additional_sum insured.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "We will cover your medical cost upto 2 times your sum insured if you go through an accidental injury" - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,20" - } - }, - { - "widgetId": "productInfoWidget", - "widgetData": { - "cta": { - "url": "gi/view_video", - "title": "Modern Treatments", - "parameters": [ - { - "key": "videoId", - "value": "NXpv_wVEbh8" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Modern Treatments", - "applicationType": "FRESH_POLICY", - "type": "video" - } - } - }, - "title": { - "font": "BOLD", - "size": 14, - "text": "Modern Treatments", - "textColor": "#000000" - }, - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/landing_page/v3/carousel/modern_treatments.png", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/black_chevron.png", - "description": "We cover costs for all advanced medical procedures such as robotic surgeries, stem cell therapy, oral chemotherapy etc." - }, - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,20" - } - }, - { - "widgetId": "productInfoWidget", - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,32" - }, - "widgetData": { - "title": { - "text": "Understand your policy", - "textColor": "#1A1A1A", - "font": "SEMI_BOLD", - "size": 12 - }, - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/download_icon.png", - "cta": { - "type": "DOWNLOAD", - "parameters": [ - { - "key": "documentUrl", - "value": "https://s3.ap-south-1.amazonaws.com/navi-d5a6c37adb7e06d06401aba47ge07bf3/prod/f55d678b-4dd7-4ec3-8362-545bddb1791f.pdf?X-Amz-Security-Token=FwoGZXIvYXdzEFUaDK4hgTvfQO9xRT6BrCLKAQrrykWVbNiYp3TfucUUei9R1OOJpHHXIZjWMw6afyHCikryecA5NXuaNdtCN9HG1y9rI2Oy6QxunkN2SM%2BW7e2IV5Lc%2F3rBUcm8B1ib%2BRok84ckg64B0IZqOj1PdhHm%2BQS%2F36Nho%2FDl%2F5nWE0Tb%2F4R2RWJEdZmWqSjnKHyB1ZS8AVRtky05B8pnEFqnYS1AS1cE2v1lD8tTUdYpdiTyTNMXraIMABAxMvlsXIrMOvXpO64TPkjH7DaecIzWv66QiJO2t9ky2t5C218oo%2FHumgYyLRgA%2BF4ScatYdxPbMSrJextA9q3MBtrm0vcMJa3ZMUqoYPiZYzxi0UdM3m59ug%3D%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20221028T114113Z&X-Amz-SignedHeaders=host&X-Amz-Expires=43200&X-Amz-Credential=ASIA43METU7J3IMPKMU4%2F20221028%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Signature=8b26b2364367da3926eba24317368bdf53285a0154a441e8d55d12515284062a" - } - ], - "analyticsEventProperties": { - "name": "HI_btn_click_quote_kyp_download", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - }, - "cardProperties": { - "strokeColor": "#E9E7F0", - "strokeWidth": 1, - "backgroundColor": "#F7F9FC", - "elevation": 0 - } - } - } - ], - "pageLayoutParams": { - "pageBackgroundColor": "#FAFAFA" - } - }, - "freeInsurancePaymentPageResponse": { - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetName": "TOOLBAR_WIDGET", - "widgetLayoutParams": { - "backgroundColor": "#FAFAFA" - }, - "widgetData": { - "showDivider": false, - "titleAlign": "CENTER", - "leftIcon": { - "iconCode": "LEFT_ARROW_WITH_PADDING", - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "gi_fi_back_button_click", - "properties": { - "screen": "free_insurance_payment" - } - } - } - }, - "rightIcon": { - "iconCode": "RED_TEXT_HELP_ICON", - "cta": { - "type": "HELP_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "gi_fi_help_button_click", - "properties": { - "screen": "free_insurance_payment" - } - } - } - } - } - } - ], - "content": [ - { - "widgetId": "FI_PAYMENT_OPTIONS_WIDGET", - "widgetName": "FI_PAYMENT_OPTIONS_WIDGET", - "widgetData": { - "title": { - "text": "Extend Validity", - "textColor": "#191919", - "font": "BOLD", - "size": 18 - }, - "description": { - "text": "It’s a 30 day insurance trial for you provided by Navi. It’s expiring on 26th Oct'23.\n\nTo continue enjoying benefits & security, get insured today!", - "textColor": "#191919", - "font": "SEMI_BOLD", - "size": 14, - "substringStyles": [ - { - "substring": "26th Oct'23", - "font": "BOLD" - } - ] - }, - "paymentOptions": [ - { - "title": { - "text": "Monthly premium for 12 months", - "textColor": "#585757", - "font": "SEMI_BOLD", - "size": 14 - }, - "finalAmount": { - "text": "₹235", - "textColor": "#4D4D4D", - "font": "BOLD", - "size": 16 - }, - "previousAmount": { - "text": "₹235/month", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 12, - "shouldStrikeOff": true - }, - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "payment_checkout", - "parameters": [ - { - "key": "isInstallment", - "value": "true" - }, - { - "key": "amount", - "value": "230.55" - }, - { - "key": "policyId", - "value": "SA000A123" - }, - { - "key": "paymentType", - "value": "SUBSCRIPTION" - } - ] - }, - "isSelected": true - }, - { - "title": { - "text": "Monthly premium for 12 months", - "textColor": "#585757", - "font": "SEMI_BOLD", - "size": 14 - }, - "finalAmount": { - "text": "₹2,815", - "textColor": "#4D4D4D", - "font": "BOLD", - "size": 16 - }, - "previousAmount": { - "text": "₹2,815/month", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 12, - "shouldStrikeOff": true - }, - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "payment_checkout", - "parameters": [ - { - "key": "isInstallment", - "value": "true" - }, - { - "key": "amount", - "value": "230.55" - }, - { - "key": "policyId", - "value": "SA000A123" - }, - { - "key": "paymentType", - "value": "FULL" - } - ] - }, - "isSelected": false - } - ] - } - } - ], - "pageLayoutParams": { - "pageBackgroundColor": "#FAFAFA" - } - }, - "freeInsuranceCalendar": { - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetData": { - "leftIcon": { - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "gi_fi_back_button_click", - "properties": { - "screen_name": "fi_calendar", - "days_left": "40" - } - } - }, - "iconCode": "LEFT_ARROW_WITH_PADDING" - }, - "rightIcon": { - "iconCode": "RED_TEXT_HELP_ICON", - "cta": { - "type": "HELP_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "gi_fi_help_button_click", - "properties": { - "screen_name": "fi_calendar", - "days_left": "40" - } - } - } - }, - "titleAlign": "CENTER", - "showDivider": false - }, - "widgetName": "TOOLBAR_WIDGET" - } - ], - "content": [ - { - "widgetName": "POLICY_DETAILS_WIDGET", - "widgetLayoutParams": { - "backgroundColor": "#FFFFFF", - "margin": "0,0,0,0" - }, - "widgetId": "PolicyDetailsWidget", - "widgetData": { - "gradient": { - "startGradientColor": "#FFFFFF", - "endGradientColor": "#EBEAFF", - "orientation": "TOP_BOTTOM" - }, - "title": { - "text": "₹2 Lakhs", - "size": 24, - "textColor": "#1A1A1A", - "font": "EXTRA_BOLD" - }, - "titleInfo": { - "text": "Total cover", - "size": 12, - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "button": { - "backgroundColor": "#011A48", - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "show_bottomsheet/gi_claims_bottomsheet", - "analyticsEventProperties": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:benefits_try_now", - "button_id": "Make claims", - "days_left": "40" - } - }, - "parameters": [ - { - "key": "widgets", - "value": "[{\"widgetId\":\"newClaim\",\"widgetName\":\"TEXT_WITH_ELEVATED_ICON_WIDGET\",\"widgetData\":{\"enabled\":true,\"title\":{\"text\":\"New Claim\"},\"subTitle\":{\"text\":\"Cashless & reimbursement claims\"},\"leftIcon\":{\"iconCode\":\"CIRCULAR_FILLED_PLUS_ICON\",\"color\":\"#FF5732\"},\"rightIcon\":{\"iconCode\":\"RIGHT_ARROW_ICON\",\"color\":\"#FF5732\"},\"cta\":{\"url\":\"gi\/new_claim\",\"parameters\":[{\"key\":\"type\",\"value\":\"claim_hi\"},{\"key\":\"policyId\",\"value\":\"RA000FPM\"},{\"key\":\"screenIdentifier\",\"value\":\"navi_chat\"}],\"analyticsEventProperties\":{\"name\":\"gi_fi_calendar_click\",\"properties\":{\"widget_id\":\"insurance:calendar:fi:make_claim_bottomsheet\",\"days_left\":\"40\",\"button_id\":\"New claim\"}}}}},{\"widgetId\":\"howToMakeClaim\",\"widgetName\":\"TEXT_WITH_ELEVATED_ICON_WIDGET\",\"widgetData\":{\"enabled\":true,\"title\":{\"text\":\"How to make claim?\"},\"subTitle\":{\"text\":\"Understand claim process\"},\"leftIcon\":{\"iconCode\":\"DOC_ICON_BLUE\",\"color\":\"#FF5732\"},\"rightIcon\":{\"iconCode\":\"RIGHT_ARROW_ICON\",\"color\":\"#FF5732\"},\"cta\":{\"url\":\"gi/claim_info\",\"parameters\":[{\"key\":\"type\",\"value\":\"free_insurance\"},{\"key\":\"policyId\",\"value\":\"RA000FPM\"},{\"key\":\"screenIdentifier\",\"value\":\"navi_viewpager\"}],\"analyticsEventProperties\":{\"name\":\"gi_fi_calendar_click\",\"properties\":{\"widget_id\":\"insurance:calendar:fi:make_claim_bottomsheet\",\"days_left\":\"40\",\"button_id\":\"How to make claims\"}}}}}]" - } - ] - }, - "title": { - "text": "Make claims", - "size": "14", - "textColor": "#FFFFFF", - "font": "BOLD" - } - }, - "subtitle": { - "text": "APOORV NIGAM", - "size": "12", - "textColor": "#444444", - "font": "EXTRA_BOLD", - "letterSpacing": "0.19" - }, - "subtitleInfo": { - "text": "Cover for", - "size": "12", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "validityText": { - "text": "Valid upto", - "size": "12", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "validityDate": { - "text": "17TH NOV’22", - "size": "12", - "textColor": "#444444", - "font": "EXTRA_BOLD", - "letterSpacing": "0.19" - }, - "iconCode": "RED_LOCK_ICON", - "description": { - "text": "Your benefits will be locked after due date", - "size": "12", - "textColor": "#444444", - "font": "BOLD", - "substringStyles": [ - { - "substring": "Your benefits", - "textColor": "#FF5732", - "underline": "true" - } - ], - "cta": { - "url": "policy_benefits_screen", - "type": "NAVIGATE_TO_NEW_SCREEN", - "parameters": [ - { - "key": "benefitsType", - "value": "FREE_INSURANCE" - } - ], - "analyticsEventProperties": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:benefits_try_now", - "button_id": "Your benefits", - "days_left": "40" - } - } - } - } - } - } - ], - "subPageList": [ - { - "title": "Try Now", - "widgets": [ - { - "widgetName": "TITLE_DESC_ICON_CTA_WIDGET", - "widgetLayoutParams": { - "margin": "12,12,12,0" - }, - "widgetId": "TitleDescIconCtaWidget", - "widgetData": { - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "fi_address", - "analyticsEventProperties": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:benefits_try_now", - "button_id": "Gift Box is ready", - "days_left": "40" - } - }, - "parameters": [ - { - "key": "status", - "value": "success" - } - ] - }, - "title": { - "text": "Your gift box is ready!", - "size": 14, - "textColor": "#191919", - "font": "BOLD" - }, - "subtitle": { - "text": "Confirm your address & get it now", - "size": 12, - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "leftIcon": { - "url": "https://i.postimg.cc/Mfcg129X/img-gift-box.png" - }, - "chevronIconCode": "ARROW_FORWARD_ORANGE" - } - }, - { - "widgetName": "TITLE_DESC_ICON_CTA_WIDGET", - "widgetLayoutParams": { - "margin": "12,12,12,0" - }, - "widgetId": "TitleDescIconCtaWidget", - "widgetData": { - "cta": { - "analyticsEventProperties": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:benefits_try_now", - "button_id": "Check your health score", - "days_left": "40" - } - }, - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "hrs/questionPage", - "parameters": [ - { - "key": "type", - "value": "HRS" - } - ] - }, - "title": { - "text": "Check your health score", - "size": 14, - "textColor": "#191919", - "font": "BOLD" - }, - "subtitle": { - "text": "Know your health risks in 2 minutes", - "size": 12, - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "leftIcon": { - "url": "https://i.postimg.cc/KkpdKvrd/img-health-score.png" - }, - "chevronIconCode": "ARROW_FORWARD_ORANGE" - } - }, - { - "widgetName": "TITLE_DESC_ICON_CTA_WIDGET", - "widgetLayoutParams": { - "margin": "12,12,12,0" - }, - "widgetId": "TitleDescIconCtaWidget", - "widgetData": { - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "benefits_web_view", - "analyticsEventProperties": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:benefits_try_now", - "button_id": "Get full body check-up", - "days_left": "40" - } - }, - "parameters": [ - { - "key": "benefitType", - "value": "OPD" - }, - { - "key": "policyId", - "value": "SA000A123" - } - ] - }, - "title": { - "text": "Get full body\ncheck-up", - "size": 14, - "textColor": "#191919", - "font": "BOLD" - }, - "subtitle": { - "text": "Renew now to avail this benefit", - "size": 12, - "textColor": "#EF0000", - "font": "SEMI_BOLD" - }, - "leftIcon": { - "url": "https://i.postimg.cc/Dmm99L7F/img-full-body-checkup.png" - }, - "chevronIconCode": "ARROW_FORWARD_ORANGE", - "pillItemData": { - "backgroundColor": "#FFF8EC", - "title": { - "text": "Annual Test", - "textColor": "#F7B500", - "font": "BOLD" - } - } - } - }, - { - "widgetName": "TITLE_DESC_ICON_CTA_WIDGET", - "widgetLayoutParams": { - "margin": "12,12,12,0" - }, - "widgetId": "TitleDescIconCtaWidget", - "widgetData": { - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "benefits_web_view", - "analyticsEventProperties": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:benefits_try_now", - "button_id": "Take online doctor consultations", - "days_left": "40" - } - }, - "parameters": [ - { - "key": "benefitType", - "value": "OPD" - }, - { - "key": "policyId", - "value": "SA000A123" - } - ] - }, - "title": { - "text": "Take online doctor\nconsultations", - "size": 14, - "textColor": "#191919", - "font": "BOLD" - }, - "subtitle": { - "text": "Renew now to avail this benefit", - "size": 12, - "textColor": "#EF0000", - "font": "SEMI_BOLD" - }, - "leftIcon": { - "url": "https://i.postimg.cc/YGC5qmg6/img-doctor-consultation.png" - }, - "chevronIconCode": "ARROW_FORWARD_ORANGE", - "pillItemData": { - "backgroundColor": "#FFF8EC", - "title": { - "text": "Unlimited", - "textColor": "#F7B500", - "font": "BOLD" - } - } - } - }, - { - "widgetName": "TITLE_DESC_ICON_CTA_WIDGET", - "widgetLayoutParams": { - "margin": "12,12,12,0" - }, - "widgetId": "TitleDescIconCtaWidget", - "widgetData": { - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "analyticsEventProperties": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:benefits_try_now", - "button_id": "Gift box dispatched", - "days_left": "40" - } - }, - "url": "fi_address", - "parameters": [ - { - "key": "status", - "value": "success" - } - ] - }, - "title": { - "text": "Gift box dispatched", - "size": 14, - "textColor": "#191919", - "font": "BOLD" - }, - "subtitle": { - "text": "Track your order now", - "size": 12, - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "leftIcon": { - "url": "https://i.postimg.cc/Mfcg129X/img-gift-box.png" - }, - "chevronIconCode": "ARROW_FORWARD_ORANGE", - "rightText": { - "text": "17th Sept’22", - "size": 10, - "textColor": "#000000", - "font": "SEMI_BOLD" - } - } - }, - { - "widgetName": "TITLE_DESC_ICON_CTA_WIDGET", - "widgetLayoutParams": { - "margin": "12,12,12,0" - }, - "widgetId": "TitleDescIconCtaWidget", - "widgetData": { - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "hrs/questionPage", - "analyticsEventProperties": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:benefits_try_now", - "button_id": "Your health score is ready", - "days_left": "40" - } - }, - "parameters": [ - { - "key": "type", - "value": "HRS" - } - ] - }, - "title": { - "text": "Your health score is\n87/100", - "size": 14, - "textColor": "#191919", - "font": "BOLD" - }, - "subtitle": { - "text": "Check your details", - "size": 12, - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "leftIcon": { - "url": "https://i.postimg.cc/KkpdKvrd/img-health-score.png" - }, - "chevronIconCode": "ARROW_FORWARD_ORANGE", - "rightText": { - "text": "17th Sept’22", - "size": 10, - "textColor": "#000000", - "font": "SEMI_BOLD" - } - } - }, - { - "widgetName": "TITLE_DESC_ICON_CTA_WIDGET", - "widgetLayoutParams": { - "margin": "12,12,12,0" - }, - "widgetId": "TitleDescIconCtaWidget", - "widgetData": { - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "benefits_web_view", - "analyticsEventProperties": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:benefits_try_now", - "button_id": "FBC done", - "days_left": "40" - } - }, - "parameters": [ - { - "key": "benefitType", - "value": "OPD" - }, - { - "key": "policyId", - "value": "SA000A123" - } - ] - }, - "title": { - "text": "Full body\ncheck-up done!", - "size": 14, - "textColor": "#191919", - "font": "BOLD" - }, - "subtitle": { - "text": "View your report", - "size": 12, - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "leftIcon": { - "url": "https://i.postimg.cc/Dmm99L7F/img-full-body-checkup.png" - }, - "chevronIconCode": "ARROW_FORWARD_ORANGE", - "rightText": { - "text": "17th Sept’22", - "size": 10, - "textColor": "#000000", - "font": "SEMI_BOLD" - } - } - }, - { - "widgetName": "TITLE_DESC_ICON_CTA_WIDGET", - "widgetLayoutParams": { - "margin": "12,12,12,32" - }, - "widgetId": "TitleDescIconCtaWidget", - "widgetData": { - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "benefits_web_view", - "analyticsEventProperties": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:benefits_try_now", - "button_id": "ODC done", - "days_left": "40" - } - }, - "parameters": [ - { - "key": "benefitType", - "value": "OPD" - }, - { - "key": "policyId", - "value": "SA000A123" - } - ] - }, - "title": { - "text": "Your doctor \nconsultation is done!", - "size": 14, - "textColor": "#191919", - "font": "BOLD" - }, - "subtitle": { - "text": "View your prescription", - "size": 12, - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "leftIcon": { - "url": "https://i.postimg.cc/YGC5qmg6/img-doctor-consultation.png" - }, - "chevronIconCode": "ARROW_FORWARD_ORANGE", - "rightText": { - "text": "17th Sept’22", - "size": 10, - "textColor": "#000000", - "font": "SEMI_BOLD" - } - } - } - ] - }, - { - "title": "My Calendar", - "widgets": [ - { - "widgetId": "titleWidget", - "widgetName": "TITLE_WIDGET", - "widgetLayoutParams": { - "backgroundColor": "#ffffff", - "margin": "16,0,0,0" - }, - "widgetData": { - "title": { - "text": "My calendar", - "size": "16", - "font": "BOLD", - "textColor": "#000000" - } - } - }, - { - "widgetId": "verticalCheckpointWidget", - "widgetName": "VERTICAL_CHECKPOINT_WIDGET", - "widgetLayoutParams": { - "backgroundColor": "#ffffff", - "margin": "0,14,0,0" - }, - "widgetData": { - "checkpointList": [ - { - "heading": { - "text": "Sept’22", - "size": "14", - "font": "SEMI-BOLD", - "textColor": "#1A1A1A" - }, - "description": { - "text": "Paid by NAVI on 17th Sept’22", - "size": "12", - "font": "SEMI-BOLD", - "textColor": "#000000" - }, - "stampInfo": { - "show": "true", - "url": "https://i.postimg.cc/CxRB7pz9/Stamp.png" - }, - "status": "COMPLETED", - "showGreenBackground": "true" - }, - { - "heading": { - "text": "Oct’22", - "size": "14", - "font": "SEMI-BOLD", - "textColor": "#1A1A1A" - }, - "description": { - "text": "Paid by you on 19th Oct '22", - "size": "12", - "font": "SEMI-BOLD", - "textColor": "#000000" - }, - "stampInfo": { - "show": "false", - "url": "" - }, - "status": "COMPLETED", - "showGreenBackground": "true" - }, - { - "heading": { - "text": "Nov’22", - "size": "14", - "font": "SEMI-BOLD", - "textColor": "#1A1A1A" - }, - "description": { - "text": "Paid by you on 20th Nov '22", - "size": "12", - "font": "SEMI-BOLD", - "textColor": "#000000" - }, - "stampInfo": { - "show": "false", - "url": "" - }, - "status": "ONGOING", - "showGreenBackground": "true" - }, - { - "heading": { - "text": "Oct’22 - Sept’23", - "size": "14", - "font": "SEMI-BOLD", - "textColor": "#1A1A1A" - }, - "description": { - "text": "Extend validity to continue using these benefits for a year.", - "size": "12", - "font": "SEMI-BOLD", - "textColor": "#000000" - }, - "stampInfo": { - "show": "false", - "url": "" - }, - "status": "PENDING", - "showGreenBackground": "false" - } - ] - } - }, - { - "widgetId": "horizontalImageScrollWidget", - "widgetName": "HORIZONTAL_IMAGE_SCROLL_WIDGET", - "widgetLayoutParams": { - "backgroundColor": "#ffffff", - "margin": "0,16,0,36" - }, - "widgetData": { - "onScreenItemCount": "2.5", - "itemList": [ - { - "url": "https://i.ibb.co/WNr8Zmt/Group-36871.png" - }, - { - "url": "https://i.ibb.co/WNr8Zmt/Group-36871.png" - }, - { - "url": "https://i.ibb.co/WNr8Zmt/Group-36871.png" - }, - { - "url": "https://i.ibb.co/WNr8Zmt/Group-36871.png" - }, - { - "url": "https://i.ibb.co/WNr8Zmt/Group-36871.png" - }, - { - "url": "https://i.ibb.co/WNr8Zmt/Group-36871.png" - } - ] - } - } - ] - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetLayoutParams": { - "margin": "0,0,0,0" - }, - "widgetId": "FooterWithTitleAndButton", - "widgetData": { - "title": { - "text": "Get access to your cover @ ₹235 /month", - "size": 12, - "textColor": "#4D4D4D", - "font": "SEMI_BOLD", - "substringStyles": [ - { - "font": "BOLD", - "substring": "₹235 /month", - "textColor": "#FF5732" - } - ] - }, - "button": { - "backgroundColor": "#FF5732", - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "fi_payment", - "analyticsEventProperties": { - "name": "gi_fi_calendar_click", - "properties": { - "widget_id": "insurance:calendar:fi:benefits_try_now", - "button_id": "Extend Validity", - "days_left": "40" - } - } - }, - "title": { - "text": "Extend validity", - "textColor": "#FFFFFF", - "font": "BOLD" - } - } - } - } - ] - }, - "homeAndQuestionResponse": { - "landingPageData": { - "title": { - "text": "Health Score", - "textColor": "#FF5732", - "font": "BOLD", - "size": 24 - }, - "subTitle": { - "text": "Check your", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 16 - }, - "bodyText": { - "text": "Know your health details by answering few questions", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "buttonText": { - "text": "Let’s start", - "textColor": "#FFFFFF", - "font": "BOLD", - "size": 14 - } - }, - "questionnaireList": { - "categories": [ - { - "id": "1", - "title": { - "text": "Personal Details" - }, - "subTitle": { - "text": "Tell us about your" - }, - "rank": 1, - "questions": [ - { - "id": "1", - "title": { - "text": "My age is" - }, - "questionType": "SINGLE_CHOICE", - "questionMetaData": { - "scorerType": "NONE", - "identifier": "AGE" - }, - "options": [ - { - "id": "1", - "title": { - "text": "Below 18 years" - }, - "optionMetaData": { - "value": 9 - } - }, - { - "id": "2", - "title": { - "text": "18-30 years" - }, - "optionMetaData": { - "value": 24 - } - }, - { - "id": "3", - "title": { - "text": "30-40 years" - }, - "optionMetaData": { - "value": 35 - } - }, - { - "id": "4", - "title": { - "text": "40-60 years" - }, - "optionMetaData": { - "value": 50 - } - }, - { - "id": "5", - "title": { - "text": "60+ years" - }, - "optionMetaData": { - "value": 80 - } - } - ], - "animationId": 1 - }, - { - "id": "2", - "title": { - "text": "My height is" - }, - "questionType": "ITEM_PICKER", - "questionMetaData": { - "scorerType": "BMI", - "identifier": "Height", - "maxScore": 15 - }, - "parentQuestionId": "3", - "options": [ - { - "id": "1", - "title": { - "text": "5'0''", - "size": 32 - }, - "optionMetaData": { - "value": 152, - "unSelectedItemSize": 24 - } - }, - { - "id": "2", - "title": { - "text": "5'1''", - "size": 32 - }, - "optionMetaData": { - "value": 155, - "unSelectedItemSize": 24 - } - }, - { - "id": "3", - "title": { - "text": "5'2''", - "size": 32 - }, - "optionMetaData": { - "value": 158, - "unSelectedItemSize": 24 - } - }, - { - "id": "4", - "title": { - "text": "5'5''", - "size": 32 - }, - "optionMetaData": { - "value": 165, - "unSelectedItemSize": 24 - } - }, - { - "id": "5", - "title": { - "text": "5'7''", - "size": 32 - }, - "optionMetaData": { - "value": 170, - "unSelectedItemSize": 24 - } - }, - { - "id": "6", - "title": { - "text": "5'8''", - "size": 32 - }, - "optionMetaData": { - "value": 172, - "unSelectedItemSize": 24 - } - }, - { - "id": "7", - "title": { - "text": "5'9''", - "size": 32 - }, - "optionMetaData": { - "value": 175, - "unSelectedItemSize": 24 - } - }, - { - "id": "8", - "title": { - "text": "4'0''", - "size": 32 - }, - "optionMetaData": { - "value": 122, - "unSelectedItemSize": 24 - } - } - ], - "animationId": 2 - }, - { - "id": "3", - "title": { - "text": "My Weight is" - }, - "questionType": "ITEM_PICKER", - "questionMetaData": { - "scorerType": "BMI", - "identifier": "Weight" - }, - "options": [ - { - "id": "1", - "title": { - "text": "Below 40 kgs" - }, - "optionMetaData": { - "value": 30, - "unSelectedItemSize": 12 - } - }, - { - "id": "2", - "title": { - "text": "Between 40 to 44 kgs", - "substringStyles": [ - { - "substring": "40", - "relativeSize": 1.714 - }, - { - "substring": "44", - "relativeSize": 1.714 - } - ] - }, - "optionMetaData": { - "value": 42, - "unSelectedItemSize": 12 - } - }, - { - "id": "3", - "title": { - "text": "Between 45 to 49 kgs", - "substringStyles": [ - { - "substring": "45", - "relativeSize": 1.714 - }, - { - "substring": "49", - "relativeSize": 1.714 - } - ] - }, - "optionMetaData": { - "value": 47, - "unSelectedItemSize": 12 - } - }, - { - "id": "4", - "title": { - "text": "Between 50 to 54 kgs", - "substringStyles": [ - { - "substring": "50", - "relativeSize": 1.714 - }, - { - "substring": "54", - "relativeSize": 1.714 - } - ] - }, - "optionMetaData": { - "value": 52, - "unSelectedItemSize": 12 - } - }, - { - "id": "5", - "title": { - "text": "Between 55 to 59 kgs", - "substringStyles": [ - { - "substring": "55", - "relativeSize": 1.714 - }, - { - "substring": "59", - "relativeSize": 1.714 - } - ] - }, - "optionMetaData": { - "value": 57, - "unSelectedItemSize": 12 - } - }, - { - "id": "6", - "title": { - "text": "Between 60 to 64 kgs", - "substringStyles": [ - { - "substring": "60", - "relativeSize": 1.714 - }, - { - "substring": "64", - "relativeSize": 1.714 - } - ] - }, - "optionMetaData": { - "value": 62, - "unSelectedItemSize": 12 - } - }, - { - "id": "7", - "title": { - "text": "Between 65 to 69 kgs" - }, - "optionMetaData": { - "value": 67, - "unSelectedItemSize": 12 - } - }, - { - "id": "8", - "title": { - "text": "Between 70 to 74 kgs", - "substringStyles": [ - { - "substring": "70", - "relativeSize": 1.714 - }, - { - "substring": "74", - "relativeSize": 1.714 - } - ] - }, - "optionMetaData": { - "value": 72, - "unSelectedItemSize": 12 - } - } - ], - "animationId": 3 - } - ] - }, - { - "id": "2", - "title": { - "text": "Health Conditions" - }, - "subTitle": { - "text": "Great, now onto your" - }, - "rank": 2, - "questions": [ - { - "id": "4", - "title": { - "text": "Do you have any of the following?" - }, - "questionType": "MULTIPLE_CHOICE", - "questionMetaData": { - "scorerType": "DEDUCTIVE", - "maxScore": 28 - }, - "options": [ - { - "id": "1", - "title": { - "text": "Diabetes" - }, - "optionMetaData": { - "score": 8, - "multiSelectEnabled": true - }, - "issuesList": [ - { - "organ": "Heart", - "probability": 65, - "disease": "Heart Attack, Clogged Arteries", - "cost": 5, - "completeContent": "People with diabetes have 65% chance of heart issues such as clogged arteries, heart attack", - "priorityOrder": 2 - }, - { - "organ": "Kidney", - "probability": 33, - "disease": "Kidney Failure", - "cost": 5, - "completeContent": "People with diabetes have 33% chance of kidney issues such as kidney failure", - "priorityOrder": 22 - }, - { - "organ": "Brain", - "probability": 20, - "disease": "Stroke", - "cost": 6, - "completeContent": "People with diabetes have 20% chance of getting a stroke", - "priorityOrder": 35 - } - ] - }, - { - "id": "2", - "title": { - "text": "High blood pressure" - }, - "optionMetaData": { - "score": 5, - "multiSelectEnabled": true - }, - "issuesList": [ - { - "organ": "Heart", - "probability": 30, - "disease": "Heart failure", - "cost": 5, - "completeContent": "People with hypertension have 30% chance of heart issues issues such as hearty failure", - "priorityOrder": 3 - }, - { - "organ": "Kidney", - "probability": 20, - "disease": "Kidney Failure", - "cost": 4, - "completeContent": "People with hypertension have 20% chance of kidney issues such as kidney failure", - "priorityOrder": 42 - } - ] - }, - { - "id": "3", - "title": { - "text": "Heart related issues" - }, - "optionMetaData": { - "score": 8, - "multiSelectEnabled": true - }, - "issuesList": [ - { - "organ": "Heart", - "probability": 100, - "disease": "Heart failure, Heart attack", - "cost": 5, - "completeContent": "People with cardiac ailments have a very high heart risk for heart failure and heart attack", - "priorityOrder": 1 - } - ] - }, - { - "id": "4", - "title": { - "text": "Cancer(any type)" - }, - "optionMetaData": { - "score": 7, - "multiSelectEnabled": true - } - }, - { - "id": "5", - "title": { - "text": "None" - }, - "optionMetaData": { - "score": 0, - "multiSelectEnabled": false - } - } - ], - "animationId": 5 - }, - { - "id": "5", - "title": { - "text": "How stressed are you?" - }, - "questionType": "SINGLE_CHOICE", - "questionMetaData": { - "scorerType": "ADDITIVE", - "maxScore": 5 - }, - "options": [ - { - "id": "1", - "title": { - "text": "No Stress" - }, - "iconCode": "NO_STRESS_EMOJI", - "optionMetaData": { - "score": 5 - } - }, - { - "id": "2", - "title": { - "text": "Slightly Stressed" - }, - "iconCode": "SLIGHT_STRESS_EMOJI", - "optionMetaData": { - "score": 2 - }, - "issuesList": [ - { - "organ": "Brain", - "probability": 30, - "disease": "Depression, Insomnia", - "cost": 2, - "completeContent": "People with continuous stress have a 30% chance to develop mental health issues such as depression, insomnia", - "priorityOrder": 36 - }, - { - "organ": "Heart", - "probability": 30, - "disease": "hypertension, heart attack", - "cost": 5, - "completeContent": "People with continuous stress have a 25% chance to develop issues such as high bloop pressure, increases cholesterol, etc", - "priorityOrder": 48 - } - ] - }, - { - "id": "3", - "title": { - "text": "Moderately Stressed" - }, - "iconCode": "MODERATE_STRESS_EMOJI", - "optionMetaData": { - "score": 1 - }, - "issuesList": [ - { - "organ": "Brain", - "probability": 60, - "disease": "Anxiety and depression", - "cost": 2, - "completeContent": "People with moderate stress have a 60% chance to develop mental health issues such as depreesion, insomnia", - "priorityOrder": 9 - }, - { - "organ": "Heart", - "probability": 40, - "disease": "hypertension, heart attack", - "cost": 5, - "completeContent": "People with moderare stress have a 40% chance to develop issues such as high bloop pressure, increased cholesterol, etc", - "priorityOrder": 37 - } - ] - }, - { - "id": "4", - "title": { - "text": "Extremely Stressed" - }, - "iconCode": "EXTREME_STRESS_EMOJI", - "optionMetaData": { - "score": 0 - }, - "issuesList": [ - { - "organ": "Heart", - "probability": 60, - "disease": "hypertension, heart attack", - "cost": 5, - "completeContent": "People with extreme stress have a 60% chance to develop issues such as high bloop pressure, increased cholesterol, etc", - "priorityOrder": 28 - }, - { - "organ": "Brain", - "probability": 80, - "disease": "Anxiety and depression", - "cost": 2, - "completeContent": "People with extreme stress have a 80% chance to develop mental health issues such as depreesion, insomnia", - "priorityOrder": 8 - } - ] - } - ], - "animationId": 6 - } - ], - "animationId": 4 - }, - { - "id": "3", - "title": { - "text": "LifeStyle Habits" - }, - "subTitle": { - "text": "Lastly, tell us about your" - }, - "rank": 3, - "questions": [ - { - "id": "6", - "title": { - "text": "How frequently do you exercise?" - }, - "questionType": "SINGLE_CHOICE", - "questionMetaData": { - "scorerType": "ADDITIVE", - "maxScore": 12 - }, - "options": [ - { - "id": "1", - "title": { - "text": "Almost never" - }, - "optionMetaData": { - "score": 0 - }, - "issuesList": [ - { - "organ": "Heart", - "probability": 50, - "disease": "Heart Attack", - "cost": 5, - "completeContent": "Rarely exercising increases the risk of heart attack by 40%", - "priorityOrder": 18 - }, - { - "organ": "Knee Joints", - "probability": 30, - "disease": "Arthritis", - "cost": 6, - "completeContent": "People who rarely exercise have 30% higher chance of arthritis", - "priorityOrder": 19 - }, - { - "organ": "Neck", - "probability": 25, - "disease": "Spondylitis", - "cost": 2, - "completeContent": "Rarely exercising increases the risk of spondylitis by 25%", - "priorityOrder": 29 - } - ] - }, - { - "id": "2", - "title": { - "text": "1-2 days a week" - }, - "optionMetaData": { - "score": 2 - }, - "issuesList": [ - { - "organ": "Heart", - "probability": 25, - "disease": "Heart Attack", - "cost": 5, - "completeContent": "Not exercising regularly increases the risk of heart attack by 25%", - "priorityOrder": 11 - }, - { - "organ": "Knee Joints", - "probability": 20, - "disease": "Arthritis", - "cost": 6, - "completeContent": "People who do not exercise regularly have 30% higher chance of arthritis", - "priorityOrder": 33 - }, - { - "organ": "Neck", - "probability": 25, - "disease": "Spondylitis", - "cost": 2, - "completeContent": "Not exercising regularly increases the risk of spondylitis by 25%", - "priorityOrder": 50 - } - ] - }, - { - "id": "3", - "title": { - "text": "3-5 days a week" - }, - "optionMetaData": { - "score": 5 - }, - "issuesList": [ - { - "organ": "Heart", - "probability": 20, - "disease": "Heart Attack", - "cost": 5, - "completeContent": "Not exercising regularly increases the risk of heart attack by 20%", - "priorityOrder": 43 - }, - { - "organ": "Knee Joints", - "probability": 10, - "disease": "Arthritis", - "cost": 6, - "completeContent": "People who do not exercise regularly have 20% higher chance of arthritis", - "priorityOrder": 47 - }, - { - "organ": "Neck", - "probability": 10, - "disease": "Spondylitis", - "cost": 2, - "completeContent": "Not exercising regularly increases the risk of spondilitis by 20%", - "priorityOrder": 55 - } - ] - }, - { - "id": "4", - "title": { - "text": "Almost daily" - }, - "optionMetaData": { - "score": 12 - } - } - ], - "animationId": 8 - }, - { - "id": "7", - "title": { - "text": "How long do you sleep?" - }, - "questionType": "SINGLE_CHOICE", - "questionMetaData": { - "scorerType": "ADDITIVE", - "maxScore": 10 - }, - "options": [ - { - "id": "1", - "title": { - "text": "More than 8 hours" - }, - "optionMetaData": { - "score": 10 - } - }, - { - "id": "2", - "title": { - "text": "6 to 8 hours" - }, - "optionMetaData": { - "score": 6 - }, - "issuesList": [ - { - "organ": "Brain", - "probability": 30, - "disease": "Depression", - "cost": 2, - "completeContent": "Not sleeping enough increases probability of mental health issues such as anxiety, depression, etc", - "priorityOrder": 46 - } - ] - }, - { - "id": "3", - "title": { - "text": "4 to 6 hours" - }, - "optionMetaData": { - "score": 2 - }, - "issuesList": [ - { - "organ": "Brain", - "probability": 30, - "disease": "Depression", - "cost": 2, - "completeContent": "Sleeping less than 6 hours increases probability of mental health issues such as anxiety, depression, etc by 50%", - "priorityOrder": 17 - }, - { - "organ": "Heart", - "probability": 20, - "disease": "Heart Attack", - "cost": 5, - "completeContent": "People having less than 6 hours of sleep have a 30% chance to develop issues such as high bloop pressure, diabetes etc ", - "priorityOrder": 30 - } - ] - }, - { - "id": "4", - "title": { - "text": "Less than 4 hours" - }, - "optionMetaData": { - "score": 0 - }, - "issuesList": [ - { - "organ": "Brain", - "probability": 60, - "disease": "Depression", - "cost": 2, - "completeContent": "Sleeping less than 4 hours increases probability of mental health issues such as anxiety, depression, etc by 75%", - "priorityOrder": 4 - }, - { - "organ": "Heart", - "probability": 40, - "disease": "Heart Attack", - "cost": 5, - "completeContent": "People having less than 4 hours of sleep have a 50% chance to develop issues such as high bloop pressure, diabetes etc ", - "priorityOrder": 14 - } - ] - } - ], - "animationId": 9 - }, - { - "id": "8", - "title": { - "text": "Do you smoke?" - }, - "questionType": "SINGLE_CHOICE", - "questionMetaData": { - "scorerType": "ADDITIVE", - "maxScore": 10 - }, - "options": [ - { - "id": "1", - "title": { - "text": "Regular" - }, - "optionMetaData": { - "score": 0 - }, - "issuesList": [ - { - "organ": "Lungs", - "probability": 75, - "disease": "Cancer", - "cost": 2, - "completeContent": "Smoking is injurious to health and regular smoking increases the risk of asthma and lung cancer by 70%", - "priorityOrder": 7 - } - ] - }, - { - "id": "2", - "title": { - "text": "Sometimes" - }, - "optionMetaData": { - "score": 2 - }, - "issuesList": [ - { - "organ": "Lungs", - "probability": 40, - "disease": "Asthma", - "cost": 1, - "completeContent": "Smoking is injurious to health and increases the risk of asthma attacks and lung cancer by 40%", - "priorityOrder": 21 - } - ] - }, - { - "id": "3", - "title": { - "text": "Never" - }, - "optionMetaData": { - "score": 10 - } - } - ], - "animationId": 10 - }, - { - "id": "9", - "title": { - "text": "What is your total daily screen time?" - }, - "questionType": "SINGLE_CHOICE", - "questionMetaData": { - "scorerType": "ADDITIVE", - "maxScore": 10 - }, - "options": [ - { - "id": "1", - "title": { - "text": "Less than 3 hours per day" - }, - "optionMetaData": { - "score": 10 - } - }, - { - "id": "2", - "title": { - "text": "3 to 8 hours per day" - }, - "optionMetaData": { - "score": 5 - }, - "issuesList": [ - { - "organ": "Back", - "probability": 30, - "disease": "Spondylosis", - "cost": 2, - "completeContent": "Having higher screentime with incorrect posture has significant effect on back and neck, with a 30% risk of spondylosis", - "priorityOrder": 38 - }, - { - "organ": "Eye", - "probability": 30, - "disease": "eye strain, dry eye, blurred vision", - "cost": 1, - "completeContent": "People having higher screentime have a 30% chance of developing eye strain, dry eye and blurred vision", - "priorityOrder": 49 - } - ] - }, - { - "id": "3", - "title": { - "text": "8 to 12 hours per day" - }, - "optionMetaData": { - "score": 3 - }, - "issuesList": [ - { - "organ": "Back", - "probability": 40, - "disease": "Spondylosis", - "cost": 2, - "completeContent": "Having around 12 hours screen-time with incorrect posture has significant effect on back and neck, with a 40% risk of spondylosis", - "priorityOrder": 32 - }, - { - "organ": "Eye", - "probability": 40, - "disease": "eye strain, dry eye, blurred vision", - "cost": 1, - "completeContent": "People having around 12 hours screen-time have a 40% chance of developing eye strain, dry eye and blurred vision", - "priorityOrder": 39 - } - ] - }, - { - "id": "4", - "title": { - "text": "12 to 16 hours per day" - }, - "optionMetaData": { - "score": 1 - }, - "issuesList": [ - { - "organ": "Back", - "probability": 50, - "disease": "Spondylosis", - "cost": 2, - "completeContent": "Having around 16 hours screen-time with incorrect posture has significant effect on back and neck, with a 60% risk of spondylosis", - "priorityOrder": 20 - }, - { - "organ": "Eye", - "probability": 60, - "disease": "eye strain, dry eye, blurred vision", - "cost": 1, - "completeContent": "People having around 16 hours screen-time have a 60% chance of developing eye strain, dry eye and blurred vision", - "priorityOrder": 31 - } - ] - }, - { - "id": "5", - "title": { - "text": "16+ hours per day" - }, - "optionMetaData": { - "score": 0 - }, - "issuesList": [ - { - "organ": "Back", - "probability": 60, - "disease": "Spondylosis", - "cost": 2, - "completeContent": "Having >16 hours screen-time with incorrect posture has significant effect on back and neck, with a 80% risk of spondylosis", - "priorityOrder": 15 - }, - { - "organ": "Eye", - "probability": 80, - "disease": "eye strain, dry eye, blurred vision", - "cost": 1, - "completeContent": "People having >16 hours screen-time have a 80% chance of developing eye strain, dry eye and blurred vision", - "priorityOrder": 16 - } - ] - } - ], - "animationId": 11 - }, - { - "id": "10", - "title": { - "text": "How frequently do you consume food from outside? " - }, - "questionType": "SINGLE_CHOICE", - "questionMetaData": { - "scorerType": "ADDITIVE", - "maxScore": 10 - }, - "options": [ - { - "id": "1", - "title": { - "text": "Almost never" - }, - "optionMetaData": { - "score": 10 - } - }, - { - "id": "2", - "title": { - "text": "Once a week" - }, - "optionMetaData": { - "score": 5 - }, - "issuesList": [ - { - "organ": "Intestine", - "probability": 20, - "disease": "constipation, cancer", - "cost": 10, - "completeContent": "Consuming non-home cooked food regularly makes you prone (10% higher chance) to constipation, cancer, etc", - "priorityOrder": 45 - }, - { - "organ": "Liver", - "probability": 20, - "disease": "Fatty Liver , liver cancer", - "cost": 5, - "completeContent": "People eating non-home cooked food regularly have 20% chance of developing liver issues such as fatty liver, liver cancer, etc", - "priorityOrder": 52 - }, - { - "organ": "Heart", - "probability": 20, - "disease": "hypertension, heart attack", - "cost": 5, - "completeContent": "Consuming non-home cooked food frequently makes you prone (20% higher chance) to heart issues such as hypertension, heart attack, etc", - "priorityOrder": 53 - } - ] - }, - { - "id": "3", - "title": { - "text": "2 to 5 times a week" - }, - "optionMetaData": { - "score": 2 - }, - "issuesList": [ - { - "organ": "Intestine", - "probability": 40, - "disease": "constipation, cancer", - "cost": 5, - "completeContent": "Consuming non-home cooked food frequently makes you prone (30% higher chance) to constipation, cancer, etc", - "priorityOrder": 24 - }, - { - "organ": "Liver", - "probability": 30, - "disease": "Fatty Liver , liver cancer", - "cost": 5, - "completeContent": "People consuming non-home cooked food frequently have 30% chance of developing liver issues such as fatty liver, liver cancer, etc", - "priorityOrder": 25 - }, - { - "organ": "Heart", - "probability": 30, - "disease": "hypertension, heart attack", - "cost": 5, - "completeContent": "Consuming non-home cooked food frequently makes you prone (30% higher chance) to heart issues such as hypertension, heart attack", - "priorityOrder": 41 - } - ] - }, - { - "id": "4", - "title": { - "text": "5+ times a week" - }, - "optionMetaData": { - "score": 0 - }, - "issuesList": [ - { - "organ": "Intestine", - "probability": 60, - "disease": "constipation, cancer", - "cost": 5, - "completeContent": "Consuming non-home cooked food almost daily makes you prone (60% higher chance) to constipation, cancer, etc", - "priorityOrder": 12 - }, - { - "organ": "Liver", - "probability": 40, - "disease": "Fatty Liver , liver cancer", - "cost": 5, - "completeContent": "People consuming non-home cooked food almost daily have 40% chance of developing liver issues such as fatty liver, liver cancer, etc", - "priorityOrder": 13 - }, - { - "organ": "Heart", - "probability": 40, - "disease": "hypertension, heart attack", - "cost": 5, - "completeContent": "Consuming non-home cooked food almost daily makes you prone (40% higher chance) to heart issues such as hypertension, heart attack", - "priorityOrder": 26 - } - ] - } - ], - "animationId": 12 - } - ], - "animationId": 7 - } - ] - } - }, - "healthRiskScoreResponse": { - "pageTitle": { - "text": "Your health score", - "size": 16, - "textColor": "#444444" - }, - "scoreDetails": { - "collapseDelay": 2500, - "collapsedState": { - "title": { - "text": "Score", - "size": 14, - "font": "BOLD", - "textColor": "#000000" - }, - "scoreTitle": { - "text": "75", - "size": 24, - "font": "BOLD", - "textColor": "#14BC51" - }, - "scoreRemarks": { - "title": { - "text": "GOOD", - "textColor": "#218825", - "size": 8, - "font": "BOLD" - }, - "backgroundColor": "#E2F8E3" - }, - "cardProperties": { - "elevation": 4, - "gradient": { - "startGradientColor": "#FFFFFF", - "endGradientColor": "#E8FDE5" - } - } - }, - "expandedState": { - "totalScore": 100, - "currentScore": 75, - "scoreRemarks": { - "title": { - "text": "GOOD", - "textColor": "#218825", - "size": 8, - "font": "BOLD" - }, - "backgroundColor": "#E2F8E3" - }, - "scoreTitle": { - "text": "75", - "size": 46, - "font": "BOLD", - "textColor": "#000000" - } - } - }, - "dividerText": { - "font": "BOLD", - "text": "You have 4 concerning issues", - "size": 14, - "textColor": "#444444" - }, - "carouselItems": [ - { - "imageUrl": "String", - "title": { - "text": "1. Your Heart Condition", - "size": 14, - "textColor": "#191919", - "font": "BOLD" - }, - "bodyText": { - "text": "You have BMI score (>30) and have a 45% risk to develop a heart disease in their lifetime", - "font": "SEMI_BOLD", - "textColor": "#6B6B6B", - "substringStyles": [ - { - "font": "BOLD", - "textColor": "#444444", - "startIndex": 9, - "endIndex": 23 - } - ] - }, - "bottomText": { - "text": "Expected expense: ₹67,000 /yr", - "textColor": "#6B6B6B", - "size": 12, - "font": "BOLD", - "substringStyles": [ - { - "startIndex": 17, - "endIndex": 25, - "relativeSize": 1.34, - "textColor": "#444444" - }, - { - "startIndex": 26, - "endIndex": 28, - "relativeSize": 0.834, - "font": "SEMI_BOLD" - } - ] - } - } - ], - "tipText": { - "text": "Each medical expense can sum upto a hefty amount in a particular year", - "size": 12, - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "textDrawableData": { - "left": { - "iconCode": "GLOWING_BULB" - } - } - }, - "costSectionTitle": { - "title": { - "text": "your current health conditions", - "textColor": "#FF5732", - "font": "BOLD", - "size": 18 - }, - "subtitle": { - "text": "Typical medical costs in India for", - "font": "SEMI_BOLD", - "textColor": "#6B6B6B", - "size": 14 - } - }, - "withoutInsuranceCostCard": { - "title": { - "text": "Without\nhealth insurance", - "size": 10, - "font": "SEMI_BOLD", - "textColor": "#6B6B6B", - "textDrawableData": { - "left": { - "iconCode": "UMBRELLA_CROSS" - } - } - }, - "subTitle": { - "text": "about\n₹1,87,987 /yr", - "size": 10, - "font": "SEMI_BOLD", - "textColor": "#6B6B6B", - "substringStyles": [ - { - "font": "BOLD", - "substring": "₹1,87,987", - "relativeSize": 1.2, - "textColor": "#22A940" - } - ] - } - }, - "withInsuranceCostCard": { - "title": { - "text": "With\nhealth insurance", - "size": 12, - "font": "BOLD", - "textColor": "#6B6B6B", - "textDrawableData": { - "left": { - "iconCode": "UMBRELLA_HEART" - } - } - }, - "subTitle": { - "text": "starting at\n₹8,987 /yr", - "size": 10, - "font": "SEMI_BOLD", - "textColor": "#6B6B6B", - "substringStyles": [ - { - "font": "BOLD", - "substring": "₹8,987", - "relativeSize": 1.6, - "textColor": "#444444" - } - ] - } - }, - "expandableSection": { - "expandButtonTitle": { - "size": 12, - "text": "See how", - "textDrawableData": { - "right": { - "iconCode": "ARROW_RED_DOWN" - } - } - }, - "collapseButtonTitle": { - "size": 12, - "text": "See less", - "textDrawableData": { - "right": { - "iconCode": "ARROW_RED_UP" - } - } - }, - "compareCardData": { - "rowCount": 4, - "columnCount": 3, - "compareItems": [ - [ - { - "title": { - "text": "Your Potential Risks", - "size": 14, - "font": "BOLD", - "textColor": "#000000" - }, - "backgroundColor": "#FFFFFF" - }, - { - "title": { - "text": "Without\nHealth Insurance", - "size": 10, - "font": "SEMI_BOLD", - "textColor": "#6B6B6B", - "textDrawableData": { - "top": { - "iconCode": "UMBRELLA_CROSS" - } - } - }, - "backgroundColor": "#FAFAFA" - }, - { - "title": { - "text": "With\nHealth Insurance", - "size": 10, - "font": "BOLD", - "textColor": "#6B6B6B", - "textDrawableData": { - "top": { - "iconCode": "UMBRELLA_HEART" - } - } - }, - "backgroundColor": "#EFFFEC" - } - ], - [ - { - "title": { - "text": "Brain disease such as Depression", - "size": 12, - "textColor": "#6B6B6B" - }, - "backgroundColor": "#FFFFFF" - }, - { - "title": { - "text": "₹2 lacs /yr", - "size": 10, - "textColor": "#6B6B6B", - "substringStyles": [ - { - "font": "BOLD", - "substring": "₹2 lacs", - "relativeSize": 1.2 - } - ] - }, - "backgroundColor": "#FAFAFA" - }, - { - "title": { - "text": "Covered", - "size": 12, - "font": "BOLD", - "textColor": "#191919" - }, - "backgroundColor": "#EFFFEC" - } - ], - [ - { - "title": { - "text": "Heart disease such as Heart Attack", - "size": 12, - "textColor": "#6B6B6B" - }, - "backgroundColor": "#FFFFFF" - }, - { - "title": { - "text": "₹5 lacs /yr", - "size": 10, - "textColor": "#6B6B6B", - "substringStyles": [ - { - "font": "BOLD", - "substring": "₹5 lacs", - "relativeSize": 1.2 - } - ] - }, - "backgroundColor": "#FAFAFA" - }, - { - "title": { - "text": "Covered", - "size": 12, - "font": "BOLD", - "textColor": "#191919" - }, - "backgroundColor": "#EFFFEC" - } - ], - [ - { - "title": { - "text": "Intestine disease such as constipation, cancer", - "size": 12, - "textColor": "#6B6B6B" - }, - "backgroundColor": "#FFFFFF" - }, - { - "title": { - "text": "₹5 lacs /yr", - "size": 10, - "textColor": "#6B6B6B", - "substringStyles": [ - { - "font": "BOLD", - "substring": "₹5 lacs", - "relativeSize": 1.2 - } - ] - }, - "backgroundColor": "#FAFAFA" - }, - { - "title": { - "text": "Covered", - "size": 12, - "font": "BOLD", - "textColor": "#191919" - }, - "backgroundColor": "#EFFFEC" - } - ], - [ - { - "title": { - "text": "Probable annual expenses", - "size": 14, - "font": "BOLD", - "textColor": "#444444" - }, - "backgroundColor": "#FFFFFF" - }, - { - "title": { - "text": "₹12 lacs /yr", - "size": 10, - "textColor": "#6B6B6B", - "substringStyles": [ - { - "font": "BOLD", - "substring": "₹12 lacs", - "relativeSize": 1.2 - } - ] - }, - "backgroundColor": "#FAFAFA" - }, - { - "title": { - "text": "₹2196 /yr", - "size": 10, - "textColor": "#6B6B6B", - "substringStyles": [ - { - "font": "BOLD", - "textColor": "#22A940", - "substring": "₹2196", - "relativeSize": 1.6 - } - ] - }, - "backgroundColor": "#EFFFEC" - } - ] - ] - } - }, - "footerData": { - "buttonData": { - "title": { - "text": "Buy Insurance", - "size": 14, - "font": "BOLD", - "textColor": "#FFFFFF" - }, - "cta": { - "url": "gi/chat" - } - }, - "subtitle": { - "text": "starts at only ₹241 /month", - "size": 12, - "textColor": "#6B6B6B", - "font": "BOLD" - } - }, - "backBottomSheetData": {} - }, - "callbackResponse": { - "deviceId": "82b74a26dc79aab2", - "phoneNumber": "5555556985" - }, - "initiateAutoPayResponse": { - "amount": 100, - "providerDetails": { - "provider": "PAYU", - "providerKey": "vXGvlk" - }, - "paymentReferenceId": "21071233333677", - "applicationReferenceId": "e4f3030d07d24352a182bfb6431b96c6", - "billingDetails": { - "billingAmount": 100, - "currency": "INR", - "paymentType": "APP_PROVIDER_SDK", - "billingCycle": "MONTHLY", - "billingInterval": "1", - "paymentStartDate": "2021-07-23", - "paymentEndDate": "2022-07-23" - } - }, - "benefitsResponse": { - "pageLayoutParams": { - "pageBackgroundColor": "#F7F9FC" - }, - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "showDivider": true, - "titleAlign": "CENTER", - "title": { - "text": "Benefits", - "textColor": "#1A1A1A", - "alignment": "CENTER", - "font": "SEMI_BOLD", - "size": 16 - }, - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "HI_landing_info_page_back", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - } - } - ], - "content": [ - { - "widgetId": "bestInClassBenefitsTitleWidget", - "widgetName": "TITLE_WIDGET", - "widgetLayoutParams": { - "margin": "20,24,20,20" - }, - "widgetData": { - "title": { - "text": "Best-in-class benefits", - "textColor": "#045DE9", - "font": "BOLD", - "gradient": { - "startGradientColor": "#6DCEFF", - "endGradientColor": "#045DE9", - "angle": 180 - }, - "size": 16 - } - } - }, - { - "widgetId": "productInfoWidget", - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,16" - }, - "widgetData": { - "iconUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/100-percent-hosp-bills-covered.png", - "title": { - "text": "100% Hospital Bill Covered", - "textColor": "#000000", - "font": "BOLD", - "size": 14 - }, - "description": "We cover your entire hospitalisation bill without any hidden terms and conditions!", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/chevron_icon.png", - "cta": { - "title": "100% Hospital Bill Covered", - "type": "BENEFITS_BOTTOMSHEET", - "url": "/benefits-bottomsheet", - "analyticsEvent": "HI_btn_click_benefit_info_100%_hospital_bill_covered", - "parameters": [ - { - "key": "title", - "value": "100% Hospital Bill Covered" - }, - { - "key": "description", - "value": "We cover your entire hospitalisation bill and also cover any related medical expenses from 90 days before to 180 days after hospitalisation. The best part? No hidden terms and conditions!" - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/100-percent-hosp-bills-covered.png" - } - ], - "analyticsEventProperties": { - "name": "HI_btn_click_benefit_info_100%_hospital_bill_covered", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - }, - { - "widgetId": "productInfoWidget", - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,16" - }, - "widgetData": { - "iconUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/free-lab-test.png", - "title": { - "text": "Free Yearly Lab Test", - "textColor": "#000000", - "font": "BOLD", - "size": 14 - }, - "description": "We provide an annual free lab test right at your doorstep for all members older than 17 years", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/chevron_icon.png", - "cta": { - "title": "Free Yearly Lab Test", - "type": "BENEFITS_BOTTOMSHEET", - "url": "/benefits-bottomsheet", - "analyticsEvent": "HI_btn_click_benefit_info_free_yearly_lab_test", - "parameters": [ - { - "key": "title", - "value": "Free Yearly Lab Test" - }, - { - "key": "description", - "value": "You get a Complimentary preventive health checkup at our network diagnostic labs for members older than 17 years once during a Policy Year. " - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/free-lab-test.png" - } - ], - "analyticsEventProperties": { - "name": "HI_btn_click_benefit_info_free_yearly_lab_test", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - }, - { - "widgetId": "productInfoWidget", - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,16" - }, - "widgetData": { - "iconUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/online-doc-consult.png", - "title": { - "text": "Unlimited Online Consultations", - "textColor": "#000000", - "font": "BOLD", - "size": 14 - }, - "description": "You get unlimited online doctor consultations from the top doctors of the country, anytime and anywhere", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/chevron_icon.png", - "cta": { - "title": "Unlimited Online Consultations", - "type": "BENEFITS_BOTTOMSHEET", - "url": "/benefits-bottomsheet", - "analyticsEvent": "HI_btn_click_benefit_info_unlimited_online_consultations", - "parameters": [ - { - "key": "title", - "value": "Unlimited Online Consultations" - }, - { - "key": "description", - "value": "You can get unlimited online doctor consultations with top doctors of the country at no additional costs." - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/online-doc-consult.png" - } - ], - "analyticsEventProperties": { - "name": "HI_btn_click_benefit_info_unlimited_online_consultations", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - }, - { - "widgetId": "productInfoWidget", - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,16" - }, - "widgetData": { - "iconUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/covid-19-hosp.png", - "title": { - "text": "Covid-19 Hospitalisation", - "textColor": "#000000", - "font": "BOLD", - "size": 14 - }, - "description": "Expenses related to COVID-19 hospitalisation of more than 24 hours", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/chevron_icon.png", - "cta": { - "title": "Covid-19 Hospitalisation", - "type": "BENEFITS_BOTTOMSHEET", - "url": "/benefits-bottomsheet", - "analyticsEvent": "HI_btn_click_benefit_info_covid-19_hospitalisation", - "parameters": [ - { - "key": "title", - "value": "Covid-19 Hospitalisation" - }, - { - "key": "description", - "value": "We pay for your expenses related to COVID-19 hospitalisation if you are hospitalised for more than 24 hours" - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/covid-19-hosp.png" - } - ], - "analyticsEventProperties": { - "name": "HI_btn_click_benefit_info_covid-19_hospitalisation", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - }, - { - "widgetId": "productInfoWidget", - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,16" - }, - "widgetData": { - "iconUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/cahsless-hospitals.png", - "title": { - "text": "10,000+ Cashless hospitals", - "textColor": "#000000", - "font": "BOLD", - "size": 14 - }, - "description": "We have the widest network of 10,000+ partner hospitals in India along with the best claims.", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/chevron_icon.png", - "cta": { - "title": "10,000+ Cashless hospitals", - "type": "BENEFITS_BOTTOMSHEET", - "url": "/benefits-bottomsheet", - "analyticsEvent": "HI_btn_click_benefit_info_10,000+_cashless_hospitals", - "parameters": [ - { - "key": "title", - "value": "10,000+ Cashless hospitals" - }, - { - "key": "description", - "value": "We have the widest network of 10,000+ hospitals in India along with the best claims experience and approvals in just 20 minutes. And the best part? No hidden terms and conditions!" - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/cahsless-hospitals.png" - } - ], - "analyticsEventProperties": { - "name": "HI_btn_click_benefit_info_10,000+_cashless_hospitals", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - }, - { - "widgetId": "productInfoWidget", - "widgetName": "PRODUCT_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "16,0,16,20" - }, - "widgetData": { - "iconUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/rewards-for-walking-and-fitness.png", - "title": { - "text": "Rewards for walking and fitness", - "textColor": "#000000", - "font": "BOLD", - "size": 14 - }, - "description": "Additional discount of 5% on renewal premium for steps covered", - "chevronUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/chevron_icon.png", - "cta": { - "title": "Rewards for walking and fitness", - "type": "BENEFITS_BOTTOMSHEET", - "url": "/benefits-bottomsheet", - "analyticsEvent": "HI_btn_click_benefit_info_rewards_for_walking_and_fitness", - "parameters": [ - { - "key": "title", - "value": "Rewards for walking and fitness" - }, - { - "key": "description", - "value": "Additional discount of 5% on renewal premium if Insured Person walks average 4000 steps per day for minimum 250 days in a policy year. Discount increases by 1% for every additional 1000 steps thereafter (max. 10% discount)" - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/rewards-for-walking-and-fitness.png" - } - ], - "analyticsEventProperties": { - "name": "HI_btn_click_benefit_info_rewards_for_walking_and_fitness", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - } - ] - }, - "quoteResponse": { - "pageLayoutParams": { - "pageBackgroundColor": "#F7F9FC" - }, - "contentWidget": [ - { - "widgetId": "quotePreferenceWidget", - "widgetName": "PREFERENCE_INFO_WIDGET", - "widgetLayoutParams": { - "margin": "20,18,20,12" - }, - "widgetData": { - "leftText": { - "text": "Your Preferences", - "textColor": "#000000" - }, - "rightText": { - "text": "Change", - "textColor": "#1D44D0", - "cta": { - "type": "EDIT_PREFERENCES", - "analyticsEventProperties": { - "name": "HI_btn_click_change_sum_insured", - "properties": { - "applicationType": "FRESH_POLICY", - "planId": "NAVHLIP22133V012122_1_PLAN_7" - } - } - } - }, - "viewType": "fresh_policy", - "preferenceTexts": [ - { - "text": "Coverage", - "textColor": "#000000", - "primaryText": "₹ 6 Lakhs", - "primaryTextColor": "#000000" - }, - { - "text": "Member", - "textColor": "#000000", - "primaryText": "01", - "primaryTextColor": "#000000" - } - ] - } - }, - { - "widgetId": "BANNER_TITLE_WIDGET", - "widgetName": "TITLE_WIDGET", - "widgetLayoutParams": { - "margin": "20,12,20,0" - }, - "widgetData": { - "title": { - "text": "Experience India's best health cover", - "textColor": "#045DE9", - "font": "BOLD", - "gradient": { - "startGradientColor": "#6DCEFF", - "endGradientColor": "#045DE9", - "angle": 180 - }, - "size": 24 - } - } - }, - { - "widgetData": [ - { - "items": [ - { - "itemImage": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/quote-screen/100-perc-hosp-bill-covered.png", - "itemText": { - "text": "100% Hospital Bill Covered", - "textColor": "#1A1A1A", - "font": "SEMI_BOLD", - "size": 14 - }, - "widgetName": "IMAGE_WITH_TEXT_WIDGET" - }, - { - "itemImage": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/quote-screen/free-yearly-lab-tests.png", - "itemText": { - "text": "Free Health Checkup", - "textColor": "#1A1A1A", - "font": "SEMI_BOLD", - "size": 14 - }, - "widgetName": "IMAGE_WITH_TEXT_WIDGET" - }, - { - "itemImage": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/quote-screen/online-doc-consult.png", - "itemText": { - "text": "Unlimited Online Consultations", - "textColor": "#1A1A1A", - "font": "SEMI_BOLD", - "size": 14 - }, - "widgetName": "IMAGE_WITH_TEXT_WIDGET" - }, - { - "widgetName": "CTA_TEXT_WIDGET", - "title": { - "text": "Know More", - "textColor": "#1D44D0", - "font": "BOLD", - "size": 12 - }, - "cta": { - "type": "STATIC_BENEFITS_SCREEN", - "url": "static_page/benefits", - "parameters": [ - { - "key": "source", - "value": "BENEFITS_SCREEN" - } - ], - "analyticsEventProperties": { - "name": "HI_btn_click_landing_page_view_benefits", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - ] - } - ], - "widgetId": "listRadioWidget", - "widgetName": "RADIO_BUTTON_WITH_LIST_OF_ITEMS_WIDGET", - "widgetLayoutParams": { - "margin": "20,16,20,0" - } - }, - { - "widgetId": "hospitalCardWidget", - "widgetName": "HOSPITAL_CARD_WIDGET", - "widgetLayoutParams": { - "backgroundColor": "#FFFFFF", - "rootPadding": "20,24,20,0" - }, - "widgetData": { - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/hospital-widget-icon.png", - "title": "10,000+ Cashless Hospitals", - "description": "Fetching hospitals near you...", - "cta": { - "title": "See full list", - "type": "HOSPITALS", - "url": "gi/hospitals" - } - } - }, - { - "widgetId": "hospitalCardWidgetV2", - "widgetName": "HOSPITAL_CARD_WIDGET_V2", - "widgetLayoutParams": { - "backgroundColor": "#FFFFFF", - "rootPadding": "20,24,20,0" - }, - "widgetData": { - "cardProperties": { - "gradient": { - "startGradientColor": "#52268A", - "endGradientColor": "#650277", - "orientation": "LEFT_RIGHT" - } - }, - "title": { - "text": "Fetching hospitals near you...", - "textColor": "#FFC351", - "size": 16, - "font": "BOLD" - }, - "footerCardInfo": { - "title": { - "text": "+10,000", - "textColor": "#FFFFFF", - "size": 14, - "font": "BOLD" - }, - "subTitle": { - "text": "hospitals in India", - "textColor": "#FFFFFF", - "size": 12, - "font": "SEMI_BOLD" - }, - "properties": { - "background": "#AEAEAE", - "borderRadius": 21, - "opacity": 0.3 - }, - "cta": { - "type": "HOSPITALS", - "url": "/hospitals" - } - } - } - }, - { - "widgetId": "healthPartnerTitleWidget", - "widgetName": "TITLE_WIDGET", - "widgetLayoutParams": { - "backgroundColor": "#FFFFFF", - "rootPadding": "20,24,20,0" - }, - "widgetData": { - "title": { - "text": "Your trusted health partner!", - "textColor": "#045DE9", - "font": "BOLD", - "gradient": { - "startGradientColor": "#6DCEFF", - "endGradientColor": "#045DE9", - "angle": 180 - }, - "size": 18 - } - } - }, - { - "widgetId": "moreInfoBannerWidget", - "widgetName": "BANNER_GRID_WIDGET", - "widgetLayoutParams": { - "backgroundColor": "#FFFFFF", - "rootPadding": "10,16,10,24" - }, - "widgetData": { - "spanCount": 2, - "items": [ - { - "imageUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/fast-growing-brand.png", - "aspectRatio": 0.7432, - "cta": { - "type": "ABOUT_US", - "url": "/about-us", - "analyticsEvent": "HI_btn_click_quote_about_us", - "analyticsEventProperties": { - "name": "HI_btn_click_quote_about_us", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - }, - { - "imageUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/claims-approval-20mins.png", - "aspectRatio": 0.7563, - "cta": { - "type": "ABOUT_CLAIMS", - "url": "buyinsurance/about-claims", - "analyticsEvent": "HI_btn_click_quote_about_claims", - "parameters": [ - { - "key": "applicationType", - "value": "FRESH_POLICY" - } - ], - "analyticsEventProperties": { - "name": "HI_btn_click_quote_about_claims", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - } - } - ] - } - }, - { - "widgetId": "testimonialBannerWidget", - "widgetName": "BANNER_GRID_WIDGET", - "widgetLayoutParams": { - "margin": "10,24,10,96" - }, - "widgetData": { - "spanCount": 1, - "items": [ - { - "imageUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/irdai-banner.png", - "aspectRatio": 4.45 - } - ] - } - } - ], - "headerWidget": [ - { - "coverageDetails": { - "sumInsured": 600000, - "valueInWords": "₹ 6 Lakhs", - "title": "Coverage", - "insuredSliderData": { - "title": "Use slider to select your sum insured for an year", - "items": [ - { - "value": 200000, - "valueInWords": "₹ 2 Lakhs", - "description": { - "text": "Low Sum Insured", - "textColor": "#FF3333", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 300000, - "valueInWords": "₹ 3 Lakhs", - "description": { - "text": "Low Sum Insured", - "textColor": "#FF3333", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 400000, - "valueInWords": "₹ 4 Lakhs", - "description": { - "text": "Good Sum Insured", - "textColor": "#14BC51", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 500000, - "valueInWords": "₹ 5 Lakhs", - "description": { - "text": "Good Sum Insured", - "textColor": "#14BC51", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 600000, - "valueInWords": "₹ 6 Lakhs", - "description": { - "text": "Good Sum Insured", - "textColor": "#14BC51", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 700000, - "valueInWords": "₹ 7 Lakhs", - "description": { - "text": "Good Sum Insured", - "textColor": "#14BC51", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 800000, - "valueInWords": "₹ 8 Lakhs", - "description": { - "text": "Excellent Sum Insured", - "textColor": "#1D44D0", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 900000, - "valueInWords": "₹ 9 Lakhs", - "description": { - "text": "Excellent Sum Insured", - "textColor": "#1D44D0", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 1000000, - "valueInWords": "₹ 10 Lakhs", - "description": { - "text": "Excellent Sum Insured", - "textColor": "#1D44D0", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 1500000, - "valueInWords": "₹ 15 Lakhs", - "description": { - "text": "Excellent Sum Insured", - "textColor": "#1D44D0", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 2000000, - "valueInWords": "₹ 20 Lakhs", - "description": { - "text": "Excellent Sum Insured", - "textColor": "#1D44D0", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 2500000, - "valueInWords": "₹ 25 Lakhs", - "description": { - "text": "Excellent Sum Insured", - "textColor": "#1D44D0", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 5000000, - "valueInWords": "₹ 50 Lakhs", - "description": { - "text": "Excellent Sum Insured", - "textColor": "#1D44D0", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 7500000, - "valueInWords": "₹ 75 Lakhs", - "description": { - "text": "Excellent Sum Insured", - "textColor": "#1D44D0", - "font": "REGULAR", - "size": 14 - } - }, - { - "value": 10000000, - "valueInWords": "₹ 1 Crore", - "description": { - "text": "Excellent Sum Insured", - "textColor": "#1D44D0", - "font": "REGULAR", - "size": 14 - } - } - ] - }, - "quoteId": "1e86d215d42e42bfa440ba9954c0bdb8" - }, - "memberInfo": { - "memberCount": 1, - "memberDetails": [ - { - "id": "ccc161cfc61742ddb6623ecb26523ff8", - "age": 30, - "proposerRelationShip": "SELF", - "existingDisease": false, - "gender": "MALE" - } - ] - } - } - ], - "footerWidget": [ - { - "premiumInfo": { - "infoTitle": "12 Months", - "premiumDetails": { - "title": "Premium Details", - "tenureInfo": [ - { - "key": "Tenure", - "value": "12 months" - }, - { - "key": "Full Tenure Premium", - "value": "₹4,334" - } - ], - "premiumTitleInfo": { - "premiumTitle": "Monthly Premium", - "premiumValue": "₹361.19" - }, - "premiumBreakup": [ - { - "key": "Total Premium", - "value": "₹306.07" - }, - { - "key": "GST", - "value": "₹55.12" - } - ] - } - }, - "ctaTitle": "₹361/month", - "cta": { - "title": "Continue", - "type": "MEMBER_DETAILS", - "url": "buyinsurance/memberdetails", - "analyticsEvent": "HI_btn_click_quote_continue", - "parameters": [ - { - "key": "memberDetails", - "value": "[{\"id\":\"ccc161cfc61742ddb6623ecb26523ff8\",\"assetType\":\"HEALTH\",\"age\":30,\"gender\":\"MALE\",\"proposerRelationShip\":\"SELF\",\"existingDisease\":false}]" - } - ], - "analyticsEventProperties": { - "name": "HI_btn_click_quote_continue", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - }, - "isPremiumDetailsUpdated": false - } - ], - "metadata": { - "chatBackUpExists": true, - "portingDetails": { - "isPortedFromPolicy": false - } - } - }, - "offerDetailResponse": { - "productId": "NAVHLIP22133V012122_1", - "planId": "NAVHLIP22133V012122_1_PLAN_4", - "premiumAmount": 15844, - "assetPremiumDetails": [ - { - "id": "5000ec0819b545a9af7f7af9b53648e7", - "coverPremiumDetails": [ - { - "coverId": "NAVHLIP22133V012122_1_ADDITIONAL_SUM_INSURED_FOR_ACCIDENTAL_INJURY", - "totalAmount": 20, - "coverType": "MANDATORY", - "gst": 2.3, - "description": "Additional Sum Insured for Inpatient Care treatment of Accidental Injury", - "totalDiscount": 7.25, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_ADDITIONAL_SUM_INSURED_FOR_ACCIDENTAL_INJURY", - "optionId": "NAVHLIP22133V012122_1_ADDITIONAL_SUM_INSURED_FOR_ACCIDENTAL_INJURY_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "car_accident", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_ORGAN_DONOR_EXPENSES", - "totalAmount": 14, - "coverType": "MANDATORY", - "gst": 1.6, - "description": "Organ Donor Expenses", - "totalDiscount": 5.08, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_ORGAN_DONOR_EXPENSES", - "optionId": "NAVHLIP22133V012122_1_ORGAN_DONOR_EXPENSES_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "welfare", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_ONLINE_DOCTOR_CONSULTATIONS", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Unlimited online doctor consultations with our empanelled doctors.", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_ONLINE_DOCTOR_CONSULTATIONS", - "optionId": "NAVHLIP22133V012122_1_ONLINE_DOCTOR_CONSULTATIONS_UNLIMITED_NO_OF_TIMES_OTHER", - "optionValue": "UNLIMITED_NO_OF_TIMES", - "valueType": "OTHER", - "optionDescription": "Unlimited" - }, - "coverIcon": "online_doctor_consultation", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_SPECIFIED_DISEASE_PROCEDURE_WAITING_PERIOD", - "totalAmount": 14, - "coverType": "MANDATORY", - "gst": 1.6, - "description": "Specified disease/procedure waiting period", - "totalDiscount": 5.08, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_SPECIFIED_DISEASE_PROCEDURE_WAITING_PERIOD", - "optionId": "NAVHLIP22133V012122_1_SPECIFIED_DISEASE_PROCEDURE_WAITING_PERIOD_1_YEAR", - "optionValue": "1", - "valueType": "YEAR", - "optionDescription": "1 Year" - }, - "coverIcon": "cover_21", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_PRE-HOSPITALISATION", - "totalAmount": 29, - "coverType": "MANDATORY", - "gst": 3.32, - "description": "Pre-Hospitalisation", - "totalDiscount": 10.51, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_PRE-HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_PRE-HOSPITALISATION_60_DAY", - "optionValue": "60", - "valueType": "DAY", - "optionDescription": "60 Days" - }, - "coverIcon": "cover_7", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_EMERGENCY_ROAD_TRANSPORTATION", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Covers Road Transportation charges in case of emergency Hospitalisation and Repatriation of Mortal remains. Based on the Sum Insured selected one can avail of this additional feature up to Base Sum Insured", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_EMERGENCY_ROAD_TRANSPORTATION", - "optionId": "NAVHLIP22133V012122_1_EMERGENCY_ROAD_TRANSPORTATION_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "cover_9", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_DAILY_CASH_FOR_SHARED_ROOM_OCCUPANCY", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Daily cash for shared room occupancy", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_DAILY_CASH_FOR_SHARED_ROOM_OCCUPANCY", - "optionId": "NAVHLIP22133V012122_1_DAILY_CASH_FOR_SHARED_ROOM_OCCUPANCY_1000_CURRENCY", - "optionValue": "1000", - "valueType": "CURRENCY", - "optionDescription": "₹ 1000 per day" - }, - "coverIcon": "cover_tax_benefits", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_WELLNESS_BENEFITS", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Wellness Benefits", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_WELLNESS_BENEFITS", - "optionId": "NAVHLIP22133V012122_1_WELLNESS_BENEFITS_COVERED_OTHER", - "optionValue": "COVERED", - "valueType": "OTHER", - "optionDescription": "Covered" - }, - "coverIcon": "cover_1", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_AUTOMATIC_RESTORATION_OF_SUM_INSURED", - "totalAmount": 206, - "coverType": "MANDATORY", - "gst": 23.64, - "description": "Instant refill of 100% of the cover amount which can be used for future hospitalisation.", - "totalDiscount": 74.68, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_AUTOMATIC_RESTORATION_OF_SUM_INSURED", - "optionId": "NAVHLIP22133V012122_1_AUTOMATIC_RESTORATION_OF_SUM_INSURED_UNLIMITED_NO_OF_TIMES_OTHER", - "optionValue": "UNLIMITED_NO_OF_TIMES", - "valueType": "OTHER", - "optionDescription": "Unlimited Number of Times" - }, - "coverIcon": "cover_5", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_MATERNITY_AND_NEWBORN_COVER", - "totalAmount": 756, - "coverType": "OPTIONAL", - "gst": 115.66, - "description": "Maternity and Newborn Cover", - "totalDiscount": 113.4, - "totalLoading": 0, - "coverIcon": "cover_24", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_HOSPITALISATION", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Hospitalisation", - "totalDiscount": 0, - "totalLoading": 0, - "coverIcon": "cover_1", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_DOMICILIARY_HOSPITALISATION", - "totalAmount": 14, - "coverType": "MANDATORY", - "gst": 1.6, - "description": "Domiciliary Hospitalisation", - "totalDiscount": 5.08, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_DOMICILIARY_HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_DOMICILIARY_HOSPITALISATION_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "cover_8", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_IN-PATIENT_HOSPITALISATION", - "totalAmount": 6136, - "coverType": "MANDATORY", - "gst": 704.1, - "description": "In-patient Hospitalisation", - "totalDiscount": 2224.3, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_IN-PATIENT_HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_IN-PATIENT_HOSPITALISATION_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "cover_1", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_CUMULATIVE_(NO_CLAIM)_BONUS", - "totalAmount": 589, - "coverType": "MANDATORY", - "gst": 67.58, - "description": "Cumulative (No Claim) Bonus", - "totalDiscount": 213.51, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_CUMULATIVE_(NO_CLAIM)_BONUS", - "optionId": "NAVHLIP22133V012122_1_CUMULATIVE_(NO_CLAIM)_BONUS_25_UPTO_100_SI_OTHER", - "optionValue": "25_UPTO_100_SI", - "valueType": "OTHER", - "optionDescription": "25% of SI per year up to 100%" - }, - "coverIcon": "cover_23", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_MATERNITY_COVER", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Additional maternity cover for up to 2 deliveries after 2 years of first policy purchase. Also covers pre-natal and post-natal expenses", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_MATERNITY_COVER", - "optionId": "NAVHLIP22133V012122_1_MATERNITY_COVER_30000_CURRENCY", - "optionValue": "30000", - "valueType": "CURRENCY", - "optionDescription": "Up to ₹ 30,000" - }, - "coverIcon": "cover_24", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_NEWBORN_BABY_COVER", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Medical expenses towards treatment of newborn baby from birth up to 90 days and vaccination expenses up to 1 year", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_NEWBORN_BABY_COVER", - "optionId": "NAVHLIP22133V012122_1_NEWBORN_BABY_COVER_10000_CURRENCY", - "optionValue": "10000", - "valueType": "CURRENCY", - "optionDescription": "Up to ₹ 10,000" - }, - "coverIcon": "cover_25", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_PRE-EXISTING_DISEASE_WAITING_PERIOD", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Pre-existing Disease Waiting Period", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_PRE-EXISTING_DISEASE_WAITING_PERIOD", - "optionId": "NAVHLIP22133V012122_1_PRE-EXISTING_DISEASE_WAITING_PERIOD_1_YEAR", - "optionValue": "1", - "valueType": "YEAR", - "optionDescription": "1 Year" - }, - "coverIcon": "cover_20", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_POST-HOSPITALISATION", - "totalAmount": 59, - "coverType": "MANDATORY", - "gst": 6.78, - "description": "Post-Hospitalisation", - "totalDiscount": 21.39, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_POST-HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_POST-HOSPITALISATION_90_DAY", - "optionValue": "90", - "valueType": "DAY", - "optionDescription": "90 Days" - }, - "coverIcon": "cover_7", - "opted": true - } - ], - "totalPremium": 6084.94, - "basePremium": 7837, - "totalDiscount": 2680.28, - "totalLoading": 0 - }, - { - "id": "7c93be59f97f42c9b55caa889b64d4d0", - "coverPremiumDetails": [ - { - "coverId": "NAVHLIP22133V012122_1_ADDITIONAL_SUM_INSURED_FOR_ACCIDENTAL_INJURY", - "totalAmount": 20, - "coverType": "MANDATORY", - "gst": 2.3, - "description": "Additional Sum Insured for Inpatient Care treatment of Accidental Injury", - "totalDiscount": 7.25, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_ADDITIONAL_SUM_INSURED_FOR_ACCIDENTAL_INJURY", - "optionId": "NAVHLIP22133V012122_1_ADDITIONAL_SUM_INSURED_FOR_ACCIDENTAL_INJURY_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "car_accident", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_ORGAN_DONOR_EXPENSES", - "totalAmount": 14, - "coverType": "MANDATORY", - "gst": 1.6, - "description": "Organ Donor Expenses", - "totalDiscount": 5.08, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_ORGAN_DONOR_EXPENSES", - "optionId": "NAVHLIP22133V012122_1_ORGAN_DONOR_EXPENSES_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "welfare", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_ONLINE_DOCTOR_CONSULTATIONS", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Unlimited online doctor consultations with our empanelled doctors.", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_ONLINE_DOCTOR_CONSULTATIONS", - "optionId": "NAVHLIP22133V012122_1_ONLINE_DOCTOR_CONSULTATIONS_UNLIMITED_NO_OF_TIMES_OTHER", - "optionValue": "UNLIMITED_NO_OF_TIMES", - "valueType": "OTHER", - "optionDescription": "Unlimited" - }, - "coverIcon": "online_doctor_consultation", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_SPECIFIED_DISEASE_PROCEDURE_WAITING_PERIOD", - "totalAmount": 14, - "coverType": "MANDATORY", - "gst": 1.6, - "description": "Specified disease/procedure waiting period", - "totalDiscount": 5.08, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_SPECIFIED_DISEASE_PROCEDURE_WAITING_PERIOD", - "optionId": "NAVHLIP22133V012122_1_SPECIFIED_DISEASE_PROCEDURE_WAITING_PERIOD_1_YEAR", - "optionValue": "1", - "valueType": "YEAR", - "optionDescription": "1 Year" - }, - "coverIcon": "cover_21", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_PRE-HOSPITALISATION", - "totalAmount": 29, - "coverType": "MANDATORY", - "gst": 3.32, - "description": "Pre-Hospitalisation", - "totalDiscount": 10.51, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_PRE-HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_PRE-HOSPITALISATION_60_DAY", - "optionValue": "60", - "valueType": "DAY", - "optionDescription": "60 Days" - }, - "coverIcon": "cover_7", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_EMERGENCY_ROAD_TRANSPORTATION", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Covers Road Transportation charges in case of emergency Hospitalisation and Repatriation of Mortal remains. Based on the Sum Insured selected one can avail of this additional feature up to Base Sum Insured", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_EMERGENCY_ROAD_TRANSPORTATION", - "optionId": "NAVHLIP22133V012122_1_EMERGENCY_ROAD_TRANSPORTATION_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "cover_9", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_DAILY_CASH_FOR_SHARED_ROOM_OCCUPANCY", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Daily cash for shared room occupancy", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_DAILY_CASH_FOR_SHARED_ROOM_OCCUPANCY", - "optionId": "NAVHLIP22133V012122_1_DAILY_CASH_FOR_SHARED_ROOM_OCCUPANCY_1000_CURRENCY", - "optionValue": "1000", - "valueType": "CURRENCY", - "optionDescription": "₹ 1000 per day" - }, - "coverIcon": "cover_tax_benefits", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_WELLNESS_BENEFITS", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Wellness Benefits", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_WELLNESS_BENEFITS", - "optionId": "NAVHLIP22133V012122_1_WELLNESS_BENEFITS_COVERED_OTHER", - "optionValue": "COVERED", - "valueType": "OTHER", - "optionDescription": "Covered" - }, - "coverIcon": "cover_1", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_AUTOMATIC_RESTORATION_OF_SUM_INSURED", - "totalAmount": 206, - "coverType": "MANDATORY", - "gst": 23.64, - "description": "Instant refill of 100% of the cover amount which can be used for future hospitalisation.", - "totalDiscount": 74.68, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_AUTOMATIC_RESTORATION_OF_SUM_INSURED", - "optionId": "NAVHLIP22133V012122_1_AUTOMATIC_RESTORATION_OF_SUM_INSURED_UNLIMITED_NO_OF_TIMES_OTHER", - "optionValue": "UNLIMITED_NO_OF_TIMES", - "valueType": "OTHER", - "optionDescription": "Unlimited Number of Times" - }, - "coverIcon": "cover_5", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_HOSPITALISATION", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Hospitalisation", - "totalDiscount": 0, - "totalLoading": 0, - "coverIcon": "cover_1", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_DOMICILIARY_HOSPITALISATION", - "totalAmount": 14, - "coverType": "MANDATORY", - "gst": 1.6, - "description": "Domiciliary Hospitalisation", - "totalDiscount": 5.08, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_DOMICILIARY_HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_DOMICILIARY_HOSPITALISATION_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "cover_8", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_IN-PATIENT_HOSPITALISATION", - "totalAmount": 6136, - "coverType": "MANDATORY", - "gst": 704.1, - "description": "In-patient Hospitalisation", - "totalDiscount": 2224.3, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_IN-PATIENT_HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_IN-PATIENT_HOSPITALISATION_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "cover_1", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_CUMULATIVE_(NO_CLAIM)_BONUS", - "totalAmount": 589, - "coverType": "MANDATORY", - "gst": 67.58, - "description": "Cumulative (No Claim) Bonus", - "totalDiscount": 213.51, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_CUMULATIVE_(NO_CLAIM)_BONUS", - "optionId": "NAVHLIP22133V012122_1_CUMULATIVE_(NO_CLAIM)_BONUS_25_UPTO_100_SI_OTHER", - "optionValue": "25_UPTO_100_SI", - "valueType": "OTHER", - "optionDescription": "25% of SI per year up to 100%" - }, - "coverIcon": "cover_23", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_PRE-EXISTING_DISEASE_WAITING_PERIOD", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Pre-existing Disease Waiting Period", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_PRE-EXISTING_DISEASE_WAITING_PERIOD", - "optionId": "NAVHLIP22133V012122_1_PRE-EXISTING_DISEASE_WAITING_PERIOD_1_YEAR", - "optionValue": "1", - "valueType": "YEAR", - "optionDescription": "1 Year" - }, - "coverIcon": "cover_20", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_POST-HOSPITALISATION", - "totalAmount": 59, - "coverType": "MANDATORY", - "gst": 6.78, - "description": "Post-Hospitalisation", - "totalDiscount": 21.39, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_POST-HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_POST-HOSPITALISATION_90_DAY", - "optionValue": "90", - "valueType": "DAY", - "optionDescription": "90 Days" - }, - "coverIcon": "cover_7", - "opted": true - } - ], - "totalPremium": 5326.68, - "basePremium": 7081, - "totalDiscount": 2566.88, - "totalLoading": 0 - }, - { - "id": "c56f45d94d0a4a8a9e4143d118ef98ac", - "coverPremiumDetails": [ - { - "coverId": "NAVHLIP22133V012122_1_ADDITIONAL_SUM_INSURED_FOR_ACCIDENTAL_INJURY", - "totalAmount": 20, - "coverType": "MANDATORY", - "gst": 2.3, - "description": "Additional Sum Insured for Inpatient Care treatment of Accidental Injury", - "totalDiscount": 7.25, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_ADDITIONAL_SUM_INSURED_FOR_ACCIDENTAL_INJURY", - "optionId": "NAVHLIP22133V012122_1_ADDITIONAL_SUM_INSURED_FOR_ACCIDENTAL_INJURY_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "car_accident", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_ORGAN_DONOR_EXPENSES", - "totalAmount": 13, - "coverType": "MANDATORY", - "gst": 1.5, - "description": "Organ Donor Expenses", - "totalDiscount": 4.71, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_ORGAN_DONOR_EXPENSES", - "optionId": "NAVHLIP22133V012122_1_ORGAN_DONOR_EXPENSES_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "welfare", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_ONLINE_DOCTOR_CONSULTATIONS", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Unlimited online doctor consultations with our empanelled doctors.", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_ONLINE_DOCTOR_CONSULTATIONS", - "optionId": "NAVHLIP22133V012122_1_ONLINE_DOCTOR_CONSULTATIONS_UNLIMITED_NO_OF_TIMES_OTHER", - "optionValue": "UNLIMITED_NO_OF_TIMES", - "valueType": "OTHER", - "optionDescription": "Unlimited" - }, - "coverIcon": "online_doctor_consultation", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_SPECIFIED_DISEASE_PROCEDURE_WAITING_PERIOD", - "totalAmount": 12, - "coverType": "MANDATORY", - "gst": 1.38, - "description": "Specified disease/procedure waiting period", - "totalDiscount": 4.35, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_SPECIFIED_DISEASE_PROCEDURE_WAITING_PERIOD", - "optionId": "NAVHLIP22133V012122_1_SPECIFIED_DISEASE_PROCEDURE_WAITING_PERIOD_1_YEAR", - "optionValue": "1", - "valueType": "YEAR", - "optionDescription": "1 Year" - }, - "coverIcon": "cover_21", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_PRE-HOSPITALISATION", - "totalAmount": 24, - "coverType": "MANDATORY", - "gst": 2.76, - "description": "Pre-Hospitalisation", - "totalDiscount": 8.7, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_PRE-HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_PRE-HOSPITALISATION_60_DAY", - "optionValue": "60", - "valueType": "DAY", - "optionDescription": "60 Days" - }, - "coverIcon": "cover_7", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_EMERGENCY_ROAD_TRANSPORTATION", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Covers Road Transportation charges in case of emergency Hospitalisation and Repatriation of Mortal remains. Based on the Sum Insured selected one can avail of this additional feature up to Base Sum Insured", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_EMERGENCY_ROAD_TRANSPORTATION", - "optionId": "NAVHLIP22133V012122_1_EMERGENCY_ROAD_TRANSPORTATION_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "cover_9", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_DAILY_CASH_FOR_SHARED_ROOM_OCCUPANCY", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Daily cash for shared room occupancy", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_DAILY_CASH_FOR_SHARED_ROOM_OCCUPANCY", - "optionId": "NAVHLIP22133V012122_1_DAILY_CASH_FOR_SHARED_ROOM_OCCUPANCY_1000_CURRENCY", - "optionValue": "1000", - "valueType": "CURRENCY", - "optionDescription": "₹ 1000 per day" - }, - "coverIcon": "cover_tax_benefits", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_WELLNESS_BENEFITS", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Wellness Benefits", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_WELLNESS_BENEFITS", - "optionId": "NAVHLIP22133V012122_1_WELLNESS_BENEFITS_COVERED_OTHER", - "optionValue": "COVERED", - "valueType": "OTHER", - "optionDescription": "Covered" - }, - "coverIcon": "cover_1", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_AUTOMATIC_RESTORATION_OF_SUM_INSURED", - "totalAmount": 174, - "coverType": "MANDATORY", - "gst": 19.96, - "description": "Instant refill of 100% of the cover amount which can be used for future hospitalisation.", - "totalDiscount": 63.08, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_AUTOMATIC_RESTORATION_OF_SUM_INSURED", - "optionId": "NAVHLIP22133V012122_1_AUTOMATIC_RESTORATION_OF_SUM_INSURED_UNLIMITED_NO_OF_TIMES_OTHER", - "optionValue": "UNLIMITED_NO_OF_TIMES", - "valueType": "OTHER", - "optionDescription": "Unlimited Number of Times" - }, - "coverIcon": "cover_5", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_HOSPITALISATION", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Hospitalisation", - "totalDiscount": 0, - "totalLoading": 0, - "coverIcon": "cover_1", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_DOMICILIARY_HOSPITALISATION", - "totalAmount": 13, - "coverType": "MANDATORY", - "gst": 1.5, - "description": "Domiciliary Hospitalisation", - "totalDiscount": 4.71, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_DOMICILIARY_HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_DOMICILIARY_HOSPITALISATION_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "cover_8", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_IN-PATIENT_HOSPITALISATION", - "totalAmount": 5090, - "coverType": "MANDATORY", - "gst": 584.08, - "description": "In-patient Hospitalisation", - "totalDiscount": 1845.13, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_IN-PATIENT_HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_IN-PATIENT_HOSPITALISATION_COVERED_UPTO_SI_OTHER", - "optionValue": "COVERED_UPTO_SI", - "valueType": "OTHER", - "optionDescription": "Covered up to SI" - }, - "coverIcon": "cover_1", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_CUMULATIVE_(NO_CLAIM)_BONUS", - "totalAmount": 497, - "coverType": "MANDATORY", - "gst": 57.04, - "description": "Cumulative (No Claim) Bonus", - "totalDiscount": 180.16, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_CUMULATIVE_(NO_CLAIM)_BONUS", - "optionId": "NAVHLIP22133V012122_1_CUMULATIVE_(NO_CLAIM)_BONUS_25_UPTO_100_SI_OTHER", - "optionValue": "25_UPTO_100_SI", - "valueType": "OTHER", - "optionDescription": "25% of SI per year up to 100%" - }, - "coverIcon": "cover_23", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_PRE-EXISTING_DISEASE_WAITING_PERIOD", - "totalAmount": 0, - "coverType": "MANDATORY", - "gst": 0, - "description": "Pre-existing Disease Waiting Period", - "totalDiscount": 0, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_PRE-EXISTING_DISEASE_WAITING_PERIOD", - "optionId": "NAVHLIP22133V012122_1_PRE-EXISTING_DISEASE_WAITING_PERIOD_1_YEAR", - "optionValue": "1", - "valueType": "YEAR", - "optionDescription": "1 Year" - }, - "coverIcon": "cover_20", - "opted": true - }, - { - "coverId": "NAVHLIP22133V012122_1_POST-HOSPITALISATION", - "totalAmount": 49, - "coverType": "MANDATORY", - "gst": 5.62, - "description": "Post-Hospitalisation", - "totalDiscount": 17.76, - "totalLoading": 0, - "selectedCoverOption": { - "coverId": "NAVHLIP22133V012122_1_POST-HOSPITALISATION", - "optionId": "NAVHLIP22133V012122_1_POST-HOSPITALISATION_90_DAY", - "optionValue": "90", - "valueType": "DAY", - "optionDescription": "90 Days" - }, - "coverIcon": "cover_7", - "opted": true - } - ], - "totalPremium": 4432.31, - "basePremium": 5892, - "totalDiscount": 2135.85, - "totalLoading": 0 - } - ], - "loadingDiscountModels": [ - { - "type": "DISCOUNT", - "id": "NAVHLIP22133V012122_1_DIRECT_CHANNEL_DISCOUNT", - "percentageValue": 15, - "amountValue": 2369.48, - "name": "Direct Channel Discount" - } - ], - "gst": 2416.84, - "basePremium": 13428, - "premiumAmountWithoutGst": 13428, - "totalDiscountPercentage": 0, - "totalDiscount": 0, - "addOns": [ - { - "coverId": "NAVHLIP22133V012122_1_MATERNITY_AND_NEWBORN_COVER", - "totalAmount": 63.19, - "coverType": "OPTIONAL", - "gst": 9.64, - "title": "Maternity and Newborn Cover", - "description": "Maternity and Newborn Cover", - "totalDiscount": 9.45, - "totalLoading": 0, - "coverIcon": "cover_24", - "opted": true - } - ], - "applicationReferenceId": "ece7be1774da44e7bb7c495d161754c0", - "sumInsured": 2500000, - "sumInsuredDescriptor": "EXCELLENT", - "term": { - "value": 1, - "unit": "YEAR" - }, - "assetDtos": [ - { - "id": "c56f45d94d0a4a8a9e4143d118ef98ac", - "age": 10, - "gender": "MALE", - "proposerRelationShip": "SON", - "existingDisease": "false" - }, - { - "id": "7c93be59f97f42c9b55caa889b64d4d0", - "age": 25, - "gender": "MALE", - "proposerRelationShip": "SELF", - "existingDisease": "false" - }, - { - "id": "5000ec0819b545a9af7f7af9b53648e7", - "age": 19, - "gender": "FEMALE", - "proposerRelationShip": "SELF", - "existingDisease": "false" - } - ], - "status": "PENDING_PAYMENT", - "selectedPaymentMode": "SUBSCRIPTION", - "isPremiumDetailsUpdated": false, - "totalPrice": 15843.87, - "actualBasePremium": 20810, - "quoteProcessType": "STP", - "quoteCreatedAt": 1635251652096, - "updateAllowed": true, - "paymentOptionPremiumDetails": [ - { - "productPremiumDetailPerBilling": { - "subtotalPremium": { - "value": 1118.92, - "currency": "INR" - }, - "totalDiscount": { - "value": 0, - "currency": "INR" - }, - "totalLoading": { - "value": 0, - "currency": "INR" - }, - "gst": { - "value": 201.4, - "currency": "INR" - }, - "totalPremium": { - "value": 1320.32, - "currency": "INR" - } - }, - "paymentOption": { - "paymentMode": "SUBSCRIPTION", - "billingTenure": { - "value": 12, - "unit": "MONTH" - }, - "billingInterval": { - "value": 1, - "unit": "MONTH" - } - }, - "opted": true - }, - { - "productPremiumDetailPerBilling": { - "subtotalPremium": { - "value": 13427.02, - "currency": "INR" - }, - "totalDiscount": { - "value": 0, - "currency": "INR" - }, - "totalLoading": { - "value": 0, - "currency": "INR" - }, - "gst": { - "value": 2416.84, - "currency": "INR" - }, - "totalPremium": { - "value": 15844, - "currency": "INR" - } - }, - "paymentOption": { - "paymentMode": "FULL" - }, - "opted": false - } - ] - }, - "hospitalResponse": { - "data": [ - { - "name": "SIDDHI VINAYAK CRITICAL CARE AND HOSPITAL PVT LTD", - "address": "NH 31, NORTH OF KALI ASTHAN", - "city": "BEGUSARAI", - "pincode": "851101", - "state": "BIHAR", - "latitude": 25.413058, - "longitude": 86.162172, - "popular": false - }, - { - "name": "ADWITA HOSPITAL", - "address": "DAK BANGLOW ROAD, NEAR SK MAJILA COLLEG", - "city": "BEGUSARAI", - "pincode": "851101", - "state": "BIHAR", - "latitude": 25.41116, - "longitude": 86.144649, - "popular": false - }, - { - "name": "BEENA NURSING HOM", - "address": "POKHARIA", - "city": "BEGUSARAI", - "pincode": "851101", - "state": "BIHAR", - "latitude": 25.418871, - "longitude": 86.136645, - "popular": false - }, - { - "name": "GLOCAL HEALTHCARE SYSTEMS PVT LTD. GHSPL. BEGUSARAI HEALTHCARE LLP", - "address": "SUSHIL NAGAR, NEAR SINGHAUL POKHAR THANA, OPP RELIANCE PETROL PUMP", - "city": "BEGUSARAI", - "pincode": "851134", - "state": "BIHAR", - "latitude": 25.4344568, - "longitude": 86.0966396, - "popular": false - } - ], - "pages": { - "current": 0, - "total": 0, - "count": 100 - } - }, - "statusTrackerResponse": { - "header": [], - "footer": [], - "content": [ - { - "widgetName": "STATUS_TRACK_ITEM", - "widgetData": { - "title": { - "text": "Go to Hospital TPA Desk" - }, - "descriptionList": [ - { - "title": { - "text": "TPA desk is the third party who will collect your\nclaim documents.\n\nSee what documents are required and what are\nthe steps involved in cashless claims" - } - } - ], - "icon": { - "iconCode": "CIRCULAR_FILLED_TICK_ICON" - }, - "button": { - "title": { - "text": "See Details" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "claim_info", - "parameters": {} - } - } - }, - "status": "COMPLETED" - } - }, - { - "widgetName": "STATUS_TRACK_ITEM", - "widgetData": { - "title": { - "text": "Documents submitted" - }, - "descriptionList": [ - { - "title": { - "text": "Approval requested for Pavan Kumar at Apollo Hospitals for ₹34,000" - }, - "subTitle": { - "text": "10 Jun’21, 11:20am" - } - } - ], - "icon": { - "iconCode": "CIRCULAR_FILLED_TICK_ICON" - }, - "status": "COMPLETED" - } - }, - { - "widgetName": "STATUS_TRACK_ITEM", - "widgetData": { - "title": { - "text": "Approval given for initial amount" - }, - "descriptionList": [ - { - "title": { - "text": "Pre auth for ₹34,000 is approved " - }, - "subTitle": { - "text": "10 June 2021, 11:33am" - } - } - ], - "icon": { - "iconCode": "CIRCULAR_FILLED_TICK_ICON" - }, - "statusIcon": { - "iconCode": "CIRCULAR_FILLED_WARNING_ICON" - }, - "status": "COMPLETED" - } - }, - { - "widgetName": "STATUS_TRACK_ITEM", - "widgetData": { - "title": { - "text": "Claim approved successfully" - }, - "icon": { - "url": "https://i.ibb.co/mRMhSCh/Ellipse-82.png" - }, - "status": "PENDING" - } - } - ] - }, - "documentSummaryResponse": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Upload Documents" - }, - "titleAlign": "CENTER", - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "rightIcon": { - "iconCode": "CALL_ICON", - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "parameters": { - "phone": { - "type": "String", - "data": "1234567890" - } - } - } - } - } - } - } - ], - "content": [ - { - "widgetName": "CIRCULAR_PROGRESS_WIDGET", - "widgetData": { - "progressInfo": { - "title": { - "text": "50%" - }, - "value": 50 - } - } - }, - { - "widgetName": "SUMMARY_LIST_WIDGET", - "widgetData": { - "summaryItems": [ - { - "widgetName": "SUMMARY_ITEM_WIDGET", - "widgetData": { - "title": { - "text": "Bills and Discharge Papers" - }, - "subTitle": { - "text": "Discharge Summary, Bills, Receipts" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "document_upload_by_category", - "parameters": { - "category": { - "type": "String", - "data": "BILLS_AND_DISCHARGE" - }, - "intimationReferenceId": { - "type": "String", - "data": "dfbc19ac-5811-47c0-bd14-c9d25d129542" - } - } - } - }, - "validated": false - } - }, - { - "widgetName": "SUMMARY_ITEM_WIDGET", - "widgetData": { - "title": { - "text": "Bank Details" - }, - "subTitle": { - "text": "Auto Detection or cancelled cheque" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "bank_verification/bank_details_form", - "parameters": { - "category": { - "type": "String", - "data": "BANK" - }, - "intimationReferenceId": { - "type": "String", - "data": "593c04eb-e297-4325-876f-239dd69060fb" - } - } - } - }, - "validated": true - } - }, - { - "widgetName": "SUMMARY_ITEM_WIDGET", - "widgetData": { - "title": { - "text": "Medical Reports & Scans" - }, - "subTitle": { - "text": "Prescriptions, Tests, Scan reports" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "document_upload_by_category", - "parameters": { - "category": { - "type": "String", - "data": "MEDICAL_REPORTS" - }, - "intimationReferenceId": { - "type": "String", - "data": "593c04eb-e297-4325-876f-239dd69060fb" - } - } - } - }, - "validated": true - } - }, - { - "widgetName": "SUMMARY_ITEM_WIDGET", - "widgetData": { - "title": { - "text": "KYC" - }, - "subTitle": { - "text": "Aadhaar Card" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "document_upload_by_category", - "parameters": { - "category": { - "type": "String", - "data": "KYC" - }, - "intimationReferenceId": { - "type": "String", - "data": "dfbc19ac-5811-47c0-bd14-c9d25d129542" - } - } - } - }, - "validated": true - } - } - ] - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetData": { - "button": { - "title": { - "text": "Continue" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "document_review", - "parameters": { - "intimationReferenceId": { - "type": "String", - "data": "123456" - } - } - } - } - } - } - } - ] - }, - "documentReviewResponse": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Documents Uploaded" - }, - "titleAlign": "CENTER", - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "rightIcon": { - "iconCode": "CALL_ICON", - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "1234567890" - } - } - }, - "showDivider": false - } - }, - { - "widgetName": "HEADER_TAB_LAYOUT", - "widgetData": { - "tabs": [ - { - "title": { - "text": "Basic Details" - }, - "position": 0 - }, - { - "title": { - "text": "KYC" - }, - "position": 1 - }, - { - "title": { - "text": "Bills and Discharge Papers" - }, - "position": 2 - }, - { - "title": { - "text": "Medical Reports & Scans" - }, - "position": 3 - } - ] - } - } - ], - "content": [ - { - "widgetName": "CARD_WITH_ITEMS_WIDGET", - "widgetData": { - "title": { - "text": "Basic Details" - }, - "items": [ - { - "icon": { - "url": "" - }, - "title": { - "text": "Kota Laxmi" - } - }, - { - "icon": { - "url": "https://cdn.pixabay.com/photo/2016/05/05/02/37/sunset-1373171_1280.jpg" - }, - "title": { - "text": "5012199120012" - }, - "subTitle": { - "text": "HDFC Bank, Mahadevapura" - } - } - ] - } - }, - { - "widgetName": "GRID_IMAGE_CARD_WIDGET", - "widgetData": { - "leftText": { - "title": { - "text": "Bills" - }, - "subTitle": { - "text": "6 documents uploaded" - } - }, - "rightText": { - "text": "Edit", - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "upload_docs", - "parameters": { - "url": { - "type": "String", - "data": "document_url" - } - } - } - } - }, - "subCategoryName": "AADHAR", - "textIcon": { - "title": { - "text": "See More" - }, - "icon": { - "url": "" - }, - "action": { - "type": "DOCUMENT_NEXT_PAGE_API", - "data": { - "paginationInfo": { - "current": 1, - "total": 2, - "count": 6 - }, - "documentType": "AADHAR" - } - } - }, - "spanCount": 3 - } - }, - { - "widgetName": "GRID_IMAGE_CARD_WIDGET", - "widgetData": { - "leftText": { - "title": { - "text": "Aadhar reports" - }, - "subTitle": { - "text": "6 documents uploaded" - } - }, - "rightText": { - "text": "Edit", - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "upload_docs", - "parameters": { - "url": { - "type": "String", - "data": "document_url" - } - } - } - } - }, - "subCategoryName": "PAN", - "textIcon": { - "title": { - "text": "See More" - }, - "icon": { - "url": "" - }, - "action": { - "type": "DOCUMENT_NEXT_PAGE_API", - "data": { - "paginationInfo": { - "current": 1, - "total": 2, - "count": 6 - }, - "documentType": "PAN" - } - } - }, - "spanCount": 3 - } - }, - { - "widgetName": "GRID_IMAGE_CARD_WIDGET", - "widgetData": { - "leftText": { - "title": { - "text": "Test reports" - }, - "subTitle": { - "text": "6 documents uploaded" - } - }, - "rightText": { - "text": "Edit", - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "upload_docs", - "parameters": { - "url": { - "type": "String", - "data": "document_url" - } - } - } - } - }, - "subCategoryName": "BILLS", - "textIcon": { - "title": { - "text": "See More" - }, - "icon": { - "url": "" - }, - "action": { - "type": "DOCUMENT_NEXT_PAGE_API", - "data": { - "paginationInfo": { - "current": 1, - "total": 2, - "count": 6 - }, - "documentType": "BILLS" - } - } - }, - "spanCount": 3 - } - }, - { - "widgetName": "GRID_IMAGE_CARD_WIDGET", - "widgetData": { - "leftText": { - "title": { - "text": "Bills" - }, - "subTitle": { - "text": "8 documents uploaded" - } - }, - "rightText": { - "text": "Edit", - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "upload_docs", - "parameters": { - "url": { - "type": "String", - "data": "document_url" - } - } - } - } - }, - "subCategoryName": "REPORTS", - "textIcon": { - "title": { - "text": "See More" - }, - "icon": { - "url": "" - }, - "action": { - "type": "DOCUMENT_NEXT_PAGE_API", - "data": { - "paginationInfo": { - "current": 1, - "total": 2, - "count": 6 - }, - "documentType": "REPORTS" - } - } - }, - "spanCount": 3 - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetData": { - "checkBox": { - "isChecked": false - }, - "title": { - "text": "By proceeding further, I agree to Navi T&C", - "actionText": "T&C", - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "bottomsheet_terms_and_conditions", - "parameters": { - "tncData": { - "type": "TermsAndConditionsData", - "data": { - "header": { - "title": { - "text": "Terms & Conditions" - } - }, - "descriptionList": [ - { - "title": { - "text": "The information furnished in this Claim Form is true & correct to the best of my knowledge & belief." - } - }, - { - "title": { - "text": "In case of any false or untrue statement, suppression or concealment of any material fact, my right to claim reimbursement shall be forfeited." - } - } - ], - "button": { - "title": { - "text": "Okay, got it" - }, - "action": { - "type": "GO_BACK" - } - } - } - } - } - } - } - }, - "button": { - "title": { - "text": "Continue" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "", - "parameters": { - "key": { - "type": "" - } - } - } - } - }, - "validation": [ - { - "type": "DISABLE_ACTION" - } - ] - } - } - ] - }, - "documentByCategoryResponse": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Upload Documents" - }, - "titleAlign": "CENTER", - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "rightIcon": { - "iconCode": "CALL_ICON", - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "1234567890" - } - } - } - } - } - ], - "content": [ - { - "widgetName": "UPLOAD_CARD_WIDGET", - "widgetData": { - "header": { - "leftText": { - "title": { - "text": "Pavan Kumar’s PAN Card" - }, - "subTitle": { - "text": "Optional" - } - }, - "rightText": { - "text": "See Sample", - "color": "#1D44D0", - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "document_preview", - "parameters": { - "url": { - "type": "String", - "data": "document_url" - } - } - } - } - }, - "toolTip": { - "icon": { - "iconCode": "UPLOAD_INFO_ICON" - }, - "tips": [ - { - "title": { - "text": "Upload front side of PAN Card" - }, - "icon": { - "iconCode": "BULB" - } - }, - { - "title": { - "text": "Upload front side of PAN Card" - }, - "icon": { - "iconCode": "BULB" - } - } - ] - } - }, - "minUpload": 3, - "maxUpload": 5, - "checkBox": { - "title": { - "text": "My claim amount is more than 1 lakh" - }, - "isChecked": true - }, - "description": { - "text": "0 Documents Uploaded" - }, - "spanCount": 3, - "validations": null, - "categoryName": "KYC", - "subCategoryName": "PAN", - "intimationReferenceId": "referenceId" - } - }, - { - "widgetName": "UPLOAD_CARD_WIDGET", - "widgetData": { - "header": { - "leftText": { - "title": { - "text": "Aadhar Card" - }, - "subTitle": { - "text": "Optional" - } - }, - "rightText": { - "text": "See Sample", - "color": "#1D44D0", - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "document_preview", - "parameters": { - "url": { - "type": "String", - "data": "document_url" - } - } - } - } - }, - "toolTip": { - "icon": { - "iconCode": "UPLOAD_INFO_ICON" - }, - "tips": [ - { - "title": { - "text": "Upload front side of PAN Card" - }, - "icon": { - "iconCode": "BULB" - } - }, - { - "title": { - "text": "Upload front side of PAN Card" - }, - "icon": { - "iconCode": "BULB" - } - } - ] - } - }, - "minUploads": 3, - "description": { - "text": "10 Documents Uploaded" - }, - "spanCount": 3, - "validations": null, - "categoryName": "KYC", - "subCategoryName": "AADHAR", - "intimationReferenceId": "referenceId" - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetData": { - "button": { - "title": { - "text": "Continue" - }, - "action": { - "type": "GO_BACK" - } - } - } - } - ] - }, - "documentPreviewResponse": { - "documentUrl": "https://cdn.pixabay.com/photo/2016/05/05/02/37/sunset-1373171_1280.jpg" - }, - "documentPreviewPdfResponse": { - "documentUrl": "https://www.pvpsiddhartha.ac.in/dep_it/lecture%20notes/DS/Unit%201.pdf" - }, - "documentPreviewPdfResponseTest": { - "documentUrl": "https://www.srividyaengg.ac.in/coursematerial/ECE/106325.pdf" - }, - "footerWithTwoIconResponse": { - "widgetName": "FOOTER_WITH_TWO_ICONS", - "widgetData": { - "leftIcon": { - "iconCode": "NAVI_ICON" - }, - "rightIcon": { - "iconCode": "CIRCULAR_FILLED_CALL_ICON", - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "1234567890" - } - } - }, - "title": { - "text": "Call Navi Claims Helpdesk" - }, - "subTitle": { - "text": "You can call us anytime for help" - } - } - }, - "claimsBottomSheetData": { - "status": { - "text": "Pay your monthly premium to raise new claims" - }, - "widgets": [ - { - "widgetId": "newClaim", - "widgetName": "TEXT_WITH_ELEVATED_ICON_WIDGET", - "widgetData": { - "enabled": true, - "title": { - "text": "New Claim" - }, - "subTitle": { - "text": "Cashless & reimbursement claims" - }, - "leftIcon": { - "iconCode": "CIRCULAR_FILLED_ADD_ICON", - "color": "#1D44D0" - }, - "rightIcon": { - "iconCode": "RIGHT_ARROW_ICON", - "color": "#000000" - }, - "cta": { - "url": "gi/new_claim", - "parameters": [ - { - "key": "type", - "value": "claim_hi" - }, - { - "key": "policyId", - "value": "PA0001E4" - }, - { - "key": "screenIdentifier", - "value": "navi_chat" - } - ] - } - } - }, - { - "widgetId": "viewClaims", - "widgetName": "TEXT_WITH_ELEVATED_ICON_WIDGET", - "widgetData": { - "enabled": true, - "title": { - "text": "View Claims" - }, - "subTitle": { - "text": "Ongoing & previous claims" - }, - "leftIcon": { - "iconCode": "DOC_VIEW_ICON", - "color": "#1D44D0" - }, - "rightIcon": { - "iconCode": "RIGHT_ARROW_ICON", - "color": "#000000" - }, - "cta": { - "url": "gi/view_claim", - "parameters": [ - { - "key": "type", - "value": "claim_hi" - }, - { - "key": "policyId", - "value": "PA0001E4" - }, - { - "key": "screenIdentifier", - "value": "claims_list" - } - ] - } - } - }, - { - "widgetId": "howToMakeClaim", - "widgetName": "TEXT_WITH_ELEVATED_ICON_WIDGET", - "widgetData": { - "enabled": true, - "title": { - "text": "How to make claim" - }, - "subTitle": { - "text": "Understand claim process" - }, - "leftIcon": { - "iconCode": "DOC_ICON", - "color": "#1D44D0" - }, - "rightIcon": { - "iconCode": "RIGHT_ARROW_ICON", - "color": "#000000" - }, - "cta": { - "url": "gi/claim_info", - "parameters": [ - { - "key": "type", - "value": "claim_hi_info" - }, - { - "key": "screenIdentifier", - "value": "navi_viewpager" - } - ] - } - } - } - ] - }, - "cashlessClaimResponse": { - "header": [], - "footer": [], - "content": [ - { - "widgetName": "LIST_CARD_WIDGET", - "widgetData": { - "header": { - "title": { - "text": "Documents" - } - }, - "detailsItems": [ - { - "title": { - "text": "Pan Card of Pavan Kumar" - }, - "leftIcon": { - "iconCode": "GRADIENT_TICK", - "url": "" - } - }, - { - "title": { - "text": "Aadhaar Card of Patient" - }, - "leftIcon": { - "iconCode": "GRADIENT_TICK", - "url": "" - } - }, - { - "title": { - "text": "Previous consultation reports" - }, - "subTitle": { - "text": "1. Doctor prescription or recommendation\n2. Test reports and scans (if any)" - }, - "leftIcon": { - "iconCode": "GRADIENT_TICK", - "url": "" - } - } - ] - } - }, - { - "widgetName": "EXPANDABLE_LIST_CARD_WIDGET", - "widgetData": { - "header": { - "title": { - "text": "Documents" - } - }, - "items": [ - { - "leftIcon": { - "url": "https://i.ibb.co/SdTtMrM/Group-1770.png" - }, - "title": { - "text": "Identity Proof" - }, - "rightIcon": { - "iconCode": "EXPANDED_ADD", - "url": "" - }, - "rightIconExpanded": { - "iconCode": "EXPANDED_MINUS", - "url": "" - }, - "expandedWidget": { - "widgetName": "TEXT_ITEM_LIST", - "widgetData": { - "items": [ - { - "title": { - "text": "PAN Card of Pavan Kumar" - }, - "icon": { - "url": "https://i.ibb.co/dczwKdR/Group-1778.png" - } - }, - { - "title": { - "text": "Aadhaar card of patient" - }, - "icon": { - "url": "https://i.ibb.co/dczwKdR/Group-1778.png" - } - } - ] - } - } - }, - { - "leftIcon": { - "url": "https://i.ibb.co/SdTtMrM/Group-1770.png" - }, - "title": { - "text": "Identity Proof" - }, - "rightIcon": { - "iconCode": "EXPANDED_ADD", - "url": "" - }, - "rightIconExpanded": { - "iconCode": "EXPANDED_MINUS", - "url": "" - }, - "expandedWidget": { - "widgetName": "TEXT_ITEM_LIST", - "widgetData": { - "items": [ - { - "title": { - "text": "PAN Card of Pavan Kumar" - }, - "icon": { - "url": "https://i.ibb.co/dczwKdR/Group-1778.png" - } - }, - { - "title": { - "text": "Aadhaar card of patient" - }, - "icon": { - "url": "https://i.ibb.co/dczwKdR/Group-1778.png" - } - } - ] - } - } - } - ] - } - }, - { - "widgetName": "STEPS_LIST_VIEW", - "widgetData": { - "header": { - "title": { - "text": "Steps to avail cashless treatment" - } - }, - "items": [ - { - "title": { - "text": "Visit your nearest Navi network hospital. Find Hospital", - "actionText": "Find Hospital", - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "hospital_search" - } - } - }, - "leftIcon": { - "url": "https://i.ibb.co/hySk37N/Group-1681.png" - } - }, - { - "title": { - "text": "Find insurance TPA desk and inform them about admission" - }, - "leftIcon": { - "url": "https://i.ibb.co/hySk37N/Group-1681.png" - } - }, - { - "title": { - "text": "Find insurance TPA desk and inform them about admission , Find insurance TPA desk and inform them about admission ,Find insurance TPA desk and inform them about admission" - }, - "leftIcon": { - "url": "https://i.ibb.co/hySk37N/Group-1681.png" - } - }, - { - "title": { - "text": "Find insurance TPA desk and inform them about admission" - }, - "leftIcon": { - "url": "https://i.ibb.co/hySk37N/Group-1681.png" - } - } - ] - } - } - ] - }, - "claimTrackerViewPagerResponse": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Claim Tracker", - "alignment": "CENTER" - }, - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "showDivider": false - } - } - ], - "content": [ - { - "widgetName": "VIEW_PAGER_TAB_LAYOUT", - "widgetData": { - "tabs": [ - { - "title": { - "text": "Status Track" - }, - "screen": { - "url": "navi_status_tracker", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi" - }, - "claimId": { - "type": "String", - "data": "R027169464" - } - } - }, - "selected": true - }, - { - "title": { - "text": "Claim Details" - }, - "screen": { - "url": "claim_details", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi" - }, - "claimId": { - "type": "String", - "data": "R027169464" - } - } - }, - "selected": false - } - ] - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TWO_ICON", - "widgetData": { - "leftIcon": { - "iconCode": "NAVI_ICON" - }, - "rightIcon": { - "iconCode": "CIRCULAR_FILLED_CALL_ICON", - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "1234567890" - } - } - }, - "title": { - "text": "Call Navi Claims Helpdesk" - }, - "subTitle": { - "text": "You can call us anytime for help" - } - } - } - ] - }, - "claimInfoViewPagerResponse": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "How to make claim", - "alignment": "CENTER" - }, - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "showDivider": false - } - } - ], - "content": [ - { - "widgetName": "VIEW_PAGER_TAB_LAYOUT", - "widgetData": { - "tabs": [ - { - "title": { - "text": "Status Track" - }, - "screen": { - "url": "navi_status_tracker", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi" - }, - "claimId": { - "type": "String", - "data": "R027169464" - } - } - }, - "selected": true - }, - { - "title": { - "text": "Claim Details" - }, - "screen": { - "url": "claim_details", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi" - }, - "claimId": { - "type": "String", - "data": "R027169464" - } - } - }, - "selected": false - } - ] - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TWO_ICON", - "widgetData": { - "leftIcon": { - "iconCode": "NAVI_ICON" - }, - "rightIcon": { - "iconCode": "CIRCULAR_FILLED_CALL_ICON", - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "1234567890" - } - } - }, - "title": { - "text": "Call Navi Claims Helpdesk" - }, - "subTitle": { - "text": "You can call us anytime for help" - } - } - } - ] - }, - "documentsAndStepsResponse": { - "content": [ - { - "widgetName": "LIST_CARD_WIDGET", - "widgetData": { - "header": { - "title": { - "text": "Documents" - } - }, - "detailsItems": [ - { - "title": { - "text": "Pan Card of Pavan Kumar" - }, - "leftIcon": { - "iconCode": "GRADIENT_TICK", - "url": "" - } - }, - { - "title": { - "text": "Aadhaar Card of Patient" - }, - "leftIcon": { - "iconCode": "GRADIENT_TICK", - "url": "" - } - }, - { - "title": { - "text": "Previous consultation reports" - }, - "subTitle": { - "text": "1. Doctor prescription or recommendation\n2. Test reports and scans (if any)" - }, - "leftIcon": { - "iconCode": "GRADIENT_TICK", - "url": "" - } - } - ] - } - }, - { - "widgetName": "EXPANDABLE_LIST_CARD_WIDGET", - "widgetData": { - "header": { - "title": { - "text": "Documents" - } - }, - "items": [ - { - "leftIcon": { - "url": "https://i.ibb.co/SdTtMrM/Group-1770.png" - }, - "title": { - "text": "Identity Proof" - }, - "rightIcon": { - "iconCode": "EXPANDED_ADD", - "url": "" - }, - "rightIconExpanded": { - "iconCode": "EXPANDED_MINUS", - "url": "" - }, - "expandedWidget": { - "widgetName": "TEXT_ITEM_LIST", - "widgetData": { - "items": [ - { - "title": { - "text": "PAN Card of Pavan Kumar" - }, - "icon": { - "url": "https://i.ibb.co/dczwKdR/Group-1778.png" - } - }, - { - "title": { - "text": "Aadhaar card of patient" - }, - "icon": { - "url": "https://i.ibb.co/dczwKdR/Group-1778.png" - } - } - ] - } - } - }, - { - "leftIcon": { - "url": "https://i.ibb.co/SdTtMrM/Group-1770.png" - }, - "title": { - "text": "Identity Proof" - }, - "rightIcon": { - "iconCode": "EXPANDED_ADD", - "url": "" - }, - "rightIconExpanded": { - "iconCode": "EXPANDED_MINUS", - "url": "" - }, - "expandedWidget": { - "widgetName": "TEXT_ITEM_LIST", - "widgetData": { - "items": [ - { - "title": { - "text": "PAN Card of Pavan Kumar" - }, - "icon": { - "url": "https://i.ibb.co/dczwKdR/Group-1778.png" - } - }, - { - "title": { - "text": "Aadhaar card of patient" - }, - "icon": { - "url": "https://i.ibb.co/dczwKdR/Group-1778.png" - } - } - ] - } - } - } - ] - } - }, - { - "widgetName": "STEPS_LIST_VIEW", - "widgetData": { - "header": { - "title": { - "text": "Steps to avail cashless treatment" - } - }, - "items": [ - { - "title": { - "text": "Visit your nearest Navi network hospital. Find Hospital", - "actionText": "Find Hospital", - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "navi_search", - "parameters": { - "key1": { - "type": "String", - "data": "Some String" - }, - "key2": { - "type": "Int", - "data": 5 - } - } - } - } - }, - "icon": { - "url": "https://i.ibb.co/hySk37N/Group-1681.png" - } - }, - { - "title": { - "text": "Find insurance TPA desk and inform them about admission" - }, - "icon": { - "url": "https://i.ibb.co/hySk37N/Group-1681.png" - } - }, - { - "title": { - "text": "Find insurance TPA desk and inform them about admission , Find insurance TPA desk and inform them about admission ,Find insurance TPA desk and inform them about admission" - }, - "icon": { - "url": "https://i.ibb.co/hySk37N/Group-1681.png" - } - }, - { - "title": { - "text": "Find insurance TPA desk and inform them about admission" - }, - "icon": { - "url": "https://i.ibb.co/hySk37N/Group-1681.png" - } - } - ] - } - } - ] - }, - "claimListResponse": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Claims History", - "alignment": "CENTER" - }, - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "rightText": { - "text": "Help", - "leftIcon": { - "iconCode": "CALL_ICON_BLUE" - }, - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "1234567890" - } - } - } - } - } - ], - "content": [ - { - "widgetName": "TEXT_HEADER", - "widgetData": { - "title": { - "text": "1 Active Claim" - } - } - }, - { - "widgetName": "CARD_WITH_ITEMS_AND_ACTION", - "widgetData": { - "leftText": { - "title": { - "text": "₹25,00,000" - }, - "subTitle1": { - "text": "Policy No : 656223489000" - }, - "subTitle2": { - "text": "Claim Accepted", - "colorPalette": { - "text": "#14BC51" - } - } - }, - "rightText": { - "title": { - "text": "10 Jul’21" - } - }, - "footer": { - "title": { - "text": "More details" - }, - "icon": { - "iconCode": "RIGHT_ARROW_ICON" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "navi_viewpager", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi_tracker" - }, - "claimId": { - "type": "String", - "data": "claim-id" - } - } - } - } - } - } - }, - { - "widgetName": "TEXT_HEADER", - "widgetData": { - "title": { - "text": "Previous Claims" - } - } - }, - { - "widgetName": "CARD_WITH_ITEMS_AND_ACTION", - "widgetData": { - "leftText": { - "title": { - "text": "₹5,50,000" - }, - "subTitle1": { - "text": "Policy No : 6091222278881" - }, - "subTitle2": { - "text": "Money Settled" - } - }, - "rightText": { - "title": { - "text": "10 Jul’21" - } - }, - "footer": { - "title": { - "text": "More details" - }, - "icon": { - "iconCode": "RIGHT_ARROW_ICON" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "navi_viewpager", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi_tracker" - } - } - } - } - } - } - }, - { - "widgetName": "CARD_WITH_ITEMS_AND_ACTION", - "widgetData": { - "leftText": { - "title": { - "text": "₹2,50,000" - }, - "subTitle1": { - "text": "Policy No : 6091222278881" - }, - "subTitle2": { - "text": "Money Settled" - } - }, - "rightText": { - "title": { - "text": "10 Jul’21" - } - }, - "footer": { - "title": { - "text": "More details" - }, - "icon": { - "iconCode": "RIGHT_ARROW_ICON" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "navi_viewpager", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi_tracker" - } - } - } - } - } - } - }, - { - "widgetName": "CARD_WITH_ITEMS_AND_ACTION", - "widgetData": { - "leftText": { - "title": { - "text": "₹5,50,000" - }, - "subTitle1": { - "text": "Policy No : 6091222278881" - }, - "subTitle2": { - "text": "Money Settled" - } - }, - "rightText": { - "title": { - "text": "10 Jul’21" - } - }, - "footer": { - "title": { - "text": "More details" - }, - "icon": { - "iconCode": "RIGHT_ARROW_ICON" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "navi_viewpager", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi_tracker" - } - } - } - } - } - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetData": { - "title": { - "text": "Looking to start new claim?" - }, - "button": { - "title": { - "text": "Continue" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "new_claim/navi_chat", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi" - }, - "policyId": { - "type": "String", - "data": "PA0001E4" - } - } - } - } - } - } - } - ] - }, - "newClaimListResponse": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Claims History", - "alignment": "CENTER" - }, - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "rightText": { - "text": "Help", - "leftIcon": { - "iconCode": "CALL_ICON_BLUE" - }, - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "1234567890" - } - } - } - } - } - ], - "content": [ - { - "widgetName": "TEXT_HEADER", - "widgetData": { - "title": { - "text": "1 Active Claim" - } - } - }, - { - "widgetName": "CARD_WITH_ITEMS_AND_FOOTER", - "widgetData": { - "items": [ - { - "leftText": { - "title": { - "text": "₹25,00,000", - "font": "BOLD", - "colorPalette": { - "text": "#1A1A1A" - }, - "size": "16" - } - }, - "rightText": { - "title": { - "text": "10 Jul'20", - "font": "SEMI_BOLD", - "colorPalette": { - "text": "#B31A1A1A" - }, - "size": "14" - } - } - }, - { - "leftText": { - "title": { - "text": "Policy No : 656223489000", - "size": "14", - "font": "SEMI_BOLD", - "colorPalette": { - "text": "#B31A1A1A" - } - } - } - }, - { - "leftText": { - "title": { - "text": "Documents missing", - "size": "14", - "font": "BOLD", - "colorPalette": { - "text": "#F7B500" - } - } - } - } - ], - "footer": { - "title": { - "text": "More details" - }, - "icon": { - "iconCode": "RIGHT_ARROW_ICON" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "navi_viewpager", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi_tracker" - }, - "claimId": { - "type": "String", - "data": "claim-id" - } - } - } - } - } - } - }, - { - "widgetName": "TEXT_HEADER", - "widgetData": { - "title": { - "text": "Previous Claims" - } - } - }, - { - "widgetName": "CARD_WITH_ITEMS_AND_FOOTER", - "widgetData": { - "items": [ - { - "leftText": { - "title": { - "text": "₹5,50,000", - "font": "BOLD", - "colorPalette": { - "text": "#1A1A1A" - }, - "size": "16" - } - }, - "rightText": { - "title": { - "text": "10 Jul'20", - "font": "SEMI_BOLD", - "colorPalette": { - "text": "#B31A1A1A" - }, - "size": "14" - } - } - }, - { - "leftText": { - "title": { - "text": "Policy No : 6091222278881", - "size": "14", - "font": "SEMI_BOLD", - "colorPalette": { - "text": "#B31A1A1A" - } - } - } - }, - { - "leftText": { - "title": { - "text": "Money Settled", - "size": "14", - "font": "SEMI_BOLD", - "colorPalette": { - "text": "#80000000" - } - } - } - } - ], - "footer": { - "title": { - "text": "More details" - }, - "icon": { - "iconCode": "RIGHT_ARROW_ICON" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "navi_viewpager", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi_tracker" - }, - "claimId": { - "type": "String", - "data": "claim-id" - } - } - } - } - } - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetData": { - "title": { - "text": "Looking to start new claim?" - }, - "button": { - "title": { - "text": "Continue" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "new_claim/navi_chat", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi" - }, - "policyId": { - "type": "String", - "data": "PA0001E4" - } - } - } - } - } - } - } - ], - "metadata": { - "noContentWidget": { - "type": "Widget", - "data": { - "widgetName": "NO_CONTENT_WIDGET", - "widgetData": { - "title": { - "text": "No claims raised" - }, - "icon": { - "iconCode": "DOCUMENT_SEARCH_ICON" - } - } - } - } - } - }, - "0ActiveClaimListResponse": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Claims History", - "alignment": "CENTER" - }, - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "rightText": { - "text": "Help", - "leftIcon": { - "iconCode": "CALL_ICON_BLUE" - }, - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "1234567890" - } - } - } - } - } - ], - "content": [ - { - "widgetName": "TEXT_HEADER", - "widgetData": { - "title": { - "text": "0 Active Claim" - } - } - }, - { - "widgetName": "CARD_WITH_ITEMS_AND_FOOTER", - "widgetData": { - "items": [ - { - "leftText": { - "title": { - "text": "No active requests for claims", - "font": "SEMI_BOLD", - "colorPalette": { - "text": "#4D4D4D" - }, - "size": "12" - } - } - } - ] - } - }, - { - "widgetName": "TEXT_HEADER", - "widgetData": { - "title": { - "text": "Previous Claims" - } - } - }, - { - "widgetName": "CARD_WITH_ITEMS_AND_FOOTER", - "widgetData": { - "items": [ - { - "leftText": { - "title": { - "text": "₹5,50,000", - "font": "BOLD", - "colorPalette": { - "text": "#1A1A1A" - }, - "size": "16" - } - }, - "rightText": { - "title": { - "text": "10 Jul'20", - "font": "SEMI_BOLD", - "colorPalette": { - "text": "#B31A1A1A" - }, - "size": "14" - } - } - }, - { - "leftText": { - "title": { - "text": "Policy No : 6091222278881", - "size": "14", - "font": "SEMI_BOLD", - "colorPalette": { - "text": "#B31A1A1A" - } - } - } - }, - { - "leftText": { - "title": { - "text": "Money Settled", - "size": "14", - "font": "SEMI_BOLD", - "colorPalette": { - "text": "#80000000" - } - } - } - } - ], - "footer": { - "title": { - "text": "More details" - }, - "icon": { - "iconCode": "RIGHT_ARROW_ICON" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "navi_viewpager", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi_tracker" - }, - "claimId": { - "type": "String", - "data": "claim-id" - } - } - } - } - } - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetData": { - "title": { - "text": "Looking to start new claim?" - }, - "button": { - "title": { - "text": "Continue" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "new_claim/navi_chat", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi" - }, - "policyId": { - "type": "String", - "data": "PA0001E4" - } - } - } - } - } - } - } - ] - }, - "emptyClaimListResponse": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Claims History", - "alignment": "CENTER" - }, - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "rightText": { - "text": "Help", - "leftIcon": { - "iconCode": "CALL_ICON_BLUE" - }, - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "1234567890" - } - } - } - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetData": { - "title": { - "text": "Looking to start new claim?" - }, - "button": { - "title": { - "text": "Continue" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "new_claim/navi_chat", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi" - }, - "policyId": { - "type": "String", - "data": "PA0001E4" - } - } - } - } - } - } - } - ], - "metadata": { - "noContentWidget": { - "type": "Widget", - "data": { - "widgetName": "NO_CONTENT_WIDGET", - "widgetData": { - "title": { - "text": "No claims raised" - }, - "icon": { - "iconCode": "DOCUMENT_SEARCH_ICON" - } - } - } - } - } - }, - "claimBannerResponse": [ - { - "leftTitle": { - "text": "1011124568011" - }, - "rightTitle": { - "text": "4 members" - }, - "leftSubTitle": { - "text": "Continue your reimbursement" - }, - "leftImage": { - "iconCode": "FILE_ICON" - }, - "rightSubTitle": { - "text": "Open", - "cta": { - "url": "gi/new_claim", - "parameters": [ - { - "key": "screenIdentifier", - "value": "document_upload_summary" - }, - { - "key": "intimationReferenceId", - "value": "1504feab-83bd-4065-b4ce-ce6b019ca6a0" - } - ] - } - } - }, - { - "leftTitle": { - "text": "1011124568011" - }, - "rightTitle": { - "text": "4 members" - }, - "leftSubTitle": { - "text": "Continue your reimbursement" - }, - "rightSubTitle": { - "text": "Open", - "cta": { - "url": "gi/new_claim", - "parameters": [ - { - "key": "screenIdentifier", - "value": "navi_chat" - }, - { - "key": "type", - "value": "claim_hi" - }, - { - "key": "policyId", - "value": "PA0001E4" - } - ] - } - } - }, - { - "leftTitle": { - "text": "1011124568011" - }, - "rightTitle": { - "text": "4 members" - }, - "leftSubTitle": { - "text": "Continue your reimbursement" - }, - "rightSubTitle": { - "text": "Open", - "cta": { - "url": "gi/new_claim", - "parameters": [ - { - "key": "screenIdentifier", - "value": "navi_chat" - }, - { - "key": "type", - "value": "claim_hi" - }, - { - "key": "policyId", - "value": "PA0001E4" - } - ] - } - } - } - ], - "claimDocumentsResponse": { - "documents": [ - { - "name": "first document", - "documentId": "firstDocumentId", - "effectiveDate": "01-02-2022" - }, - { - "name": "second document", - "documentId": "secondDocumentId", - "effectiveDate": "01-02-1990" - }, - { - "name": "third document", - "documentId": "thirdDocumentId", - "effectiveDate": "01-02-2012" - }, - { - "name": "fourth document", - "documentId": "fourthDocumentId", - "effectiveDate": "01-02-2022" - } - ] - }, - "hospitalSearchResponse": { - "content": [ - { - "widgetId": "NAV388445863645", - "widgetName": "SEARCH_LAYOUT_TEXT_WITH_ICON", - "widgetData": { - "leftIcon": { - "iconCode": "HOSPITAL_ICON" - }, - "title": { - "text": "Apollo" - }, - "subTitle": { - "text": "Koramangala RMZ Bangalore Karnataka 560095 " - }, - "action": { - "type": "GO_BACK_WITH_RESULT", - "data": { - "resultAction": { - "type": "NEXT_API" - } - } - } - } - }, - { - "widgetId": "NAV867428817715", - "widgetName": "SEARCH_LAYOUT_TEXT_WITH_ICON", - "widgetData": { - "leftIcon": { - "iconCode": "HOSPITAL_ICON" - }, - "title": { - "text": "ApolloA" - }, - "subTitle": { - "text": "KoramangalaA A RMZvA BangaloreA Andhra Pradesh 560091 " - }, - "action": { - "type": "GO_BACK_WITH_RESULT", - "data": { - "resultAction": { - "type": "NEXT_API" - } - } - } - } - }, - { - "widgetId": "NAV809474986874", - "widgetName": "SEARCH_LAYOUT_TEXT_WITH_ICON", - "widgetData": { - "leftIcon": { - "iconCode": "HOSPITAL_ICON" - }, - "title": { - "text": "Apollo" - }, - "subTitle": { - "text": "Koramangala RMZ Bangalore Karnataka 560095 " - }, - "action": { - "type": "GO_BACK_WITH_RESULT", - "data": { - "resultAction": { - "type": "NEXT_API" - } - } - } - } - } - ] - }, - "newFormPageResponse": { - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetName": "TOOLBAR_WIDGET", - "widgetLayoutParams": null, - "widgetData": { - "showDivider": true, - "titleAlign": "CENTER", - "textAlign": null, - "title": null, - "leftIcon": { - "title": null, - "iconCode": "LEFT_ARROW_ICON", - "url": null, - "color": null, - "action": null, - "cta": { - "type": "PREVIOUS_PAGE_API", - "analyticsEventProperties": { - "name": "gi_choose_deductible_back", - "properties": { - "applicationType": "SUPER_TOP_UP" - } - } - } - }, - "rightIcon": { - "title": null, - "iconCode": "BLACK_HELP_ICON", - "url": null, - "color": null, - "action": null, - "cta": { - "type": "HELP_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "gi_choose_deductible_help", - "properties": { - "applicationType": "SUPER_TOP_UP" - } - } - } - } - } - } - ], - "content": [ - { - "widgetId": "TextWithBackgroundWidget", - "widgetName": "TEXT_WITH_BACKGROUND_WIDGET", - "widgetLayoutParams": {}, - "widgetData": { - "iconUrl": "https://navi-gi-np-assets.s3.ap-south-1.amazonaws.com/widget-images/video_play_icon.png", - "cardProperties": null, - "title": { - "text": "Understand Deductibles", - "textColor": "#000000", - "font": null, - "gradient": null, - "size": 14, - "colorPalette": null, - "action": null, - "actionText": null, - "cta": null, - "highlightFontType": null - }, - "cta": { - "title": "Watch now", - "url": "buyinsurance/view_video", - "analyticsEvent": "a", - "parameters": [ - { - "key": "videoId", - "value": "aWzlQ2N6qqg" - }, - { - "key": "source", - "value": "YOUTUBE" - } - ] - }, - "viewType": "WITHOUT_CARD" - } - }, - { - "widgetId": "TEXT_DISPLAY_WIDGET", - "widgetName": "TEXT_DISPLAY_WIDGET", - "widgetLayoutParams": { - "margin": "20,32,20,0" - }, - "widgetData": { - "title": { - "text": "Choose deductible amount as per your need", - "textColor": "#1A1A1A", - "font": "BOLD", - "gradient": null, - "size": 20, - "colorPalette": null, - "action": null, - "actionText": null, - "cta": null, - "highlightFontType": null - }, - "subTitle": null, - "info": null - } - }, - { - "widgetId": "CIRCULAR_PILL_GRID_WIDGET", - "widgetName": "CIRCULAR_PILL_GRID_WIDGET", - "widgetLayoutParams": { - "margin": "20,20,20,0" - }, - "widgetData": { - "spanCount": 3, - "pillItems": [ - { - "title": { - "text": "₹ 2 Lakhs", - "textColor": "#1D44D0", - "font": "REGULAR", - "gradient": null, - "size": 14, - "colorPalette": null, - "action": null, - "actionText": null, - "cta": null, - "highlightFontType": "BOLD" - }, - "pillViewParams": null, - "value": 200000, - "widgetKey": "PILL_WIDGET_200000", - "isSelected": false - }, - { - "title": { - "text": "₹ 5 Lakhs", - "textColor": "#1D44D0", - "font": "REGULAR", - "gradient": null, - "size": 14, - "colorPalette": null, - "action": null, - "actionText": null, - "cta": null, - "highlightFontType": "BOLD" - }, - "pillViewParams": null, - "value": 500000, - "widgetKey": "PILL_WIDGET_500000", - "isSelected": true - }, - { - "title": { - "text": "₹ 6 Lakhs", - "textColor": "#1D44D0", - "font": "REGULAR", - "gradient": null, - "size": 14, - "colorPalette": null, - "action": null, - "actionText": null, - "cta": null, - "highlightFontType": "BOLD" - }, - "pillViewParams": null, - "value": 600000, - "widgetKey": "PILL_WIDGET_600000", - "isSelected": false - }, - { - "title": { - "text": "₹ 8 Lakhs", - "textColor": "#1D44D0", - "font": "REGULAR", - "gradient": null, - "size": 14, - "colorPalette": null, - "action": null, - "actionText": null, - "cta": null, - "highlightFontType": "BOLD" - }, - "pillViewParams": null, - "value": 800000, - "widgetKey": "PILL_WIDGET_800000", - "isSelected": false - }, - { - "title": { - "text": "₹ 10 Lakhs", - "textColor": "#1D44D0", - "font": "REGULAR", - "gradient": null, - "size": 14, - "colorPalette": null, - "action": null, - "actionText": null, - "cta": null, - "highlightFontType": "BOLD" - }, - "pillViewParams": null, - "value": 1000000, - "widgetKey": "PILL_WIDGET_1000000", - "isSelected": false - } - ], - "validation": [ - { - "name": null, - "type": "RADIO_PILL_SELECTION_CONSTRAINT", - "minSelectionCount": 1, - "errorText": "Please select at least 1 item" - } - ] - } - }, - { - "text": "Need help choosing the amount?", - "textColor": "#000000", - "font": "BOLD", - "gradient": null, - "size": null, - "colorPalette": null, - "action": null, - "actionText": "Click here", - "cta": { - "title": "Click here", - "parameters": [ - { - "key": "bottomSheetInfo", - "value": "{\\\"title\\\":{\\\"text\\\":\\\"Need help choosing the amount?\\\"},\\\"description\\\":{\\\"text\\\":\\\"Choose any amount that you\\u2019ll be able to pay from your pocket or pay from your exisiting base insurance coverage. \\\\n\\\\nYou\\u2019ll be able to raise a claim with Navi only once you have exhausted your deductible amount. \\\"},\\\"deductibleCardData\\\":{\\\"title\\\":{\\\"text\\\":\\\"For example:\\\"},\\\"subTitle\\\":{\\\"text\\\":\\\"Tap on the options below to understand better\\\"},\\\"pillViewData\\\":{\\\"spanCount\\\":3,\\\"pillItems\\\":[{\\\"title\\\":{\\\"text\\\":\\\"2 Lac\\\"},\\\"description\\\":{\\\"htmlText\\\":\\\"

If you choose 2 lakhs<\\/b> deductible sum and your total medical expenses is 6 lac<\\/b> then we\\u2019ll be covering your additional 4 lac<\\/b> in the claim settlement process but the remaining 2 lac<\\/b> (deductible) you\\u2019ll have to pay<\\/p>\\\"},\\\"isSelected\\\":true},{\\\"title\\\":{\\\"text\\\":\\\"3 Lac\\\"},\\\"description\\\":{\\\"htmlText\\\":\\\"

If you choose 3 lakhs<\\/b> deductible sum and your total medical expenses is 6 lac<\\/b> then we\\u2019ll be covering your additional 3 lac<\\/b> in the claim settlement process but the remaining 3 lac<\\/b> (deductible) you\\u2019ll have to pay<\\/p>\\\"},\\\"isSelected\\\":false},{\\\"title\\\":{\\\"text\\\":\\\"4 Lac\\\"},\\\"description\\\":{\\\"htmlText\\\":\\\"

If you choose 4 lakhs<\\/b> deductible sum and your total medical expenses is 6 lac<\\/b> then we\\u2019ll be covering your additional 2 lac<\\/b> in the claim settlement process but the remaining 4 lac<\\/b> (deductible) you\\u2019ll have to pay<\\/p>\\\"},\\\"isSelected\\\":false}]}}}" - } - ], - "analyticsEventProperties": { - "name": "gi_choose_deductible_amount_help", - "properties": { - "applicationType": "SUPER_TOP_UP" - } - } - }, - "highlightFontType": null - } - ], - "footer": [ - { - "widgetId": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetLayoutParams": null, - "widgetData": { - "button": { - "title": { - "text": "Continue", - "textColor": "#FFFFFF", - "font": "BOLD", - "gradient": null, - "size": 14, - "colorPalette": null, - "action": null, - "actionText": null, - "cta": null, - "highlightFontType": null - }, - "action": null, - "cta": null, - "colorPalette": null - } - } - } - ], - "metadata": { - "pageType": "enter_age", - "preQuoteId": "474edc88-2358-4336-8fda-10863e80846c" - } - }, - "bankDetailsForm": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Bank Details", - "alignment": "CENTER" - }, - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "rightIcon": { - "iconCode": "CALL_ICON", - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "1234567890" - } - } - } - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetData": { - "button": { - "title": { - "text": "Continue" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "penny_drop", - "parameters": { - "titleText": { - "type": "TextViewData", - "data": { - "text": "Deposting ₹1 to verify your account details" - } - }, - "subTitleText": { - "type": "TextViewData", - "data": { - "text": "This might usually take 1-2minutes" - } - }, - "icon": { - "type": "ImageViewData", - "data": { - "url": "https://cdn-url-for-gif-icon" - } - } - } - } - } - } - } - } - ], - "content": [ - { - "widgetName": "TEXT_HEADER", - "widgetData": { - "title": { - "text": "Enter Pavan kumar's Details" - } - } - } - ] - }, - "cardWithListItemsResponse": { - "header": [], - "footer": [], - "content": [ - { - "widgetName": "CARD_WITH_LIST_ITEMS", - "widgetData": { - "itemList": [ - { - "title": { - "text": "Documents Uploaded (24)" - }, - "leftIcon": { - "iconCode": "UPLOAD_ICON" - }, - "rightIcon": { - "iconCode": "RIGHT_ARROW_ICON", - "colorPalette": { - "icon": "#A3A3AB" - } - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "document_upload/document_review", - "parameters": { - "intimationId": { - "type": "String", - "data": "intimation-id" - } - } - } - } - }, - { - "title": { - "text": "Navi Communication Documents" - }, - "leftIcon": { - "iconCode": "NAVI_ICON_GREY" - }, - "rightIcon": { - "iconCode": "RIGHT_ARROW_ICON", - "colorPalette": { - "icon": "#A3A3AB" - } - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "documents_list", - "parameters": { - "claimId": { - "type": "String", - "data": "claim-id" - } - } - } - } - } - ] - } - }, - { - "widgetName": "CARD_VIEW_WITH_DETAILS_LIST", - "widgetData": { - "header": { - "title": { - "text": "Basic Details" - }, - "icon": { - "iconCode": "CIRCULAR_FILLED_INFO_ICON" - } - }, - "statusData": { - "title": { - "text": "Details are available once claim money is transferred to your bank account" - }, - "icon": { - "iconCode": "CIRCULAR_FILLED_DOC_LOCKED_ICON" - } - }, - "cardDetails": { - "leftTitle": { - "text": "5678901122" - }, - "leftSubTitle": { - "text": "Claim ID" - }, - "rightTitle": { - "text": "Reimbursement" - }, - "rightSubTitle": { - "text": "Claim Type" - } - }, - "detailItems": [ - { - "leftTitle": { - "text": "Patient Name" - }, - "rightTitle": { - "text": "Pavan Kumar Kota" - } - }, - { - "leftTitle": { - "text": "Policy No" - }, - "rightTitle": { - "text": "15671929192" - } - }, - { - "leftTitle": { - "text": "Member ID" - }, - "rightTitle": { - "text": "67asd1212" - } - }, - { - "leftTitle": { - "text": "Closure Reason" - }, - "subTitle": { - "text": "Claims have been closed as applicant have backed up from the claims journey" - } - } - ] - } - } - ] - }, - "bankDetailsFormVerified": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Bank Details", - "alignment": "CENTER" - }, - "leftIcon": { - "iconCode": "LEFT_ARROW_ICON", - "action": { - "type": "GO_BACK" - } - }, - "rightIcon": { - "iconCode": "CALL_ICON", - "action": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "1234567890" - } - } - } - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TITLE_AND_BUTTON", - "widgetData": { - "button": { - "title": { - "text": "Continue" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "penny_drop", - "parameters": { - "titleText": { - "type": "TextViewData", - "data": { - "text": "Depositing ₹1 to verify your account details" - } - }, - "subTitleText": { - "type": "TextViewData", - "data": { - "text": "This might usually take 1-2 minutes" - } - }, - "icon": { - "type": "ImageViewData", - "data": { - "url": "https://img.pikbest.com/png-images/20190918/cartoon-snail-loading-loading-gif-animation_2734139.png!bw800" - } - }, - "intimationReferenceId": { - "type": "String", - "data": "7b4ffc42-ffa0-4305-b490-000924f708d1" - }, - "BankAccountInfo": { - "type": "BankAccountInfo", - "data": { - "accountNumber": "1234567893245", - "ifscCode": "HDFC0002777", - "bankName": "HDFC" - } - } - } - } - } - } - } - } - ], - "content": [ - { - "widgetName": "TEXT_HEADER", - "widgetData": { - "title": { - "text": "Enter Pavan kumar's Details" - } - } - } - ], - "metadata": { - "bankAccountInfo": { - "type": "BankAccountInfo", - "data": { - "ifscCode": "HDFC0002777", - "bankName": "HDFC", - "accountNumber": "1234567893245", - "branchName": "Mahadevapura HDFC Branch" - } - } - } - }, - "apologyPageResponse": { - "header": { - "text": "Health insurance", - "leftIcon": "LEFT_ARROW_ICON", - "rightIcon": "HELP_ICON" - }, - "icon": "EXPIRED_POLICY_ICON", - "title": "Sorry, We cannot port expired policies", - "subTitle": "You can by a new policy from Navi Health Insurance with waiting periods applicable", - "card": { - "icon": "HEALTH_INSURANCE_ICON", - "title": "Buy a new Navi health insurance", - "benefits": [ - { - "icon": "CALCULATOR_ICON", - "text": "Monthly premium starting at ₹241" - }, - { - "icon": "TIMER_ICON", - "text": "20 minute cashless claim" - }, - { - "icon": "BILL_ICON", - "text": "100% bills covered" - }, - { - "icon": "STETHOSCOPE_ICON", - "text": "Free & unlimited doctor consulation" - } - ], - "cta": { - "title": "Buy Now", - "url": "gi/chat", - "parameters": [ - { - "key": "type", - "value": "external_porting" - } - ] - } - } - }, - "insuranceOptionsResponse": { - "header": [], - "footer": [], - "content": [ - { - "widgetId": "smart_health", - "widgetName": "BANNER_INFO_WIDGET", - "widgetData": { - "title": { - "text": "Buy Navi Smart Health", - "colorPalette": { - "text": "#FFFFFF" - } - }, - "subTitle": { - "text": "Move your existing health insurance with zero waiting periods", - "colorPalette": { - "text": "#FFFFFF" - } - }, - "icon": { - "iconCode": "EXTERNAL_PORTING_ICON" - }, - "background": { - "color": "#F7B500" - }, - "actionButton": { - "text": "Buy Now", - "colorPalette": { - "text": "#F7B500" - }, - "cta": { - "type": "DEEP_LINK", - "url": "gi/form", - "parameters": [ - { - "key": "type", - "value": "smart_health" - }, - { - "key": "screenIdentifier", - "value": "navi_form" - } - ] - } - } - } - }, - { - "widgetId": "external_porting", - "widgetName": "BANNER_INFO_WIDGET", - "widgetData": { - "title": { - "text": "Port your policy", - "colorPalette": { - "text": "#FFFFFF" - } - }, - "subTitle": { - "text": "Move your existing health insurance with zero waiting periods", - "colorPalette": { - "text": "#FFFFFF" - } - }, - "icon": { - "iconCode": "EXTERNAL_PORTING_ICON" - }, - "background": { - "color": "#225156" - }, - "actionButton": { - "text": "Port Now", - "colorPalette": { - "text": "#225156" - }, - "cta": { - "type": "DEEP_LINK", - "url": "gi/intro", - "parameters": [ - { - "key": "type", - "value": "external_porting" - }, - { - "key": "LOGIN_SOURCE", - "value": "gi_existing_insurance/external_porting" - } - ] - } - } - } - } - ] - }, - "landingPageResponse": { - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetData": { - "leftIcon": { - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "HI_landing_info_page_back", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - }, - "iconCode": "BACK_ARROW_WITH_TAIL" - }, - "titleAlign": "CENTER", - "showDivider": false - }, - "widgetName": "TOOLBAR_WIDGET" - } - ], - "content": [ - { - "widgetId": "TITLE_BUTTON_IMAGE_INFO_WIDGET", - "widgetData": { - "title": { - "font": "EXTRA_BOLD", - "size": 20, - "text": "Health Insurance", - "textColor": "#FF5732" - }, - "subTitle": { - "font": "BOLD", - "size": 16, - "text": "made simple", - "textColor": "#22223D" - }, - "description": { - "font": "SEMI_BOLD", - "size": 14, - "text": "Affordable health plans starting\n@ ₹235 /month!", - "textColor": "#4D4D4D", - "substringStyles": [ - { - "font": "BOLD", - "substring": "₹235", - "textColor": "#22223D", - "relativeSize": 1.143 - } - ] - }, - "actionButtonInfo": { - "cta": { - "url": "gi/fresh_policy_form/form", - "title": "Continue", - "analyticsEventProperties": { - "name": "HI_landing_page_buy_now_clicked", - "properties": { - "ButtonPos": "top", - "applicationType": "FRESH_POLICY" - } - } - }, - "titleDetails": { - "title": { - "font": "BOLD", - "size": 14, - "text": "Get Insured", - "textColor": "#FFFFFF" - } - }, - "backgroundColor": "#FF5732" - }, - "rightSideImageData": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/health-insurance-landing-page-image-2.png" - } - }, - "widgetName": "TITLE_BUTTON_IMAGE_INFO_WIDGET", - "widgetLayoutParams": { - "rootPadding": "20,12,20,30", - "backgroundColor": "#FFFFFF" - } - }, - { - "widgetId": "HORIZONTAL_TEXTUAL_IMAGE_CAROUSEL", - "widgetData": { - "headerData": { - "title": { - "font": "EXTRA_BOLD", - "size": 18, - "text": "What will you get", - "textColor": "#22223D" - }, - "rightText": { - "cta": { - "url": "static_page/benefits", - "type": "STATIC_BENEFITS_SCREEN", - "parameters": [ - { - "key": "source", - "value": "BENEFITS_SCREEN" - } - ], - "analyticsEventProperties": { - "name": "HI_landing_page_view_all_clicked", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - }, - "font": "BOLD", - "size": 14, - "text": "20+ Benefits", - "textColor": "#FF5732" - } - }, - "carouselData": { - "carouselItems": [ - { - "title": { - "font": "BOLD", - "size": 14, - "text": "100% Hospital Bill Covered", - "textColor": "#444444" - }, - "subTitle": { - "cta": { - "url": "/benefits-bottomsheet", - "type": "BENEFITS_BOTTOMSHEET", - "title": "100% Hospital Bill Covered", - "parameters": [ - { - "key": "title", - "value": "100% Hospital Bill Covered" - }, - { - "key": "description", - "value": "We cover your entire hospitalisation bill and also cover any related medical expenses from 90 days before to 180 days after hospitalisation. The best part? No hidden terms and conditions!" - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/100-percent-hosp-bills-covered-orange.png" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info_100%_hospital_bill_covered", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "100% Hospital Bill Covered", - "applicationType": "FRESH_POLICY" - } - } - }, - "font": "SEMI_BOLD", - "size": 12, - "text": "Know more", - "textColor": "#6B6B6B" - }, - "imageData": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/100-percent-hosp-bills-covered-orange.png", - "backgroundColor": "#FAFAFA" - } - }, - { - "title": { - "font": "BOLD", - "size": 14, - "text": "Unlimited Online Consultations", - "textColor": "#444444" - }, - "subTitle": { - "cta": { - "url": "/benefits-bottomsheet", - "type": "BENEFITS_BOTTOMSHEET", - "title": "Unlimited Online Consultations", - "parameters": [ - { - "key": "title", - "value": "Unlimited Online Consultations" - }, - { - "key": "description", - "value": "You can get unlimited online doctor consultations with top doctors of the country at no additional costs." - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/online-doc-consult-orange.png" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info_unlimited_online_consultations", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Unlimited Online Consultations", - "applicationType": "FRESH_POLICY" - } - } - }, - "font": "SEMI_BOLD", - "size": 12, - "text": "Know more", - "textColor": "#6B6B6B" - }, - "imageData": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/online-doc-consult-orange.png", - "backgroundColor": "#FAFAFA" - } - }, - { - "title": { - "font": "BOLD", - "size": 14, - "text": "Hospitalisation at home", - "textColor": "#444444" - }, - "subTitle": { - "cta": { - "url": "/benefits-bottomsheet", - "type": "BENEFITS_BOTTOMSHEET", - "title": "Hospitalisation at Home", - "parameters": [ - { - "key": "title", - "value": "Hospitalisation at Home" - }, - { - "key": "description", - "value": "If you are hospitalised at home for 3 or more days due to critical condition or unavailability of a hospital bed, we pay for your home hospitalisation. This is covered up to the sum insured." - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/hospitalisation-at-home-orange.png" - } - ], - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Hospitalisation at Home", - "applicationType": "FRESH_POLICY" - } - } - }, - "font": "SEMI_BOLD", - "size": 12, - "text": "Know more", - "textColor": "#6B6B6B" - }, - "imageData": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/hospitalisation-at-home-orange.png", - "backgroundColor": "#FAFAFA" - } - }, - { - "title": { - "font": "BOLD", - "size": 14, - "text": "Covid-19 Hospitalisation", - "textColor": "#444444" - }, - "subTitle": { - "cta": { - "url": "/benefits-bottomsheet", - "type": "BENEFITS_BOTTOMSHEET", - "title": "Covid-19 Hospitalisation", - "parameters": [ - { - "key": "title", - "value": "Covid-19 Hospitalisation" - }, - { - "key": "description", - "value": "We pay for your expenses related to COVID-19 hospitalisation if you are hospitalised for more than 24 hours" - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/covid-19-hosp-orange.png" - } - ], - "analyticsEvent": "HI_btn_click_benefit_info_covid-19_hospitalisation", - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Covid-19 Hospitalisation", - "applicationType": "FRESH_POLICY" - } - } - }, - "font": "SEMI_BOLD", - "size": 12, - "text": "Know more", - "textColor": "#6B6B6B" - }, - "imageData": { - "url": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/NAVHLIP22133V012122_1-assets-v1/benefits-and-addons/covid-19-hosp-orange.png", - "backgroundColor": "#FAFAFA" - } - }, - { - "type": "VIEW_ALL", - "title": { - "cta": { - "url": "static_page/benefits", - "type": "STATIC_BENEFITS_SCREEN", - "parameters": [ - { - "key": "source", - "value": "BENEFITS_SCREEN" - } - ], - "analyticsEventProperties": { - "name": "HI_landing_page_view_all_clicked", - "properties": { - "applicationType": "FRESH_POLICY" - } - } - }, - "font": "BOLD", - "size": 14, - "text": "View All", - "textColor": "#444444", - "textDrawableData": { - "right": { - "iconCode": "ORANGE_ARROW_FORWARD" - } - } - } - } - ], - "visibleItemsOnScreen": "2.5" - } - }, - "widgetName": "HORIZONTAL_TEXTUAL_IMAGE_CAROUSEL", - "widgetLayoutParams": { - "backgroundColor": "#FAFAFA" - } - }, - { - "widgetId": "BORDERED_TITLE_WITH_IMAGE_GRID", - "widgetData": { - "gridData": { - "items": [ - { - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/financial-stability-image-orange.png", - "aspectRatio": 0.86 - }, - { - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/tax-saving-image-orange.png", - "aspectRatio": 0.86 - }, - { - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/Coverage-on-hospital-bills-orange.png", - "aspectRatio": 0.86 - }, - { - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/safeguard-family-image-orange.png", - "aspectRatio": 0.86 - } - ], - "spanCount": 3, - "upfrontVisibleCount": 3 - }, - "headerTitle": { - "font": "EXTRA_BOLD", - "size": 18, - "text": "Why Health Insurance?", - "textColor": "#22223D" - } - }, - "widgetName": "BORDERED_TITLE_WITH_IMAGE_GRID", - "widgetLayoutParams": { - "rootPadding": "16,24,16,24", - "backgroundColor": "#FFFFFF" - } - }, - { - "widgetId": "hospitalCardBannerWidget", - "widgetLayoutParams": { - "backgroundColor": "#FAFAFA" - }, - "widgetData": { - "items": [ - { - "cta": { - "url": "gi/hospitals", - "type": "HOSPITALS", - "title": "See full list", - "analyticsEventProperties": { - "name": "HI_search_hospital_clicked" - } - }, - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/hospital-near-you-image.png", - "aspectRatio": 1.875 - } - ], - "spanCount": 1 - }, - "widgetName": "BANNER_GRID_WIDGET" - }, - { - "widgetId": "otherBenefitsTitleWidget", - "widgetData": { - "title": { - "font": "EXTRA_BOLD", - "size": 16, - "text": "Other Benefits ", - "textColor": "#22223D" - } - }, - "widgetName": "TITLE_WIDGET", - "widgetLayoutParams": { - "rootPadding": "20,24,20,0", - "backgroundColor": "#FFFFFF" - } - }, - { - "widgetId": "otherBenefitsImageBannerWidget", - "widgetData": { - "items": [ - { - "cta": { - "url": "/benefits-bottomsheet", - "type": "BENEFITS_BOTTOMSHEET", - "title": "Hospitalisation at Home", - "parameters": [ - { - "key": "title", - "value": "Health Check-ups" - }, - { - "key": "description", - "value": "Complimentary preventive health checkups for members older than 17 years once during a policy year" - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/heart-image.png" - } - ], - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Health Check-up", - "applicationType": "FRESH_POLICY" - } - } - }, - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/check-up-image-orange.png", - "aspectRatio": 0.7736 - }, - { - "cta": { - "url": "/benefits-bottomsheet", - "type": "BENEFITS_BOTTOMSHEET", - "title": "Hospitalisation at Home", - "parameters": [ - { - "key": "title", - "value": "Doctor's Appointment" - }, - { - "key": "description", - "value": "Unlimited online doctor consultations with the best doctors of the country at no extra costs" - }, - { - "key": "iconUrl", - "value": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/medicine-and-health-image.png" - } - ], - "analyticsEventProperties": { - "name": "HI_landing_page_benefit_clicked", - "properties": { - "benefitName": "Doctor's Appointment", - "applicationType": "FRESH_POLICY" - } - } - }, - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/appointment-image-orange.png", - "aspectRatio": 0.7736 - } - ], - "spanCount": 2 - }, - "widgetName": "BANNER_GRID_WIDGET", - "widgetLayoutParams": { - "rootPadding": "10,14,10,22", - "backgroundColor": "#FFFFFF" - } - }, - { - "widgetId": "customerFirstTitleWidget", - "widgetData": { - "title": { - "font": "EXTRA_BOLD", - "size": 16, - "text": "Customer-first mindset ", - "textColor": "#000000" - } - }, - "widgetName": "TITLE_WIDGET", - "widgetLayoutParams": { - "rootPadding": "20,24,20,0", - "backgroundColor": "#FFFFFF" - } - }, - { - "widgetId": "moreInfoBannerWidget", - "widgetData": { - "items": [ - { - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/12-lakh-plus-customer-orange.png", - "aspectRatio": 0.7093 - }, - { - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/claims-settlement-image-orange.png", - "aspectRatio": 0.7093 - } - ], - "spanCount": 2 - }, - "widgetName": "BANNER_GRID_WIDGET", - "widgetLayoutParams": { - "rootPadding": "10,16,10,24", - "backgroundColor": "#FFFFFF" - } - }, - { - "widgetId": "testimonialBannerWidget", - "widgetData": { - "items": [ - { - "imageUrl": "https://navi-gi-assets.s3.ap-south-1.amazonaws.com/widget-images/irdai-banner.png", - "aspectRatio": 4.45 - } - ], - "spanCount": 1 - }, - "widgetName": "BANNER_GRID_WIDGET", - "widgetLayoutParams": { - "margin": "10,24,10,96" - } - } - ], - "pageLayoutParams": { - "pageBackgroundColor": "#FFFFFF" - } - }, - "pendingActivityResponse": { - "header": [ - { - "widgetName": "HEADER_WITH_TITLE_AND_ICON", - "widgetData": { - "icon": { - "iconCode": "CIRCULAR_FILLED_ADD_DOCUMENT_ICON" - }, - "title": { - "text": "Hey Pavan,\nYou’ve tried raising a claim" - }, - "subTitle": { - "text": "Continue now to complete the process" - } - } - } - ], - "content": [ - { - "widgetName": "SINGLE_CHOICE_WIDGET", - "widgetData": { - "options": [ - { - "title": { - "text": "John Doe 1" - }, - "subTitle": { - "text": "Fill details1" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "new_claim/navi_chat", - "parameters": { - "type": { - "type": "String", - "data": "claim_hi" - }, - "policyId": { - "type": "String", - "data": "PA0001E4" - } - } - } - } - }, - { - "title": { - "text": "John Doe 2" - }, - "subTitle": { - "text": "Fill details 2" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "document_upload/document_upload_summary", - "parameters": { - "intimationReferenceId": { - "type": "String", - "data": "62032de5-b34e-419b-8659-9db7303ed0dd" - }, - "entryPoint": { - "type": "String", - "data": "DASHBOARD_FOOTER" - } - } - } - } - } - ] - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TWO_BUTTONS", - "widgetData": { - "showDivider": false, - "buttonList": [ - { - "title": { - "text": "Continue" - }, - "action": { - "type": "SELECT_OPTION", - "analyticsEvent": { - "name": "HI_claims_bottomup_fill_detail_continue_click" - } - } - }, - { - "title": { - "text": "Remind me later" - }, - "action": { - "type": "REMIND_LATER_API", - "analyticsEvent": { - "name": "HI_claims_bottomup_claim_accepted_close_click" - } - } - } - ] - } - } - ], - "metadata": { - "launchEvent": { - "type": "AnalyticsEvent", - "data": { - "name": "HI_claims_bottomup_fill_detail_init" - } - } - } - }, - "renewalDetailsResponse": { - "header": [ - { - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "title": { - "text": "Review", - "alignment": "CENTER" - }, - "leftIcon": { - "iconCode": "BACK_ARROW_WITH_TAIL", - "action": { - "type": "GO_BACK" - } - }, - "rightIcon": { - "iconCode": "RED_TEXT_HELP_ICON", - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "bottom_sheet_help", - "parameters": { - "sourceScreen": { - "type": "String", - "data": "insurance_form" - }, - "faqText": { - "type": "String", - "data": "FAQs" - }, - "callBackAction": { - "type": "Action", - "data": { - "type": "REDIRECT_TO_PHONE", - "data": { - "phone": "022-40943600" - } - } - }, - "callUsText": { - "type": "String", - "data": "Call us ( 7am - 9pm )" - } - } - } - } - } - } - } - ], - "content": [ - { - "widgetId": "renewSummaryScreen", - "widgetName": "SECTIONS_WITH_ITEMS_WIDGET", - "widgetData": { - "header": { - "leftText": { - "text": "Review your policy", - "font": "BOLD", - "size": 16 - }, - "rightText": { - "text": "Edit", - "font": "BOLD", - "size": 14, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "renewal_form_container/renewal_form", - "parameters": { - "applicationType": { - "type": "String", - "data": "FRESH_POLICY" - } - } - }, - "analyticsEvent": { - "name": "HI_ar3_edit_policy" - } - } - } - }, - "sections": [ - { - "header": { - "leftText": { - "text": "Insured members", - "leftIcon": { - "iconCode": "CIRCULAR_MEMBERS_ICON" - }, - "colorPalette": { - "text": "#191919" - }, - "font": "BOLD", - "size": 14 - } - }, - "items": [ - { - "leftText": { - "text": "Abhimanyu", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "24 years", - "colorPalette": { - "text": "#585757" - }, - "font": "BOLD", - "size": 14 - } - }, - { - "leftText": { - "text": "Manisha", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "47 years", - "colorPalette": { - "text": "#585757" - }, - "font": "BOLD", - "size": 14 - } - }, - { - "leftText": { - "text": "Vivek", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "48 years", - "colorPalette": { - "text": "#585757" - }, - "font": "BOLD", - "size": 14 - } - } - ] - }, - { - "header": { - "leftText": { - "text": "Sum insured", - "leftIcon": { - "iconCode": "CIRCULAR_MONEY_ICON" - }, - "colorPalette": { - "text": "#191919" - }, - "font": "BOLD", - "size": 14 - } - }, - "items": [ - { - "leftText": { - "text": "Total sum insured", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "₹ 25,50,000", - "colorPalette": { - "text": "#585757" - }, - "font": "BOLD", - "size": 14 - } - }, - { - "leftText": { - "text": "Base sum insured", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "₹ 25,00,000", - "colorPalette": { - "text": "#585757" - }, - "font": "BOLD", - "size": 14 - } - }, - { - "leftText": { - "text": "No claim bonus!", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "₹ 50,000", - "colorPalette": { - "text": "#14BC51" - }, - "font": "BOLD", - "size": 14 - } - } - ] - } - ] - } - }, - { - "widgetId": "renewSummaryScreen", - "widgetName": "SECTIONS_WITH_ITEMS_WIDGET", - "widgetData": { - "sections": [ - { - "header": { - "leftText": { - "text": "Insurance tenure", - "leftIcon": { - "iconCode": "CIRCULAR_INSURANCE_TENURE_ICON" - }, - "colorPalette": { - "text": "#191919" - }, - "font": "BOLD", - "size": 14 - }, - "rightText": { - "text": "1 Year", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "BOLD", - "size": 14 - } - } - } - ] - } - }, - { - "widgetId": "renewSummaryScreen", - "widgetName": "SECTIONS_WITH_ITEMS_WIDGET", - "widgetData": { - "header": { - "leftText": { - "text": "Benefits", - "font": "BOLD", - "size": 16 - } - }, - "sections": [ - { - "header": { - "leftText": { - "text": "20+ Health benefits", - "leftIcon": { - "iconCode": "CIRCULAR_BENEFITS_ICON" - }, - "colorPalette": { - "text": "#191919" - }, - "font": "BOLD", - "size": 14 - } - }, - "items": [ - { - "leftText": { - "text": "Unlimited online consultations", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - } - }, - { - "leftText": { - "text": "Unlimited free refills of sum insured", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - } - }, - { - "leftText": { - "text": "Cummulative bonus no claim", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - } - }, - { - "leftText": { - "text": "View all benefits", - "colorPalette": { - "text": "#FF5732" - }, - "action": { - "type": "NEW_SCREEN", - "data": { - "url": "quote_benefits", - "parameters": { - "source": { - "type": "String", - "data": "ANNUAL_RENEWAL" - }, - "quoteId": { - "type": "String", - "data": "81dcf3a87e6f4b868bc0cfc4be69479c" - } - } - }, - "analyticsEvent": { - "name": "HI_ar2_review_policy_view_all_benefits" - } - }, - "rightIcon": { - "iconCode": "RIGHT_ARROW_ORANGE_ICON" - }, - "font": "BOLD", - "size": 14 - } - } - ] - }, - { - "header": { - "leftText": { - "text": "Add Ons", - "leftIcon": { - "iconCode": "CIRCULAR_ADD_ON_ICON" - }, - "colorPalette": { - "text": "#191919" - }, - "font": "BOLD", - "size": 14 - } - }, - "items": [ - { - "leftText": { - "text": "Outpatient Treatment", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - } - } - ] - }, - { - "header": { - "leftText": { - "text": "Waiting period", - "leftIcon": { - "iconCode": "CIRCULAR_WAITING_PERIOD_ICON" - }, - "colorPalette": { - "text": "#191919" - }, - "font": "BOLD", - "size": 14 - } - }, - "items": [ - { - "leftText": { - "text": "Pre-existing diseases", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "0 days", - "colorPalette": { - "text": "#585757" - }, - "font": "BOLD", - "size": 14 - } - }, - { - "leftText": { - "text": "Specifed Illnesses", - "colorPalette": { - "text": "#6B6B6B" - }, - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "0 days", - "colorPalette": { - "text": "#585757" - }, - "font": "BOLD", - "size": 14 - } - } - ] - } - ] - } - } - ], - "footer": [ - { - "widgetName": "FOOTER_WITH_TWO_BUTTONS_NEW", - "widgetData": { - "headerText": { - "text": "10% discount will be applied on premiums" - }, - "buttonList": [ - { - "title": { - "text": "Continue" - }, - "action": { - "type": "MAKE_API_CALL", - "analyticsEvent": { - "name": "HI_renewal_review_screen_continue" - }, - "data": { - "type": "PAYMENT_DETAILS_API", - "data": { - "quoteId": "81dcf3a87e6f4b868bc0cfc4be69479c", - "applicationType": "ANNUAL_RENEWAL" - } - } - } - } - ] - } - } - ] - }, - "renewalFormResponse": { - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "showDivider": true, - "leftIcon": { - "iconCode": "CROSS_ICON", - "cta": { - "type": "CLOSE_SCREEN", - "analyticsEventProperties": { - "name": "HI_ar3_toolbar_close", - "properties": { - "pageType": "edit_details" - } - } - } - }, - "rightIcon": { - "iconCode": "RED_TEXT_HELP_ICON", - "cta": { - "type": "HELP_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "HI_ar3_toolbar_help", - "properties": { - "pageType": "edit_details" - } - } - } - } - } - } - ], - "content": [ - { - "widgetId": "TEXT_DISPLAY_WIDGET", - "widgetName": "TEXT_DISPLAY_WIDGET", - "widgetLayoutParams": { - "margin": "16,32,16,0" - }, - "widgetData": { - "title": { - "text": "Health status", - "textColor": "#1A1A1A", - "font": "BOLD", - "size": 20 - } - } - }, - { - "widgetId": "TEXT_DISPLAY_WIDGET", - "widgetName": "TEXT_DISPLAY_WIDGET", - "widgetLayoutParams": { - "margin": "16,4,16,0" - }, - "widgetData": { - "title": { - "text": "We need these details to check your eligibility", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 12 - } - } - }, - { - "widgetId": "TEXT_DISPLAY_WIDGET", - "widgetName": "TEXT_DISPLAY_WIDGET", - "widgetLayoutParams": { - "margin": "16,32,16,0" - }, - "widgetData": { - "title": { - "text": "Recently added", - "textColor": "#1A1A1A", - "font": "BOLD", - "size": 14 - } - } - }, - { - "widgetName": "CONTENT_HEADER_DESCRIPTION_WITH_CHEVRON_WIDGET", - "widgetData": { - "items": [ - { - "id": "42900a7f-dbd7-4fe7-b27e-0f4d2d350a3b", - "title": { - "text": "Abhishek" - }, - "statusText": { - "text": "Pending", - "textColor": "#F7B500", - "font": "BOLD" - }, - "iconCode": "FORWARD_ARROW_ICON_BLACK", - "cta": { - "type": "TRANSITION_API", - "parameters": [ - { - "key": "transition", - "value": "MOVE_TO_DISEASE_PAGE" - } - ], - "analyticsEventProperties": {} - }, - "completed": false - } - ] - }, - "widgetLayoutParams": { - "margin": "8,16,8,0" - } - }, - { - "widgetId": "TEXT_DISPLAY_WIDGET", - "widgetName": "TEXT_DISPLAY_WIDGET", - "widgetLayoutParams": { - "margin": "16,32,16,0" - }, - "widgetData": { - "title": { - "text": "Existing members", - "textColor": "#1A1A1A", - "font": "BOLD", - "size": 14 - } - } - }, - { - "widgetName": "CONTENT_HEADER_DESCRIPTION_WITH_CHEVRON_WIDGET", - "widgetData": { - "items": [ - { - "id": "42900a7f-dbd7-4fe7-b27e-0f4d2d350a3b", - "title": { - "text": "Abhimanyu" - }, - "statusText": { - "text": "Healthy", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "iconCode": "FORWARD_ARROW_ICON_BLACK", - "cta": { - "type": "TRANSITION_API", - "parameters": [ - { - "key": "transition", - "value": "MOVE_TO_DISEASE_PAGE" - } - ], - "analyticsEventProperties": {} - }, - "completed": false - }, - { - "id": "42900a7f-dbd7-4fe7-b27e-0f4d2d350a3b", - "title": { - "text": "Manisha" - }, - "statusText": { - "text": "Has health issues", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "iconCode": "FORWARD_ARROW_ICON_BLACK", - "cta": { - "type": "TRANSITION_API", - "parameters": [ - { - "key": "transition", - "value": "MOVE_TO_DISEASE_PAGE" - } - ], - "analyticsEventProperties": {} - }, - "completed": false - }, - { - "id": "42900a7f-dbd7-4fe7-b27e-0f4d2d350a3b", - "title": { - "text": "Vivek" - }, - "statusText": { - "text": "Has health issues", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD" - }, - "iconCode": "FORWARD_ARROW_ICON_BLACK", - "cta": { - "type": "TRANSITION_API", - "parameters": [ - { - "key": "transition", - "value": "MOVE_TO_DISEASE_PAGE" - } - ], - "analyticsEventProperties": {} - }, - "completed": false - } - ] - }, - "widgetLayoutParams": { - "margin": "8,16,8,0" - } - } - ], - "footer": [ - { - "widgetId": "FOOTER_WITH_LEFT_RIGHT_BUTTON", - "widgetName": "FOOTER_WITH_LEFT_RIGHT_BUTTON", - "widgetData": { - "rightButton": { - "title": { - "text": "Done", - "textColor": "#FFFFFF", - "font": "BOLD" - }, - "cta": { - "type": "TRANSITION_API", - "parameters": [ - { - "key": "transition", - "value": "NEXT" - } - ], - "analyticsEventProperties": {} - }, - "backgroundColor": "#ff5732" - } - } - } - ], - "metadata": { - "pageType": "health_status", - "preQuoteId": "67a71f2f-e17f-45c2-a631-859bd13d6e4f" - }, - "pageLayoutParams": { - "pageBackgroundColor": "#F5F5F5" - } - }, - "renewalFormResponse1": { - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "showDivider": true, - "leftIcon": { - "iconCode": "CROSS_ICON", - "cta": { - "type": "CLOSE_SCREEN", - "analyticsEventProperties": { - "name": "HI_ar3_toolbar_close", - "properties": { - "pageType": "edit_details" - } - } - } - }, - "rightIcon": { - "iconCode": "RED_TEXT_HELP_ICON", - "cta": { - "type": "HELP_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "HI_ar3_toolbar_help", - "properties": { - "pageType": "edit_details" - } - } - } - } - } - } - ], - "content": [ - { - "widgetId": "TEXT_DISPLAY_WIDGET", - "widgetName": "TEXT_DISPLAY_WIDGET", - "widgetLayoutParams": { - "margin": "16,32,16,12" - }, - "widgetData": { - "title": { - "text": "Insured Family Members", - "textColor": "#1A1A1A", - "font": "BOLD", - "size": 18 - } - } - }, - { - "widgetName": "TITLE_AND_SUB_TITLE_WITH_ICON_WIDGET", - "widgetData": { - "id": "some-id-1", - "title": { - "text": "Myself" - }, - "subTitle": { - "text": "Abhimanyu" - }, - "rightText": { - "text": "24 years" - }, - "rightIcon": { - "iconCode": "OUTLINED_DELETE_ICON", - "cta": { - "type": "DELETE_MEMBER_BOTTOM_SHEET", - "parameters": [ - { - "key": "data", - "value": "{\"title\":{\"text\":\"Remove member\"},\"description\":{\"text\":\"Are you sure you want to remove Abhimanyu from the policy?\\n\\nRemoved member will not be able to avail any benefits of this policy\"},\"primaryCta\":{\"title\":\"Yes\",\"type\":\"TRANSITION_API\",\"parameters\":[{\"key\":\"transition\",\"value\":\"DELETE_MEMBER\"},{\"key\":\"memberId\",\"value\":\"some-id-1\"}]},\"secondaryCta\":{\"title\":\"No\"}}" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_edit_insured_members_delete" - } - } - } - } - }, - { - "widgetName": "TITLE_AND_SUB_TITLE_WITH_ICON_WIDGET", - "widgetData": { - "id": "some-id-2", - "title": { - "text": "Mother" - }, - "subTitle": { - "text": "Manisha" - }, - "rightText": { - "text": "47 years" - }, - "rightIcon": { - "iconCode": "OUTLINED_DELETE_ICON", - "cta": { - "type": "DELETE_MEMBER_BOTTOM_SHEET", - "parameters": [ - { - "key": "data", - "value": "{\"title\":{\"text\":\"Remove member\"},\"description\":{\"text\":\"Are you sure you want to remove Manisha from the policy?\\n\\nRemoved member will not be able to avail any benefits of this policy\"},\"primaryCta\":{\"title\":\"Yes\",\"type\":\"TRANSITION_API\",\"parameters\":[{\"key\":\"transition\",\"value\":\"DELETE_MEMBER\"},{\"key\":\"memberId\",\"value\":\"some-id-2\"}]},\"secondaryCta\":{\"title\":\"No\"}}" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_edit_insured_members_delete" - } - } - } - } - }, - { - "widgetName": "TITLE_AND_SUB_TITLE_WITH_ICON_WIDGET", - "widgetData": { - "id": "some-id-3", - "title": { - "text": "Father" - }, - "subTitle": { - "text": "Vivek" - }, - "rightText": { - "text": "48 years" - }, - "rightIcon": { - "iconCode": "OUTLINED_DELETE_ICON", - "cta": { - "type": "DELETE_MEMBER_BOTTOM_SHEET", - "parameters": [ - { - "key": "data", - "value": "{\"title\":{\"text\":\"Remove member\"},\"description\":{\"text\":\"Are you sure you want to remove Vivek from the policy?\\n\\nRemoved member will not be able to avail any benefits of this policy\"},\"primaryCta\":{\"title\":\"Yes\",\"type\":\"TRANSITION_API\",\"parameters\":[{\"key\":\"transition\",\"value\":\"DELETE_MEMBER\"},{\"key\":\"memberId\",\"value\":\"some-id-3\"}]},\"secondaryCta\":{\"title\":\"No\"}}" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_edit_insured_members_delete" - } - } - } - } - }, - { - "widgetName": "TEXT_DISPLAY_WIDGET", - "widgetData": { - "title": { - "text": "Add Members", - "textColor": "#FF5732", - "font": "BOLD", - "size": 14, - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_FILLED_PLUS_ICON" - }, - "padding": 18 - }, - "cta": { - "type": "ADD_MEMBERS_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "HI_ar3_edit_insured_members_add" - }, - "parameters": [ - { - "key": "data", - "value": "{\"removedCount\":2,\"newMemberCta\":{\"type\":\"TRANSITION_API\",\"parameters\":[{\"key\":\"transition\",\"value\":\"MOVE_TO_ADD_FAMILY_MEMBERS\"}],\"analyticsEventProperties\":{\"name\":\"HI_ar3_edit_insured_members_add_bs\",\"properties\":{\"selection\":\"new_member\"}}},\"recentlyRemovedCta\":{\"type\":\"NAVIGATE_TO_NEW_SCREEN\",\"url\":\"removed_policy_members\",\"parameters\":[{\"key\":\"preQuoteId\",\"value\":\"pre-quote-id\"}],\"analyticsEventProperties\":{\"name\":\"HI_ar3_edit_insured_members_add_bs\",\"properties\":{\"selection\":\"recently_removed\"}}}}" - } - ] - } - } - }, - "widgetLayoutParams": { - "margin": "18,22,0,0" - } - } - ], - "footer": [ - { - "widgetId": "FOOTER_WITH_LEFT_RIGHT_BUTTON", - "widgetName": "FOOTER_WITH_LEFT_RIGHT_BUTTON", - "widgetData": { - "leftButton": { - "title": { - "text": "Back", - "textColor": "#FF5732", - "font": "BOLD" - }, - "cta": { - "type": "TRANSITION_API", - "parameters": [ - { - "key": "transition", - "value": "BACK" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_footer_back", - "properties": { - "pageType": "edit_details" - } - } - }, - "backgroundColor": "#F5F5F5" - }, - "rightButton": { - "title": { - "text": "Done", - "textColor": "#FFFFFF", - "font": "BOLD" - }, - "cta": { - "type": "TRANSITION_API", - "parameters": [ - { - "key": "transition", - "value": "NEXT" - } - ], - "analyticsEventProperties": { - "name": "HI_ar3_footer_next", - "properties": { - "pageType": "edit_details" - } - } - }, - "backgroundColor": "#ff5732" - } - } - } - ], - "metadata": { - "pageType": "edit_details", - "preQuoteId": "67a71f2f-e17f-45c2-a631-859bd13d6e4f", - "launchEvent": { - "name": "HI_ar3_edit_screen" - }, - "transitionEvent": { - "name": "HI_ar3_update_cover_continue" - } - }, - "pageLayoutParams": { - "pageBackgroundColor": "#FFFFFF" - } - }, - "renewalFormNextPageResponse": { - "cta": { - "type": "PAYMENT_DETAILS_API", - "url": "renewal_form", - "parameters": [ - { - "key": "preQuoteId", - "value": "543a76a0-93aa-4839-8f15-d2846bd78575" - }, - { - "key": "pageType", - "value": "member_details" - } - ] - } - }, - "renewalFormPrevPageResponse": { - "cta": { - "type": "CLOSE_SCREEN" - } - }, - "recentlyRemovedListResponse": { - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "showDivider": true, - "leftIcon": { - "iconCode": "LEFT_ARROW_WITH_PADDING", - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "HI_ar3_toolbar_close", - "properties": { - "pageType": "{pageType}" - } - } - } - }, - "rightIcon": { - "iconCode": "RED_TEXT_HELP_ICON", - "cta": { - "type": "HELP_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "HI_ar3_toolbar_help", - "properties": { - "pageType": "{pageType}" - } - } - } - } - } - } - ], - "content": [ - { - "widgetId": "TEXT_DISPLAY_WIDGET", - "widgetName": "TEXT_DISPLAY_WIDGET", - "widgetLayoutParams": { - "margin": "16,32,16,0" - }, - "widgetData": { - "title": { - "text": "Recently removed", - "textColor": "#1A1A1A", - "font": "BOLD", - "size": 20 - } - } - }, - { - "widgetId": "TEXT_DISPLAY_WIDGET", - "widgetName": "TEXT_DISPLAY_WIDGET", - "widgetLayoutParams": { - "margin": "16,8,16,8" - }, - "widgetData": { - "title": { - "text": "2 Members", - "textColor": "#4D4D4D", - "font": "SEMI_BOLD", - "size": 14 - } - } - }, - { - "widgetId": "TITLE_AND_SUBTITLE_WITH_DOT_BACKGROUND", - "widgetName": "TITLE_AND_SUBTITLE_WITH_DOT_BACKGROUND", - "widgetData": { - "title": { - "text": "Son" - }, - "subTitle": { - "text": "John Doe" - }, - "rightText": { - "text": "Add again", - "cta": { - "type": "RE_ADD_MEMBER_BOTTOM_SHEET", - "parameters": [ - { - "key": "data", - "value": "{\"title\":{\"text\":\"Add son,John Doe to the policy?\"},\"primaryCta\":{\"title\":\"Yes, Add back\",\"type\":\"RE_ADD_MEMBER_API\",\"parameters\":[{\"key\":\"quoteId\",\"value\":\"some-quote-id\"},{\"key\":\"memberId\",\"value\":\"some-id-1\"}],\"analyticsEventProperties\":{\"name\":\"HI_ar3_add_again\",\"properties\":{\"selection\":\"Yes\"}}},\"secondaryCta\":{\"title\":\"Not now\",\"analyticsEventProperties\":{\"name\":\"HI_ar3_add_again\",\"properties\":{\"selection\":\"No\"}}}}" - } - ] - } - } - } - }, - { - "widgetId": "TITLE_AND_SUBTITLE_WITH_DOT_BACKGROUND", - "widgetName": "TITLE_AND_SUBTITLE_WITH_DOT_BACKGROUND", - "widgetData": { - "title": { - "text": "Daughter" - }, - "subTitle": { - "text": "John Doe" - }, - "rightText": { - "text": "Add again", - "cta": { - "type": "RE_ADD_MEMBER_BOTTOM_SHEET", - "parameters": [ - { - "key": "data", - "value": "{\"title\":{\"text\":\"Add son,John Doe to the policy?\"},\"primaryCta\":{\"title\":\"Yes, Add back\",\"type\":\"RE_ADD_MEMBER_API\",\"parameters\":[{\"key\":\"quoteId\",\"value\":\"some-quote-id\"},{\"key\":\"memberId\",\"value\":\"some-id-1\"}],\"analyticsEventProperties\":{\"name\":\"HI_ar3_add_again\",\"properties\":{\"selection\":\"Yes\"}}},\"secondaryCta\":{\"title\":\"Not now\",\"analyticsEventProperties\":{\"name\":\"HI_ar3_add_again\",\"properties\":{\"selection\":\"No\"}}}}" - } - ] - } - } - } - } - ] - }, - "renewalFormBasedFragmentResponse": { - "header": [ - { - "widgetId": "TOOLBAR_WIDGET", - "widgetName": "TOOLBAR_WIDGET", - "widgetData": { - "showDivider": true, - "titleAlign": "CENTER", - "title": { - "text": "Review", - "textColor": "#000000", - "alignment": "CENTER", - "font": "REGULAR", - "size": 14 - }, - "leftIcon": { - "iconCode": "LEFT_ARROW_WITH_PADDING", - "cta": { - "type": "RENEWAL_BACK_BOTTOM_SHEET", - "parameters": [ - { - "key": "bottomSheetData", - "value": "{\"title\":\"Are you sure you want\\nto go back?\",\"subtitle\":\"You will lose your progress if you go back\",\"leftButton\":{\"text\":\"Go back\",\"textColor\":null,\"bgColor\":null,\"font\":null,\"gradient\":null,\"size\":null,\"colorPalette\":null,\"action\":null,\"actionText\":null,\"actionTextColor\":null,\"cta\":{\"type\":\"API_CALL\",\"parameters\":[{\"key\":\"preQuoteId\",\"value\":\"2c0087ef-fed1-4104-b5a5-7957289ebac5\"}]},\"highlightFontType\":null,\"alignment\":null,\"shouldStrikeOff\":null,\"masked\":null,\"substringStyles\":null,\"textDrawableData\":null,\"letterSpacing\":null,\"gravity\":null},\"rightButton\":{\"text\":\"Stay here\",\"textColor\":null,\"bgColor\":null,\"font\":null,\"gradient\":null,\"size\":null,\"colorPalette\":null,\"action\":null,\"actionText\":null,\"actionTextColor\":null,\"cta\":{\"type\":\"DISMISS_BOTTOM_SHEET\"},\"highlightFontType\":null,\"alignment\":null,\"shouldStrikeOff\":null,\"masked\":null,\"substringStyles\":null,\"textDrawableData\":null,\"letterSpacing\":null,\"gravity\":null}}" - } - ] - } - }, - "rightIcon": { - "iconCode": "RED_TEXT_HELP_ICON", - "cta": { - "type": "HELP_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "HI_ar3_toolbar_help", - "properties": { - "pageType": "renew_policy_renewal" - } - } - } - } - } - } - ], - "content": [ - { - "widgetId": "renewSummaryScreen", - "widgetName": "SECTIONS_WITH_ITEMS_WIDGET", - "widgetData": { - "header": { - "leftText": { - "text": "Review your policy", - "font": "BOLD", - "size": 16 - } - }, - "sections": [ - { - "header": { - "leftText": { - "text": "Insured members", - "textColor": "#191919", - "font": "BOLD", - "size": 14, - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_MEMBERS_ICON" - } - } - } - }, - "items": [ - { - "leftText": { - "text": "Olafautomation", - "font": "SEMI_BOLD", - "size": 14, - "colorPalette": { - "text": "#6B6B6B" - } - }, - "rightText": { - "text": "30 years", - "textColor": "#585757", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "Dillanautomation", - "font": "SEMI_BOLD", - "size": 14, - "colorPalette": { - "text": "#6B6B6B" - } - }, - "rightText": { - "text": "30 years", - "textColor": "#585757", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - } - ] - }, - { - "header": { - "leftText": { - "text": "Sum insured", - "textColor": "#191919", - "font": "BOLD", - "size": 14, - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_MONEY_ICON" - } - } - } - }, - "items": [ - { - "leftText": { - "text": "Total sum insured", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "₹ 15,00,000", - "textColor": "#585757", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "Base sum insured", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "₹ 15,00,000", - "textColor": "#585757", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - } - ] - } - ] - } - }, - { - "widgetId": "SECTION_ITEMS_WITH_SLIDE_SELECTOR_WIDGET", - "widgetName": "SECTION_ITEMS_WITH_SLIDE_SELECTOR_WIDGET", - "widgetLayoutParams": { - "margin": "16,16,16,0" - }, - "widgetData": { - "state": "INITIAL", - "initialState": { - "items": [ - { - "leftText": { - "text": "Total cover", - "size": 14, - "textColor": "#585757", - "font": "REGULAR" - }, - "rightText": { - "text": "₹ 20.5 Lakhs", - "size": 14, - "textColor": "#585757", - "font": "BOLD" - }, - "tag": { - "text": "Updated", - "size": 10, - "textColor": "#22A940", - "font": "BOLD" - }, - "layoutParams": { - "borderRadius": "50", - "backgroundColor": "#E6FFD8" - } - }, - { - "leftText": { - "text": "Base cover", - "size": 14, - "textColor": "#585757", - "font": "REGULAR" - }, - "rightText": { - "text": "₹ 20 Lakhs", - "size": 14, - "textColor": "#585757", - "font": "BOLD" - } - }, - { - "leftText": { - "text": "No claim bonus!", - "size": 14, - "textColor": "#6B6B6B", - "font": "BOLD" - }, - "rightText": { - "text": "₹ 50,000", - "size": 14, - "textColor": "#14BC51", - "font": "BOLD" - } - } - ] - }, - "editableState": { - "sliderProgressData": { - "amountMapping": { - "200000": { - "valueInWords": "₹2 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹250" - }, - "300000": { - "valueInWords": "₹3 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹350" - }, - "400000": { - "valueInWords": "₹4 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹450" - }, - "500000": { - "valueInWords": "₹5 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹550" - }, - "600000": { - "valueInWords": "₹6 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹650" - }, - "700000": { - "valueInWords": "₹7 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹750" - }, - "800000": { - "valueInWords": "₹8 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹850" - }, - "900000": { - "valueInWords": "₹9 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹950" - }, - "1000000": { - "valueInWords": "₹10 Lakhs", - "tag": "Current cover", - "premiumAmount": "₹1050" - }, - "1500000": { - "valueInWords": "₹15 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹1150" - }, - "2000000": { - "valueInWords": "₹20 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹1250" - }, - "2500000": { - "valueInWords": "₹25 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹1350" - }, - "5000000": { - "valueInWords": "₹50 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹1450" - }, - "7500000": { - "valueInWords": "₹75 Lakhs", - "tag": "Updated cover", - "premiumAmount": "₹1550" - }, - "10000000": { - "valueInWords": "₹1 Crore", - "tag": "Updated cover", - "premiumAmount": "₹1650" - } - } - }, - "sliderList": [ - { - "widgetKey": "existingSumInsuredValueWidgetKey", - "leftText": { - "text": "₹10 Lakhs", - "textColor": "#191919", - "font": "EXTRA_BOLD", - "size": 20 - }, - "tooltipData": { - "title": { - "text": "Slide to change", - "textColor": "#F0F5FC", - "font": "SEMI_BOLD", - "size": 12 - }, - "backgroundColor": "#011A48" - }, - "selectedValue": 1000000, - "amountList": [ - 200000, - 300000, - 400000, - 500000, - 600000, - 700000, - 800000, - 900000, - 1000000, - 1500000, - 2000000, - 2500000, - 5000000, - 7500000, - 10000000 - ], - "defaultSelection": 1000000 - } - ], - "showDottedDivider": true, - "title": { - "text": "Current Monthly Premium", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 12 - }, - "subTitle": { - "text": "₹ 450", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 12 - }, - "updatedTitle": { - "text": "Updated Monthly Premium", - "textColor": "#22A940", - "font": "SEMI_BOLD", - "size": 12 - } - }, - "headerIcon": { - "iconCode": "HAND_WITH_COINS_ICON" - }, - "header": { - "leftText": { - "text": "Cover amount", - "size": 14, - "textColor": "#191919", - "font": "BOLD" - }, - "rightText": { - "text": "Edit", - "size": 14, - "textColor": "#FF5732", - "font": "BOLD", - "cta": { - "title": "Done", - "type": "EDIT_ANNUAL_RENEWAL_SUM_INSURED" - } - } - }, - "cardProperties": { - "borderRadius": 16 - } - } - }, - { - "widgetId": "renewSummaryScreen", - "widgetName": "SECTIONS_WITH_ITEMS_WIDGET", - "widgetData": { - "sections": [ - { - "header": { - "leftText": { - "text": "Insurance tenure", - "textColor": "#191919", - "font": "BOLD", - "size": 14, - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_INSURANCE_TENURE_ICON" - } - } - }, - "rightText": { - "text": "1 Year", - "textColor": "#6B6B6B", - "font": "BOLD", - "size": 14 - } - } - } - ] - } - }, - { - "widgetId": "renewSummaryScreen", - "widgetName": "SECTIONS_WITH_ITEMS_WIDGET", - "widgetData": { - "header": { - "leftText": { - "text": "Benefits", - "font": "BOLD", - "size": 16 - } - }, - "sections": [ - { - "header": { - "leftText": { - "text": "17+ Health Benefits", - "textColor": "#191919", - "font": "BOLD", - "size": 14, - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_BENEFITS_ICON" - } - } - } - }, - "items": [ - { - "leftText": { - "text": "Unlimited Online Consultations", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "10,000+ Cashless hospitals", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "Complimentary Health Checkup", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "View all benefits", - "textColor": "#FF5732", - "font": "BOLD", - "size": 14, - "cta": { - "type": "NAVIGATE_TO_NEW_SCREEN", - "url": "quote_benefits", - "parameters": [ - { - "key": "source", - "value": "ANNUAL_RENEWAL_FORM" - }, - { - "key": "preQuoteId", - "value": "2c0087ef-fed1-4104-b5a5-7957289ebac5" - } - ] - }, - "textDrawableData": { - "right": { - "iconCode": "RIGHT_ARROW_ORANGE_ICON" - } - } - }, - "layoutParams": { - "margin": "16,16,16,0" - } - } - ] - }, - { - "header": { - "leftText": { - "text": "Waiting Period", - "textColor": "#191919", - "font": "BOLD", - "size": 14, - "textDrawableData": { - "left": { - "iconCode": "CIRCULAR_WAITING_PERIOD_ICON" - } - } - } - }, - "items": [ - { - "leftText": { - "text": "Existing members", - "textColor": "#444444", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,24,16,0" - } - }, - { - "leftText": { - "text": "Pre-Existing disease", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "0 Year", - "textColor": "#585757", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - }, - { - "leftText": { - "text": "Specified disease procedure", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "rightText": { - "text": "0 Year", - "textColor": "#585757", - "font": "BOLD", - "size": 14 - }, - "layoutParams": { - "margin": "16,16,16,0" - } - } - ] - } - ] - } - } - ], - "footer": [ - { - "widgetId": "FOOTER_WITH_TWO_BUTTONS_NEW", - "widgetName": "FOOTER_WITH_TWO_BUTTONS_NEW", - "widgetData": { - "buttonList": [ - { - "title": { - "text": "Continue" - }, - "cta": { - "type": "TRANSITION_API", - "parameters": [ - { - "key": "transition", - "value": "NEXT" - } - ], - "analyticsEventProperties": { - "name": "HI_renewal_review_screen_continue" - } - } - } - ] - } - } - ], - "metadata": { - "pageType": "review_policy", - "analyticsInitEventName": "gi_event_init_screen_review_policy", - "preQuoteId": "2c0087ef-fed1-4104-b5a5-7957289ebac5" - }, - "pageLayoutParams": { - "pageBackgroundColor": "#FFFFFF" - } - }, - "feedbackFormResponse": { - "header": { - "leftIcon": { - "iconCode": "BACK_ARROW_WITH_TAIL", - "cta": { - "type": "GO_BACK", - "analyticsEventProperties": { - "name": "", - "properties": { - "screen": "" - } - } - } - }, - "rightIcon": { - "iconCode": "RED_TEXT_HELP_ICON", - "cta": { - "type": "HELP_BOTTOM_SHEET", - "analyticsEventProperties": { - "name": "", - "properties": { - "screen": "" - } - } - } - }, - "titleAlign": "CENTER", - "showDivider": false - }, - "title": { - "text": "Activate your Policy!", - "textColor": "#191919", - "font": "BOLD", - "size": 18 - }, - "subtitle": { - "text": "Due to the failure of the premium payment, your policy is inactive.", - "textColor": "#444444", - "font": "SEMI_BOLD", - "size": 12 - }, - "image": { - "iconCode": "ICON_BOY_CONFUSED" - }, - "feedbackFormData": { - "title": { - "text": "Select why the premium payment was not done on time", - "textColor": "#191919", - "font": "BOLD", - "size": 16 - }, - "items": [ - { - "showTextInput": true, - "title": { - "text": "I did the payment, it was not reflected", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "id": "1", - "textInputHint": "Specify (optional)" - }, - { - "showTextInput": false, - "title": { - "text": "Didn’t know this was a monthly premium", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "id": "2", - "textInputHint": "Specify (optional)" - }, - { - "showTextInput": true, - "title": { - "text": "Issues in the bank account/server", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "id": "3", - "textInputHint": "Specify (optional)" - }, - { - "showTextInput": false, - "title": { - "text": "Low balance in bank account", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "id": "4", - "textInputHint": "Specify (optional)" - }, - { - "showTextInput": true, - "title": { - "text": "Issues in the bank account/server", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "id": "5", - "textInputHint": "Specify (optional)" - }, - { - "showTextInput": true, - "title": { - "text": "Issues in the bank account/server", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "id": "6", - "textInputHint": "Specify (optional)" - }, - { - "showTextInput": true, - "title": { - "text": "Issues in the bank account/server", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "id": "7", - "textInputHint": "Specify (optional)" - }, - { - "showTextInput": true, - "title": { - "text": "Other", - "textColor": "#6B6B6B", - "font": "SEMI_BOLD", - "size": 14 - }, - "id": "OTHER", - "textInputHint": "Specify (optional)" - } - ] - }, - "button": { - "text": "Continue", - "textColor": "#FFFFFF", - "font": "BOLD", - "size": 14, - "cta": { - "url": "gi/payment", - "type": "OPEN_PAYMENT", - "parameters": [ - { - "key": "policyId", - "value": "SA0009QZ" - }, - { - "key": "isInstallment", - "value": true - }, - { - "key": "installmentDate", - "value": "2023-01-25" - }, - { - "key": "installmentNumber", - "value": 1 - }, - { - "key": "amount", - "value": 1003.84 - }, - { - "key": "isAutopay", - "value": false - } - ] - } - }, - "analyticsEventName": "gi_lapsationreversal_continue_click" - } -} \ No newline at end of file diff --git a/android/navi-mqtt/build.gradle b/android/navi-mqtt/build.gradle index b2addf5ffe..8cd034c436 100644 --- a/android/navi-mqtt/build.gradle +++ b/android/navi-mqtt/build.gradle @@ -27,16 +27,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-pay/build.gradle b/android/navi-pay/build.gradle index 2ae805ffd5..16ec43f3d7 100644 --- a/android/navi-pay/build.gradle +++ b/android/navi-pay/build.gradle @@ -51,16 +51,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } @@ -92,12 +86,8 @@ dependencies { implementation libs.zetetic.sqlcipher.android implementation libs.zxing - devImplementation project(path: ':npci-upi-cl', configuration: 'uat') - qaImplementation project(path: ':npci-upi-cl', configuration: 'uat') - mockImplementation project(path: ':npci-upi-cl', configuration: 'uat') - prodImplementation project(path: ':npci-upi-cl', configuration: 'prod') androidTestImplementation libs.androidx.test.junit diff --git a/android/navi-payment/build.gradle b/android/navi-payment/build.gradle index f0ae8a8c41..95ced7559e 100644 --- a/android/navi-payment/build.gradle +++ b/android/navi-payment/build.gradle @@ -47,16 +47,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-rr/build.gradle b/android/navi-rr/build.gradle index f97a77ee05..74a67d8bc7 100644 --- a/android/navi-rr/build.gradle +++ b/android/navi-rr/build.gradle @@ -57,16 +57,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-rr/src/dev/res/raw/mock_api_rr.json b/android/navi-rr/src/dev/res/raw/mock_api_rr.json deleted file mode 100644 index 9e26dfeeb6..0000000000 --- a/android/navi-rr/src/dev/res/raw/mock_api_rr.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/android/navi-vkyc/build.gradle b/android/navi-vkyc/build.gradle index 0bfa39d458..ae5bbe23c6 100644 --- a/android/navi-vkyc/build.gradle +++ b/android/navi-vkyc/build.gradle @@ -42,16 +42,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi-widgets/build.gradle b/android/navi-widgets/build.gradle index e121e37109..94550ef90c 100644 --- a/android/navi-widgets/build.gradle +++ b/android/navi-widgets/build.gradle @@ -46,16 +46,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi_hl_dynamic/build.gradle b/android/navi_hl_dynamic/build.gradle index 8182c452fa..abe4f98ba6 100644 --- a/android/navi_hl_dynamic/build.gradle +++ b/android/navi_hl_dynamic/build.gradle @@ -50,16 +50,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" } diff --git a/android/navi_pl_dynamic/build.gradle b/android/navi_pl_dynamic/build.gradle index 59d44e9761..1fe96e7c1b 100644 --- a/android/navi_pl_dynamic/build.gradle +++ b/android/navi_pl_dynamic/build.gradle @@ -44,16 +44,10 @@ android { } flavorDimensions = ["app"] productFlavors { - dev { - dimension "app" - } qa { isDefault true dimension "app" } - mock { - dimension "app" - } prod { dimension "app" }